From mst at mellanox.co.il Sun Jan 2 03:05:01 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 2 Jan 2005 13:05:01 +0200 Subject: [openib-general] RFC: process_mad extension In-Reply-To: <52652jd86n.fsf@topspin.com> References: <20041230164608.GA12143@mellanox.co.il> <52652jd86n.fsf@topspin.com> Message-ID: <20050102110501.GA25828@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] RFC: process_mad extension": > Michael> 3. The Arbel memfree (aka native) mode hardware needs the > Michael> Grh, and some bits from the completion of the incoming > Michael> MAD, to process the MAD. Again, this information is not > Michael> passed to process_mad. > > I'm looking at version 0.60 of the memfree PRM. I don't see any > requirement for this information if the "extended info" flag isn't set > when calling MAD_IFC. Is the PRM inaccurate? Sure. But you have to set the flag if you want bkey check. mst From eric.lemoine at gmail.com Sun Jan 2 15:30:31 2005 From: eric.lemoine at gmail.com (Eric Lemoine) Date: Mon, 3 Jan 2005 00:30:31 +0100 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <1104240717.1100.66.camel@jzny.localdomain> References: <52llbwoaej.fsf@topspin.com> <20041217214432.07b7b21e.davem@davemloft.net> <1103484675.1050.158.camel@jzny.localdomain> <5cac192f04122210491d64d4b6@mail.gmail.com> <20041222202919.057b8331.davem@davemloft.net> <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> Message-ID: <5cac192f0501021530672a908a@mail.gmail.com> On 28 Dec 2004 08:31:57 -0500, jamal wrote: > On Fri, 2004-12-24 at 11:10, Eric Lemoine wrote: > > > Yes but requiring drivers to release a lock that they should not even > > be aware of doesn't sound good. Another way would be to keep > > dev->queue_lock grabbed when entering start_xmit() and let the driver > > drop it (and re-acquire it before it returns) only if it wishes so. > > Although I don't like this too much either, that's the best way I can > > think of up to now... > > I am not a big fan of that patch either, but i cant think of a cleaner > way to do it. > The violation already happens with the LLTX flag. So maybe a big warning > that says "Do this only if you driver is LLTX enabled". The other way to > do it is put a check to see if LLTX is enabled before releasing that > lock - but why the extra cycles? Driver writer should know. Two (untested) patches implementing what I described above. The first pach (sch_generic.patch) keeps queue_lock held in qdisc_restart() when calling hard_start_xmit() of a LLTX driver. The second (sungem.patch) makes sungem release queue_lock after grabbing its private tx lock. Note that the modifications made to qdisc_restart() are not compatible with the current LLTX drivers. All LLTX drivers must be modified along sungem.patch's lines. Take sungem.patch as an example of how things must be done. Patches apply to current davem bk snapshot. -- Eric -------------- next part -------------- A non-text attachment was scrubbed... Name: sch_generic.patch Type: application/octet-stream Size: 1965 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: sungem.patch Type: application/octet-stream Size: 1182 bytes Desc: not available URL: From eric.lemoine at gmail.com Sun Jan 2 23:41:40 2005 From: eric.lemoine at gmail.com (Eric Lemoine) Date: Mon, 3 Jan 2005 08:41:40 +0100 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <5cac192f0501021530672a908a@mail.gmail.com> References: <52llbwoaej.fsf@topspin.com> <20041217214432.07b7b21e.davem@davemloft.net> <1103484675.1050.158.camel@jzny.localdomain> <5cac192f04122210491d64d4b6@mail.gmail.com> <20041222202919.057b8331.davem@davemloft.net> <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> Message-ID: <5cac192f050102234168b40bc@mail.gmail.com> > Two (untested) patches implementing what I described above. > > The first pach (sch_generic.patch) keeps queue_lock held in > qdisc_restart() when calling hard_start_xmit() of a LLTX driver. The > second (sungem.patch) makes sungem release queue_lock after grabbing > its private tx lock. > > Note that the modifications made to qdisc_restart() are not compatible > with the current LLTX drivers. All LLTX drivers must be modified along > sungem.patch's lines. Take sungem.patch as an example of how things > must be done. Correction: the current LLTX drivers need not be modified to work correctly. However, as an opimisation, they can modified along sungem.patch's line. Thanks, -- Eric From eric.lemoine at gmail.com Mon Jan 3 07:48:00 2005 From: eric.lemoine at gmail.com (Eric Lemoine) Date: Mon, 3 Jan 2005 16:48:00 +0100 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <1104764660.1048.578.camel@jzny.localdomain> References: <52llbwoaej.fsf@topspin.com> <1103484675.1050.158.camel@jzny.localdomain> <5cac192f04122210491d64d4b6@mail.gmail.com> <20041222202919.057b8331.davem@davemloft.net> <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> Message-ID: <5cac192f05010307484f23bca5@mail.gmail.com> On 03 Jan 2005 10:04:21 -0500, jamal wrote: > this piece: > ----- > + > + /* And release queue */ > + spin_unlock(&dev->queue_lock); > } > --------- > > Isnt there a possibility (higher as you increase number of processors) > that you will spin for a long time in _the driver_ waiting for the queue > lock? I don't see how LLTX is different from non-LLTX wrt the time spent spinning on queue_lock. What am i missing? > > Maybe we need a flag "the queue lock" is already been grabbed passed > to the driver. LLTX is a good alias but insufficient (if you run your > driver in an old kernels which support LLTX but not the idea of locking > the queue for you). > > Andi or anyone else - has anyone really done perfomance analysis of LLTX > (with anything other than loopback) and shown it has any value? Maybe > time to just shoot the damn thing. I do not like LLTX too much either as I can't see a cleaner way to get rid of that packet reordering race condition. -- Eric From roland at topspin.com Mon Jan 3 07:57:14 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 03 Jan 2005 07:57:14 -0800 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <1104764660.1048.578.camel@jzny.localdomain> (jamal's message of "03 Jan 2005 10:04:21 -0500") References: <52llbwoaej.fsf@topspin.com> <20041217214432.07b7b21e.davem@davemloft.net> <1103484675.1050.158.camel@jzny.localdomain> <5cac192f04122210491d64d4b6@mail.gmail.com> <20041222202919.057b8331.davem@davemloft.net> <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> Message-ID: <52brc68q05.fsf@topspin.com> jamal> Andi or anyone else - has anyone really done perfomance jamal> analysis of LLTX (with anything other than loopback) and jamal> shown it has any value? Maybe time to just shoot the damn jamal> thing. For the IPoIB driver, it seems to be worth a couple percent. It's hard to get really consistent results but on my pair of test systems, TCP throughput with netperf goes up by about 30 Mbps out of roughly 1900 Mbps total. It's probably not worth the complexity in the net core if all drivers only get that level of improvement. - Roland From hadi at cyberus.ca Mon Jan 3 07:04:21 2005 From: hadi at cyberus.ca (jamal) Date: 03 Jan 2005 10:04:21 -0500 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <5cac192f0501021530672a908a@mail.gmail.com> References: <52llbwoaej.fsf@topspin.com> <20041217214432.07b7b21e.davem@davemloft.net> <1103484675.1050.158.camel@jzny.localdomain> <5cac192f04122210491d64d4b6@mail.gmail.com> <20041222202919.057b8331.davem@davemloft.net> <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> Message-ID: <1104764660.1048.578.camel@jzny.localdomain> this piece: ----- + + /* And release queue */ + spin_unlock(&dev->queue_lock); } --------- Isnt there a possibility (higher as you increase number of processors) that you will spin for a long time in _the driver_ waiting for the queue lock? Maybe we need a flag "the queue lock" is already been grabbed passed to the driver. LLTX is a good alias but insufficient (if you run your driver in an old kernels which support LLTX but not the idea of locking the queue for you). Andi or anyone else - has anyone really done perfomance analysis of LLTX (with anything other than loopback) and shown it has any value? Maybe time to just shoot the damn thing. cheers, jamal On Sun, 2005-01-02 at 18:30, Eric Lemoine wrote: > On 28 Dec 2004 08:31:57 -0500, jamal wrote: > > On Fri, 2004-12-24 at 11:10, Eric Lemoine wrote: > > > > > Yes but requiring drivers to release a lock that they should not even > > > be aware of doesn't sound good. Another way would be to keep > > > dev->queue_lock grabbed when entering start_xmit() and let the driver > > > drop it (and re-acquire it before it returns) only if it wishes so. > > > Although I don't like this too much either, that's the best way I can > > > think of up to now... > > > > I am not a big fan of that patch either, but i cant think of a cleaner > > way to do it. > > The violation already happens with the LLTX flag. So maybe a big warning > > that says "Do this only if you driver is LLTX enabled". The other way to > > do it is put a check to see if LLTX is enabled before releasing that > > lock - but why the extra cycles? Driver writer should know. > > Two (untested) patches implementing what I described above. > > The first pach (sch_generic.patch) keeps queue_lock held in > qdisc_restart() when calling hard_start_xmit() of a LLTX driver. The > second (sungem.patch) makes sungem release queue_lock after grabbing > its private tx lock. > > Note that the modifications made to qdisc_restart() are not compatible > with the current LLTX drivers. All LLTX drivers must be modified along > sungem.patch's lines. Take sungem.patch as an example of how things > must be done. > > Patches apply to current davem bk snapshot. From eric.lemoine at gmail.com Mon Jan 3 08:41:05 2005 From: eric.lemoine at gmail.com (Eric Lemoine) Date: Mon, 3 Jan 2005 17:41:05 +0100 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <52brc68q05.fsf@topspin.com> References: <52llbwoaej.fsf@topspin.com> <5cac192f04122210491d64d4b6@mail.gmail.com> <20041222202919.057b8331.davem@davemloft.net> <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> Message-ID: <5cac192f05010308414a25b548@mail.gmail.com> On Mon, 03 Jan 2005 07:57:14 -0800, Roland Dreier wrote: > jamal> Andi or anyone else - has anyone really done perfomance > jamal> analysis of LLTX (with anything other than loopback) and > jamal> shown it has any value? Maybe time to just shoot the damn > jamal> thing. > > For the IPoIB driver, it seems to be worth a couple percent. It's > hard to get really consistent results but on my pair of test systems, > TCP throughput with netperf goes up by about 30 Mbps out of roughly > 1900 Mbps total. It's probably not worth the complexity in the net > core if all drivers only get that level of improvement. > > - Roland > What are your machines? In particular, how many CPUs do they have? -- Eric From roland at topspin.com Mon Jan 3 08:54:59 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 03 Jan 2005 08:54:59 -0800 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <5cac192f05010308414a25b548@mail.gmail.com> (Eric Lemoine's message of "Mon, 3 Jan 2005 17:41:05 +0100") References: <52llbwoaej.fsf@topspin.com> <5cac192f04122210491d64d4b6@mail.gmail.com> <20041222202919.057b8331.davem@davemloft.net> <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> Message-ID: <527jmu8nbw.fsf@topspin.com> Eric> What are your machines? In particular, how many CPUs do they have? Dual Xeons with HT on, so they look like 4 CPUs. - R. From eric.lemoine at gmail.com Mon Jan 3 09:07:00 2005 From: eric.lemoine at gmail.com (Eric Lemoine) Date: Mon, 3 Jan 2005 18:07:00 +0100 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <527jmu8nbw.fsf@topspin.com> References: <52llbwoaej.fsf@topspin.com> <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> Message-ID: <5cac192f0501030907c755135@mail.gmail.com> On Mon, 03 Jan 2005 08:54:59 -0800, Roland Dreier wrote: > Eric> What are your machines? In particular, how many CPUs do they have? > > Dual Xeons with HT on, so they look like 4 CPUs. If I understand correctly, LLTX aims at avoiding cache misses on lock variables (because of cacheline bouncing). So the effect of LLTX should increase as the number of CPUs not sharing the same cache increases. And two CPUs might not be enough... -- Eric From iod00d at hp.com Mon Jan 3 09:12:27 2005 From: iod00d at hp.com (Grant Grundler) Date: Mon, 3 Jan 2005 09:12:27 -0800 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <5cac192f0501030907c755135@mail.gmail.com> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> Message-ID: <20050103171227.GD7370@esmail.cup.hp.com> On Mon, Jan 03, 2005 at 06:07:00PM +0100, Eric Lemoine wrote: > If I understand correctly, LLTX aims at avoiding cache misses on lock > variables (because of cacheline bouncing). So the effect of LLTX > should increase as the number of CPUs not sharing the same cache > increases. And two CPUs might not be enough... Cacheline bouncing usually starts to show up with > 4 CPUs (ie 8 or more). Some workloads that Jamal cares about (routing) only need 2 cpus. grant From bunk at stusta.de Mon Jan 3 09:19:37 2005 From: bunk at stusta.de (Adrian Bunk) Date: Mon, 3 Jan 2005 18:19:37 +0100 Subject: [openib-general] [2.6 patch] infiniband: possible cleanups Message-ID: <20050103171937.GG2980@stusta.de> The patch below contains the following possible cleanups for the current infiniband code: - make needlessly global code static - don't build the completely unused core/fmr_pool.c - #if 0 the following EXPORT_SYMBOL'ed but unused functions: - core/device.c: ib_modify_device - core/device.c: ib_modify_port - core/mad.c: ib_coalesce_recv_mad - core/mad.c: ib_process_mad_wc - core/mad.c: ib_redirect_mad_qp - core/mad.c: ib_register_mad_snoop - core/ud_header.c: ib_ud_header_unpack - core/verbs.c: ib_alloc_mw - core/verbs.c: ib_dealloc_mw - core/verbs.c: ib_modify_ah - core/verbs.c: ib_query_ah - core/verbs.c: ib_query_mr - core/verbs.c: ib_query_qp - core/verbs.c: ib_reg_phys_mr - core/verbs.c: ib_rereg_phys_mr - core/verbs.c: ib_resize_cq - hw/mthca/mthca_cmd.c: mthca_QUERY_QP If code will be added that uses some of the functions this patch #if 0's it will be trivial to remove the corresponding #if 0's, but as long as this hasn't happened, they only make the kernel needlessly larger for people who use infiniband. diffstat output: drivers/infiniband/core/Makefile | 2 - drivers/infiniband/core/cache.c | 6 ++--- drivers/infiniband/core/device.c | 4 +++ drivers/infiniband/core/mad.c | 8 ++++++ drivers/infiniband/core/ud_header.c | 3 ++ drivers/infiniband/core/verbs.c | 16 +++++++++++++ drivers/infiniband/hw/mthca/mthca_cmd.c | 2 + drivers/infiniband/hw/mthca/mthca_cmd.h | 2 + drivers/infiniband/include/ib_mad.h | 8 ++++++ drivers/infiniband/include/ib_pack.h | 3 +- drivers/infiniband/include/ib_verbs.h | 20 +++++++++++++++++ drivers/infiniband/ulp/ipoib/ipoib_ib.c | 2 - drivers/infiniband/ulp/ipoib/ipoib_main.c | 2 - drivers/infiniband/ulp/ipoib/ipoib_multicast.c | 4 +-- 14 files changed, 73 insertions(+), 9 deletions(-) Signed-off-by: Adrian Bunk --- linux-2.6.10-mm1-full/drivers/infiniband/ulp/ipoib/ipoib_multicast.c.old 2005-01-03 17:32:08.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/ulp/ipoib/ipoib_multicast.c 2005-01-03 17:33:06.000000000 +0100 @@ -44,7 +44,7 @@ #include "ipoib.h" #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG -int mcast_debug_level; +static int mcast_debug_level; module_param(mcast_debug_level, int, 0644); MODULE_PARM_DESC(mcast_debug_level, @@ -621,7 +621,7 @@ return 0; } -int ipoib_mcast_leave(struct net_device *dev, struct ipoib_mcast *mcast) +static int ipoib_mcast_leave(struct net_device *dev, struct ipoib_mcast *mcast) { struct ipoib_dev_priv *priv = netdev_priv(dev); struct ib_sa_mcmember_rec rec = { --- linux-2.6.10-mm1-full/drivers/infiniband/ulp/ipoib/ipoib_main.c.old 2005-01-03 17:33:28.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/ulp/ipoib/ipoib_main.c 2005-01-03 17:33:36.000000000 +0100 @@ -606,7 +606,7 @@ return NETDEV_TX_OK; } -struct net_device_stats *ipoib_get_stats(struct net_device *dev) +static struct net_device_stats *ipoib_get_stats(struct net_device *dev) { struct ipoib_dev_priv *priv = netdev_priv(dev); --- linux-2.6.10-mm1-full/drivers/infiniband/ulp/ipoib/ipoib_ib.c.old 2005-01-03 17:33:53.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/ulp/ipoib/ipoib_ib.c 2005-01-03 17:34:00.000000000 +0100 @@ -357,7 +357,7 @@ } } -void __ipoib_reap_ah(struct net_device *dev) +static void __ipoib_reap_ah(struct net_device *dev) { struct ipoib_dev_priv *priv = netdev_priv(dev); struct ipoib_ah *ah, *tah; --- linux-2.6.10-mm1-full/drivers/infiniband/core/cache.c.old 2005-01-03 17:34:15.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/core/cache.c 2005-01-03 17:34:44.000000000 +0100 @@ -252,7 +252,7 @@ } } -void ib_cache_setup_one(struct ib_device *device) +static void ib_cache_setup_one(struct ib_device *device) { int p; @@ -295,7 +295,7 @@ kfree(device->cache.gid_cache); } -void ib_cache_cleanup_one(struct ib_device *device) +static void ib_cache_cleanup_one(struct ib_device *device) { int p; @@ -311,7 +311,7 @@ kfree(device->cache.gid_cache); } -struct ib_client cache_client = { +static struct ib_client cache_client = { .name = "cache", .add = ib_cache_setup_one, .remove = ib_cache_cleanup_one --- linux-2.6.10-mm1-full/drivers/infiniband/include/ib_verbs.h.old 2005-01-03 18:03:28.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/include/ib_verbs.h 2005-01-03 17:50:32.000000000 +0100 @@ -865,6 +865,8 @@ int ib_query_pkey(struct ib_device *device, u8 port_num, u16 index, u16 *pkey); +#if 0 + int ib_modify_device(struct ib_device *device, int device_modify_mask, struct ib_device_modify *device_modify); @@ -873,6 +875,8 @@ u8 port_num, int port_modify_mask, struct ib_port_modify *port_modify); +#endif /* 0 */ + /** * ib_alloc_pd - Allocates an unused protection domain. * @device: The device on which to allocate the protection domain. @@ -898,6 +902,8 @@ */ struct ib_ah *ib_create_ah(struct ib_pd *pd, struct ib_ah_attr *ah_attr); +#if 0 + /** * ib_modify_ah - Modifies the address vector associated with an address * handle. @@ -916,6 +922,8 @@ */ int ib_query_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr); +#endif /* 0 */ + /** * ib_destroy_ah - Destroys an address handle. * @ah: The address handle to destroy. @@ -955,10 +963,12 @@ * The qp_attr_mask may be used to limit the query to gathering only the * selected attributes. */ +#if 0 int ib_query_qp(struct ib_qp *qp, struct ib_qp_attr *qp_attr, int qp_attr_mask, struct ib_qp_init_attr *qp_init_attr); +#endif /** * ib_destroy_qp - Destroys the specified QP. @@ -1021,7 +1031,9 @@ * * Users can examine the cq structure to determine the actual CQ size. */ +#if 0 int ib_resize_cq(struct ib_cq *cq, int cqe); +#endif /** * ib_destroy_cq - Destroys the specified CQ. @@ -1094,6 +1106,8 @@ */ struct ib_mr *ib_get_dma_mr(struct ib_pd *pd, int mr_access_flags); +#if 0 + /** * ib_reg_phys_mr - Prepares a virtually addressed memory region for use * by an HCA. @@ -1147,6 +1161,8 @@ */ int ib_query_mr(struct ib_mr *mr, struct ib_mr_attr *mr_attr); +#endif /* 0 */ + /** * ib_dereg_mr - Deregisters a memory region and removes it from the * HCA translation table. @@ -1158,7 +1174,9 @@ * ib_alloc_mw - Allocates a memory window. * @pd: The protection domain associated with the memory window. */ +#if 0 struct ib_mw *ib_alloc_mw(struct ib_pd *pd); +#endif /** * ib_bind_mw - Posts a work request to the send queue of the specified @@ -1183,7 +1201,9 @@ * ib_dealloc_mw - Deallocates a memory window. * @mw: The memory window to deallocate. */ +#if 0 int ib_dealloc_mw(struct ib_mw *mw); +#endif /** * ib_alloc_fmr - Allocates a unmapped fast memory region. --- linux-2.6.10-mm1-full/drivers/infiniband/core/device.c.old 2005-01-03 17:34:59.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/core/device.c 2005-01-03 17:36:15.000000000 +0100 @@ -549,6 +549,8 @@ } EXPORT_SYMBOL(ib_query_pkey); +#if 0 + /** * ib_modify_device - Change IB device attributes * @device:Device to modify @@ -587,6 +589,8 @@ } EXPORT_SYMBOL(ib_modify_port); +#endif /* 0 */ + static int __init ib_core_init(void) { int ret; --- linux-2.6.10-mm1-full/drivers/infiniband/core/Makefile.old 2005-01-03 17:40:51.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/core/Makefile 2005-01-03 17:41:26.000000000 +0100 @@ -3,7 +3,7 @@ obj-$(CONFIG_INFINIBAND) += ib_core.o ib_mad.o ib_sa.o ib_umad.o ib_core-y := packer.o ud_header.o verbs.o sysfs.o \ - device.o fmr_pool.o cache.o + device.o cache.o ib_mad-y := mad.o smi.o agent.o --- linux-2.6.10-mm1-full/drivers/infiniband/include/ib_mad.h.old 2005-01-03 17:42:48.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/include/ib_mad.h 2005-01-03 17:43:56.000000000 +0100 @@ -297,6 +297,7 @@ * @recv_handler: The callback routine invoked for a snooped receive. * @context: User specified context associated with the registration. */ +#if 0 struct ib_mad_agent *ib_register_mad_snoop(struct ib_device *device, u8 port_num, enum ib_qp_type qp_type, @@ -304,6 +305,7 @@ ib_mad_snoop_handler snoop_handler, ib_mad_recv_handler recv_handler, void *context); +#endif /** * ib_unregister_mad_agent - Unregisters a client from using MAD services. @@ -337,8 +339,10 @@ * This call copies a chain of received RMPP MADs into a single data buffer, * removing duplicated headers. */ +#if 0 void ib_coalesce_recv_mad(struct ib_mad_recv_wc *mad_recv_wc, void *buf); +#endif /** * ib_free_recv_mad - Returns data buffers used to receive a MAD to the @@ -361,6 +365,8 @@ void ib_cancel_mad(struct ib_mad_agent *mad_agent, u64 wr_id); +#if 0 + /** * ib_redirect_mad_qp - Registers a QP for MAD services. * @qp: Reference to a QP that requires MAD services. @@ -401,4 +407,6 @@ int ib_process_mad_wc(struct ib_mad_agent *mad_agent, struct ib_wc *wc); +#endif /* 0 */ + #endif /* IB_MAD_H */ --- linux-2.6.10-mm1-full/drivers/infiniband/core/mad.c.old 2005-01-03 17:44:07.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/core/mad.c 2005-01-03 18:00:30.000000000 +0100 @@ -370,6 +370,8 @@ IB_MAD_SNOOP_RMPP_RECVS*/)); } +#if 0 + static int register_snoop_agent(struct ib_mad_qp_info *qp_info, struct ib_mad_snoop_private *mad_snoop_priv) { @@ -473,6 +475,8 @@ } EXPORT_SYMBOL(ib_register_mad_snoop); +#endif /* 0 */ + static void unregister_mad_agent(struct ib_mad_agent_private *mad_agent_priv) { struct ib_mad_port_private *port_priv; @@ -892,6 +896,8 @@ } EXPORT_SYMBOL(ib_free_recv_mad); +#if 0 + void ib_coalesce_recv_mad(struct ib_mad_recv_wc *mad_recv_wc, void *buf) { @@ -917,6 +923,8 @@ } EXPORT_SYMBOL(ib_process_mad_wc); +#endif /* 0 */ + static int method_in_use(struct ib_mad_mgmt_method_table **method, struct ib_mad_reg_req *mad_reg_req) { --- linux-2.6.10-mm1-full/drivers/infiniband/include/ib_pack.h.old 2005-01-03 17:45:55.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/include/ib_pack.h 2005-01-03 17:46:06.000000000 +0100 @@ -238,8 +238,9 @@ int ib_ud_header_pack(struct ib_ud_header *header, void *buf); - +#if 0 int ib_ud_header_unpack(void *buf, struct ib_ud_header *header); +#endif #endif /* IB_PACK_H */ --- linux-2.6.10-mm1-full/drivers/infiniband/core/ud_header.c.old 2005-01-03 17:46:14.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/core/ud_header.c 2005-01-03 17:46:40.000000000 +0100 @@ -288,6 +288,7 @@ * ib_ud_header_pack() unpacks the UD header structure @header from wire * format in the buffer @buf. */ +#if 0 int ib_ud_header_unpack(void *buf, struct ib_ud_header *header) { @@ -363,3 +364,5 @@ return 0; } EXPORT_SYMBOL(ib_ud_header_unpack); +#endif /* 0 */ + --- linux-2.6.10-mm1-full/drivers/infiniband/core/verbs.c.old 2005-01-03 17:50:40.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/core/verbs.c 2005-01-03 17:52:44.000000000 +0100 @@ -85,6 +85,8 @@ } EXPORT_SYMBOL(ib_create_ah); +#if 0 + int ib_modify_ah(struct ib_ah *ah, struct ib_ah_attr *ah_attr) { return ah->device->modify_ah ? @@ -101,6 +103,8 @@ } EXPORT_SYMBOL(ib_query_ah); +#endif /* 0 */ + int ib_destroy_ah(struct ib_ah *ah) { struct ib_pd *pd; @@ -151,6 +155,7 @@ } EXPORT_SYMBOL(ib_modify_qp); +#if 0 int ib_query_qp(struct ib_qp *qp, struct ib_qp_attr *qp_attr, int qp_attr_mask, @@ -161,6 +166,7 @@ -ENOSYS; } EXPORT_SYMBOL(ib_query_qp); +#endif /* 0 */ int ib_destroy_qp(struct ib_qp *qp) { @@ -219,6 +225,7 @@ } EXPORT_SYMBOL(ib_destroy_cq); +#if 0 int ib_resize_cq(struct ib_cq *cq, int cqe) { @@ -234,6 +241,7 @@ return ret; } EXPORT_SYMBOL(ib_resize_cq); +#endif /* 0 */ /* Memory regions */ @@ -254,6 +262,8 @@ } EXPORT_SYMBOL(ib_get_dma_mr); +#if 0 + struct ib_mr *ib_reg_phys_mr(struct ib_pd *pd, struct ib_phys_buf *phys_buf_array, int num_phys_buf, @@ -315,6 +325,8 @@ } EXPORT_SYMBOL(ib_query_mr); +#endif /* 0 */ + int ib_dereg_mr(struct ib_mr *mr) { struct ib_pd *pd; @@ -334,6 +346,8 @@ /* Memory windows */ +#if 0 + struct ib_mw *ib_alloc_mw(struct ib_pd *pd) { struct ib_mw *mw; @@ -366,6 +380,8 @@ } EXPORT_SYMBOL(ib_dealloc_mw); +#endif /* 0 */ + /* "Fast" memory regions */ struct ib_fmr *ib_alloc_fmr(struct ib_pd *pd, --- linux-2.6.10-mm1-full/drivers/infiniband/hw/mthca/mthca_cmd.h.old 2005-01-03 17:53:41.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/hw/mthca/mthca_cmd.h 2005-01-03 17:53:51.000000000 +0100 @@ -258,8 +258,10 @@ int mthca_MODIFY_QP(struct mthca_dev *dev, int trans, u32 num, int is_ee, void *qp_context, u32 optmask, u8 *status); +#if 0 int mthca_QUERY_QP(struct mthca_dev *dev, u32 num, int is_ee, void *qp_context, u8 *status); +#endif int mthca_CONF_SPECIAL_QP(struct mthca_dev *dev, int type, u32 qpn, u8 *status); int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int port, --- linux-2.6.10-mm1-full/drivers/infiniband/hw/mthca/mthca_cmd.c.old 2005-01-03 17:53:03.000000000 +0100 +++ linux-2.6.10-mm1-full/drivers/infiniband/hw/mthca/mthca_cmd.c 2005-01-03 17:53:28.000000000 +0100 @@ -1439,6 +1439,7 @@ return err; } +#if 0 int mthca_QUERY_QP(struct mthca_dev *dev, u32 num, int is_ee, void *qp_context, u8 *status) { @@ -1460,6 +1461,7 @@ PCI_DMA_FROMDEVICE); return err; } +#endif /* 0 */ int mthca_CONF_SPECIAL_QP(struct mthca_dev *dev, int type, u32 qpn, u8 *status) From bunk at stusta.de Mon Jan 3 09:22:02 2005 From: bunk at stusta.de (Adrian Bunk) Date: Mon, 3 Jan 2005 18:22:02 +0100 Subject: [openib-general] infiniband: rename two source files? Message-ID: <20050103172202.GH2980@stusta.de> drivers/infiniband/core/Makefile contains the following: <-- snip --> ... ib_sa-y := sa_query.o ib_umad-y := user_mad.o <-- snip --> Is it planned to add other objects to ib_sa and/or ib_umad, or would you accept a patch to rename the source files? cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed From tduffy at sun.com Mon Jan 3 10:36:19 2005 From: tduffy at sun.com (Tom Duffy) Date: Mon, 03 Jan 2005 10:36:19 -0800 Subject: [openib-general] [PATCH] fix CA type name truncation In-Reply-To: <1103838383.16121.28.camel@duffman> References: <1103838383.16121.28.camel@duffman> Message-ID: <1104777379.21424.11.camel@duffman> On Thu, 2004-12-23 at 13:46 -0800, Tom Duffy wrote: > Increase the size of ca_type to accommodate string printed out of ARBEL > in TAVOR compat mode. Any reason not to take this patch? > Index: gen2/trunk/src/userspace/include/umad.h > =================================================================== > --- gen2/trunk/src/userspace/include/umad.h (revision 1376) > +++ gen2/trunk/src/userspace/include/umad.h (working copy) > @@ -68,7 +68,7 @@ > char ca_name[UMAD_CA_NAME_LEN]; > int numports; > char fw_ver[20]; > - char ca_type[20]; > + char ca_type[40]; > char hw_ver[20]; > uint64_t node_guid; > uint64_t system_guid; -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From tduffy at sun.com Mon Jan 3 10:41:31 2005 From: tduffy at sun.com (Tom Duffy) Date: Mon, 03 Jan 2005 10:41:31 -0800 Subject: [openib-general] [PATCH][TRIVIAL] remove debug printk Message-ID: <1104777691.21424.15.camel@duffman> Remove debug printk. Signed-off-by: Tom Duffy Index: drivers/infiniband/core/sysfs.c =================================================================== --- drivers/infiniband/core/sysfs.c (revision 1447) +++ drivers/infiniband/core/sysfs.c (working copy) @@ -188,8 +188,6 @@ case 4: speed = " QDR"; break; } - printk(KERN_ERR "width %d speed %d\n", attr.active_width, attr.active_speed); - rate = 25 * ib_width_enum_to_int(attr.active_width) * attr.active_speed; if (rate < 0) return -EINVAL; -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From halr at voltaire.com Mon Jan 3 10:44:58 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 03 Jan 2005 13:44:58 -0500 Subject: [openib-general] [PATCH] fix CA type name truncation In-Reply-To: <1104777379.21424.11.camel@duffman> References: <1103838383.16121.28.camel@duffman> <1104777379.21424.11.camel@duffman> Message-ID: <1104777897.4662.2425.camel@localhost.localdomain> On Mon, 2005-01-03 at 13:36, Tom Duffy wrote: > On Thu, 2004-12-23 at 13:46 -0800, Tom Duffy wrote: > > Increase the size of ca_type to accommodate string printed out of ARBEL > > in TAVOR compat mode. > > Any reason not to take this patch? > > > Index: gen2/trunk/src/userspace/include/umad.h > > =================================================================== > > --- gen2/trunk/src/userspace/include/umad.h (revision 1376) > > +++ gen2/trunk/src/userspace/include/umad.h (working copy) > > @@ -68,7 +68,7 @@ > > char ca_name[UMAD_CA_NAME_LEN]; > > int numports; > > char fw_ver[20]; > > - char ca_type[20]; > > + char ca_type[40]; > > char hw_ver[20]; > > uint64_t node_guid; > > uint64_t system_guid; Thanks. I just integrated and tested this patch. BTW, this file is now located at userspace/management/include. -- Hal From roland at topspin.com Mon Jan 3 11:19:33 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 03 Jan 2005 11:19:33 -0800 Subject: [openib-general] [PATCH][TRIVIAL] remove debug printk In-Reply-To: <1104777691.21424.15.camel@duffman> (Tom Duffy's message of "Mon, 03 Jan 2005 10:41:31 -0800") References: <1104777691.21424.15.camel@duffman> Message-ID: <523bxi8gmy.fsf@topspin.com> Tom> Remove debug printk. Thanks, applied to subversion. - R. From roland at topspin.com Mon Jan 3 11:40:22 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 03 Jan 2005 11:40:22 -0800 Subject: [openib-general] Re: tvflash HCA numbering with multiple HCAs In-Reply-To: <1104515787.4662.170.camel@localhost.localdomain> (Hal Rosenstock's message of "31 Dec 2004 12:56:28 -0500") References: <1104515787.4662.170.camel@localhost.localdomain> Message-ID: <52wtuu713t.fsf@topspin.com> Hal> Hi, Has flashing HCAs when there are multiple HCAs in the Hal> host been tried ? There seems to be some confusion on the Hal> HCA numbering in tvflash as shown by the GUIDs below. I Hal> needed to tvflash -h 1 to update mthca0. Yes, I've tried it and it works. It is true that the PCI device order may be different between the kernel and tvflash. Maybe the best solution is to specify devices by PCI domain, bus, device rather than some arbitrary number. - R. From roland at topspin.com Mon Jan 3 11:45:53 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 03 Jan 2005 11:45:53 -0800 Subject: [openib-general] Re: [2.6 patch] infiniband: possible cleanups In-Reply-To: <20050103171937.GG2980@stusta.de> (Adrian Bunk's message of "Mon, 3 Jan 2005 18:19:37 +0100") References: <20050103171937.GG2980@stusta.de> Message-ID: <52sm5i70um.fsf@topspin.com> Thanks, I've applied the changes adding "static" to our tree. I'm holding off on the "#if 0" changes since some is code useful for debugging modules and other code is used by modules in development. Thanks, Roland From johannes at erdfelt.com Mon Jan 3 11:46:16 2005 From: johannes at erdfelt.com (Johannes Erdfelt) Date: Mon, 3 Jan 2005 11:46:16 -0800 Subject: [openib-general] Re: tvflash HCA numbering with multiple HCAs In-Reply-To: <52wtuu713t.fsf@topspin.com> References: <1104515787.4662.170.camel@localhost.localdomain> <52wtuu713t.fsf@topspin.com> Message-ID: <20050103194616.GI18847@sventech.com> On Mon, Jan 03, 2005, Roland Dreier wrote: > Hal> Hi, Has flashing HCAs when there are multiple HCAs in the > Hal> host been tried ? There seems to be some confusion on the > Hal> HCA numbering in tvflash as shown by the GUIDs below. I > Hal> needed to tvflash -h 1 to update mthca0. > > Yes, I've tried it and it works. It is true that the PCI device order > may be different between the kernel and tvflash. Maybe the best > solution is to specify devices by PCI domain, bus, device rather than > some arbitrary number. I think we should be able to match the PCI devices with the information from the sysfs IB tree. Although I guess that would require the IB drivers to be loaded to be able to flash a device. Or we can fix the order you see here as well as add specifying devices by the domain, bus, device. The problem here is that the 2.6 version of libpci returns devices in reverse order to the 2.4 version which is causing tvflash to create the list backwards on 2.6. Since OpenIB is 2.6 only right now, it should be as easy as reversing the order of the list tvflash constructs. JE From roland at topspin.com Mon Jan 3 11:46:28 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 03 Jan 2005 11:46:28 -0800 Subject: [openib-general] Re: infiniband: rename two source files? In-Reply-To: <20050103172202.GH2980@stusta.de> (Adrian Bunk's message of "Mon, 3 Jan 2005 18:22:02 +0100") References: <20050103172202.GH2980@stusta.de> Message-ID: <52oeg670tn.fsf@topspin.com> Adrian> Is it planned to add other objects to ib_sa and/or Adrian> ib_umad, or would you accept a patch to rename the source Adrian> files? I think both modules are very close to the point where it would make sense to split into multiple files, so I would prefer to leave things as they are for now. Thanks, Roland From roland at topspin.com Mon Jan 3 11:47:47 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 03 Jan 2005 11:47:47 -0800 Subject: [openib-general] Re: tvflash HCA numbering with multiple HCAs In-Reply-To: <20050103194616.GI18847@sventech.com> (Johannes Erdfelt's message of "Mon, 3 Jan 2005 11:46:16 -0800") References: <1104515787.4662.170.camel@localhost.localdomain> <52wtuu713t.fsf@topspin.com> <20050103194616.GI18847@sventech.com> Message-ID: <52k6qu70rg.fsf@topspin.com> Johannes> Although I guess that would require the IB drivers to be Johannes> loaded to be able to flash a device. Right, that's why I would prefer not to tie tvflash in with /sys/class/infiniband (because we may be flashing an HCA with firmware too corrupted for the driver to load). Johannes> Or we can fix the order you see here as well as add Johannes> specifying devices by the domain, bus, device. That's my current plan. - R. From halr at voltaire.com Mon Jan 3 11:40:12 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 03 Jan 2005 14:40:12 -0500 Subject: [openib-general] Re: tvflash HCA numbering with multiple HCAs In-Reply-To: <52wtuu713t.fsf@topspin.com> References: <1104515787.4662.170.camel@localhost.localdomain> <52wtuu713t.fsf@topspin.com> Message-ID: <1104781212.4662.2440.camel@localhost.localdomain> On Mon, 2005-01-03 at 14:40, Roland Dreier wrote: > Hal> Hi, Has flashing HCAs when there are multiple HCAs in the > Hal> host been tried ? There seems to be some confusion on the > Hal> HCA numbering in tvflash as shown by the GUIDs below. I > Hal> needed to tvflash -h 1 to update mthca0. > > Yes, I've tried it and it works. Yes it does work. You just have to know the numbers are not the same as the mthca numbers. > It is true that the PCI device order > may be different between the kernel and tvflash. Maybe the best > solution is to specify devices by PCI domain, bus, device rather than > some arbitrary number. It was unclear to me that this was an arbitrary number (rather than the number which was appended to mthca). How is the HCA numbering for mthca decided ? Why can't tvflash use the same numbering scheme ? -- Hal From tduffy at sun.com Mon Jan 3 11:48:37 2005 From: tduffy at sun.com (Tom Duffy) Date: Mon, 03 Jan 2005 11:48:37 -0800 Subject: [openib-general] progress...but opensm crashed In-Reply-To: References: Message-ID: <1104781717.21424.27.camel@duffman> On Mon, 2004-12-27 at 12:55 +0200, shaharf wrote: > Tom, > I debugged the opensm a little, and it seems like a simple > opensm bug. Somehow the destination lid of the report target was not > found, and as there were no checks for that, the opensm faulted. I added > the missing checks. I don't know how this happened - i.e. why was the > dest port invalid. It may happen during reconfiguration phases. Again, > log files would help me very much. > > Please update your opensm and try again. OK, today things seem to be better with an updated kernel and sm. Opensm is not crashing (but Solaris is :)). I will file a bug on my side to try to figure out why Solaris is krunked. It would be cool if the log file was saved with the pid in the name as well since then it wouldn't delete the old one when you restarted the sm. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From johannes at erdfelt.com Mon Jan 3 11:53:21 2005 From: johannes at erdfelt.com (Johannes Erdfelt) Date: Mon, 3 Jan 2005 11:53:21 -0800 Subject: [openib-general] Re: tvflash HCA numbering with multiple HCAs In-Reply-To: <1104781212.4662.2440.camel@localhost.localdomain> References: <1104515787.4662.170.camel@localhost.localdomain> <52wtuu713t.fsf@topspin.com> <1104781212.4662.2440.camel@localhost.localdomain> Message-ID: <20050103195321.GJ18847@sventech.com> On Mon, Jan 03, 2005, Hal Rosenstock wrote: > On Mon, 2005-01-03 at 14:40, Roland Dreier wrote: > > It is true that the PCI device order > > may be different between the kernel and tvflash. Maybe the best > > solution is to specify devices by PCI domain, bus, device rather than > > some arbitrary number. > > It was unclear to me that this was an arbitrary number (rather than the > number which was appended to mthca). > > How is the HCA numbering for mthca decided ? Why can't tvflash use the > same numbering scheme ? Check my other reply, but the short answers are: The numbering for mtcha is decided by the PCI core and how it scans PCI devices and calls the mtcha callback. tvflash can't use the same numbering scheme because that would require the IB drivers to be loaded. However, it would be nice to have tvflash follow the same numbering scheme when the IB drivers are loaded to make it easier to use. I plan on looking into this today. JE From halr at voltaire.com Mon Jan 3 12:54:28 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 03 Jan 2005 15:54:28 -0500 Subject: [openib-general] Re: tvflash HCA numbering with multiple HCAs In-Reply-To: <20050103195321.GJ18847@sventech.com> References: <1104515787.4662.170.camel@localhost.localdomain> <52wtuu713t.fsf@topspin.com> <1104781212.4662.2440.camel@localhost.localdomain> <20050103195321.GJ18847@sventech.com> Message-ID: <1104785668.4662.2473.camel@localhost.localdomain> On Mon, 2005-01-03 at 14:53, Johannes Erdfelt wrote: > Check my other reply, but the short answers are: The numbering for mtcha > is decided by the PCI core and how it scans PCI devices and calls the > mtcha callback. tvflash can't use the same numbering scheme because that > would require the IB drivers to be loaded. Couldn't tvflash still determine the same order mthca would regardless of whether it is loaded or not ? That number wouldn't be terribly meaningful unless mthca were loaded previously (and subsequently removed) or the machine rebooted with mthca loaded after obtaining the firmware version. > However, it would be nice to have tvflash follow the same numbering > scheme when the IB drivers are loaded to make it easier to use. > I plan on looking into this today. Sounds good. Thanks. -- Hal From halr at voltaire.com Mon Jan 3 12:59:42 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 03 Jan 2005 15:59:42 -0500 Subject: [openib-general] Re: tvflash HCA numbering with multiple HCAs In-Reply-To: <20050103194616.GI18847@sventech.com> References: <1104515787.4662.170.camel@localhost.localdomain> <52wtuu713t.fsf@topspin.com> <20050103194616.GI18847@sventech.com> Message-ID: <1104785691.4662.2475.camel@localhost.localdomain> On Mon, 2005-01-03 at 14:46, Johannes Erdfelt wrote: > Or we can fix the order you see here as well as add specifying devices > by the domain, bus, device. > > The problem here is that the 2.6 version of libpci returns devices in > reverse order to the 2.4 version which is causing tvflash to create the > list backwards on 2.6. > > Since OpenIB is 2.6 only right now, it should be as easy as reversing > the order of the list tvflash constructs. That's what I was looking for. Thanks. -- Hal From johannes at erdfelt.com Mon Jan 3 13:10:36 2005 From: johannes at erdfelt.com (Johannes Erdfelt) Date: Mon, 3 Jan 2005 13:10:36 -0800 Subject: [openib-general] Re: tvflash HCA numbering with multiple HCAs In-Reply-To: <1104785668.4662.2473.camel@localhost.localdomain> References: <1104515787.4662.170.camel@localhost.localdomain> <52wtuu713t.fsf@topspin.com> <1104781212.4662.2440.camel@localhost.localdomain> <20050103195321.GJ18847@sventech.com> <1104785668.4662.2473.camel@localhost.localdomain> Message-ID: <20050103211036.GK18847@sventech.com> On Mon, Jan 03, 2005, Hal Rosenstock wrote: > Couldn't tvflash still determine the same order mthca would regardless > of whether it is loaded or not ? That number wouldn't be terribly > meaningful unless mthca were loaded previously (and subsequently > removed) or the machine rebooted with mthca loaded after obtaining the > firmware version. Most of the time atleast. Things like hotplug can change the order of the devices and thusly the numbering. But that's kind of rare and most of the time the devices will be installed at boot time. We also know what algorithm the kernel uses, so it should be relatively easy to match what the user expects in most common scenarios. JE From halr at voltaire.com Mon Jan 3 13:03:22 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 03 Jan 2005 16:03:22 -0500 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <1104781717.21424.27.camel@duffman> References: <1104781717.21424.27.camel@duffman> Message-ID: <1104786202.4662.2480.camel@localhost.localdomain> On Mon, 2005-01-03 at 14:48, Tom Duffy wrote: > It would be cool if the log file was saved with the pid in the name as > well since then it wouldn't delete the old one when you restarted the > sm. Dealing with the too many log files (and space) issue is probably better than deleting the old log file (and making that explicit). So if no one has any objections to this, I will commit the change for this. It is pretty simple. -- Hal Index: osm/opensm/osm_subnet.c =================================================================== --- osm/opensm/osm_subnet.c (revision 1456) +++ osm/opensm/osm_subnet.c (working copy) @@ -94,6 +94,8 @@ #include "osm_multicast.h" #include "osm_inform.h" +static char log_file[64]; + /********************************************************************** **********************************************************************/ void @@ -433,7 +435,8 @@ p_opt->polling_retry_number = 4; p_opt->force_heavy_sweep = FALSE; p_opt->log_flags = 0; - p_opt->log_file = "/tmp/osm.log"; + sprintf(&log_file, "/tmp/osm.%d.log", getpid()); + p_opt->log_file = &log_file; p_opt->port_profile_switch_nodes = FALSE; p_opt->max_port_profile = 0xffffffff; p_opt->pfn_ui_pre_lid_assign = NULL; Index: osm/opensm/main.c =================================================================== --- osm/opensm/main.c (revision 1456) +++ osm/opensm/main.c (working copy) @@ -199,7 +199,7 @@ printf( "-f\n" "--log_file\n" " This option defines the log to be the given file.\n" - " By default the log goes to /tmp/osm.log.\n" + " By default the log goes to /tmp/osm.PID.log.\n" " For the log to go to standard output use -f stdout.\n\n"); printf( "-v\n" "--verbose\n" From johannes at erdfelt.com Mon Jan 3 13:12:31 2005 From: johannes at erdfelt.com (Johannes Erdfelt) Date: Mon, 3 Jan 2005 13:12:31 -0800 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <1104786202.4662.2480.camel@localhost.localdomain> References: <1104781717.21424.27.camel@duffman> <1104786202.4662.2480.camel@localhost.localdomain> Message-ID: <20050103211231.GL18847@sventech.com> On Mon, Jan 03, 2005, Hal Rosenstock wrote: > On Mon, 2005-01-03 at 14:48, Tom Duffy wrote: > > It would be cool if the log file was saved with the pid in the name as > > well since then it wouldn't delete the old one when you restarted the > > sm. > > Dealing with the too many log files (and space) issue is probably better > than deleting the old log file (and making that explicit). So if no one > has any objections to this, I will commit the change for this. It is > pretty simple. Why not just append to the previous log file? That's what pretty much every other daemon I've used does and what I would expect. Maybe also move the log file to /var/log too? JE From tduffy at sun.com Mon Jan 3 13:14:10 2005 From: tduffy at sun.com (Tom Duffy) Date: Mon, 03 Jan 2005 13:14:10 -0800 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <1104786202.4662.2480.camel@localhost.localdomain> References: <1104781717.21424.27.camel@duffman> <1104786202.4662.2480.camel@localhost.localdomain> Message-ID: <1104786850.21424.31.camel@duffman> On Mon, 2005-01-03 at 16:03 -0500, Hal Rosenstock wrote: > On Mon, 2005-01-03 at 14:48, Tom Duffy wrote: > > It would be cool if the log file was saved with the pid in the name as > > well since then it wouldn't delete the old one when you restarted the > > sm. > > Dealing with the too many log files (and space) issue is probably better > than deleting the old log file (and making that explicit). So if no one > has any objections to this, I will commit the change for this. It is > pretty simple. Looks good. Thanks, -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mst at mellanox.co.il Mon Jan 3 13:31:19 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 3 Jan 2005 23:31:19 +0200 Subject: [openib-general] Re: tvflash HCA numbering with multiple HCAs In-Reply-To: <52k6qu70rg.fsf@topspin.com> References: <1104515787.4662.170.camel@localhost.localdomain> <52wtuu713t.fsf@topspin.com> <20050103194616.GI18847@sventech.com> <52k6qu70rg.fsf@topspin.com> Message-ID: <20050103213119.GA5623@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] Re: tvflash HCA numbering with multiple HCAs": > Johannes> Or we can fix the order you see here as well as add > Johannes> specifying devices by the domain, bus, device. > > That's my current plan. > > - R. Or use mstflint for flashing which already does exactly that. Check it out from https://openib.org/svn/trunk/contrib/mellanox/mstflint/ MST From halr at voltaire.com Mon Jan 3 13:34:43 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 03 Jan 2005 16:34:43 -0500 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <20050103211231.GL18847@sventech.com> References: <1104781717.21424.27.camel@duffman> <1104786202.4662.2480.camel@localhost.localdomain> <20050103211231.GL18847@sventech.com> Message-ID: <1104788083.4662.2503.camel@localhost.localdomain> On Mon, 2005-01-03 at 16:12, Johannes Erdfelt wrote: > Why not just append to the previous log file? That's what pretty much > every other daemon I've used does and what I would expect. That seems like a better way to handle it. Any objections ? OpenSM also creates some other files in /tmp. Should these be moved to /var/log/osm/ ? > Maybe also move the log file to /var/log too? Sounds good. Here's the patch for this approach: -- Hal Index: osm_log.h =================================================================== --- osm_log.h (revision 1456) +++ osm_log.h (working copy) @@ -259,10 +259,10 @@ } else { - p_log->out_port = fopen(log_file,"w+"); + p_log->out_port = fopen(log_file,"a+"); if (!p_log->out_port) { - printf("Cannot open %s for writing. Permission denied\n", log_file); + printf("Cannot open %s for appending. Permission denied\n", log_file); return(IB_UNKNOWN_ERROR); } } Index: osm_subnet.c =================================================================== --- osm_subnet.c (revision 1456) +++ osm_subnet.c (working copy) @@ -433,7 +433,7 @@ p_opt->polling_retry_number = 4; p_opt->force_heavy_sweep = FALSE; p_opt->log_flags = 0; - p_opt->log_file = "/tmp/osm.log"; + p_opt->log_file = "/var/log/osm.log"; p_opt->port_profile_switch_nodes = FALSE; p_opt->max_port_profile = 0xffffffff; p_opt->pfn_ui_pre_lid_assign = NULL; From rminnich at lanl.gov Mon Jan 3 13:45:08 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Mon, 3 Jan 2005 14:45:08 -0700 (MST) Subject: [openib-general] Re: tvflash HCA numbering with multiple HCAs In-Reply-To: <20050103213119.GA5623@mellanox.co.il> References: <1104515787.4662.170.camel@localhost.localdomain> <52wtuu713t.fsf@topspin.com> <20050103194616.GI18847@sventech.com> <52k6qu70rg.fsf@topspin.com> <20050103213119.GA5623@mellanox.co.il> Message-ID: On Mon, 3 Jan 2005, Michael S. Tsirkin wrote: > Or use mstflint for flashing which already does exactly that. I have not used this, does it still require that you insmod three modules to work? ron From mst at mellanox.co.il Mon Jan 3 13:59:58 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 3 Jan 2005 23:59:58 +0200 Subject: [openib-general] Re: tvflash HCA numbering with multiple HCAs In-Reply-To: References: <1104515787.4662.170.camel@localhost.localdomain> <52wtuu713t.fsf@topspin.com> <20050103194616.GI18847@sventech.com> <52k6qu70rg.fsf@topspin.com> <20050103213119.GA5623@mellanox.co.il> Message-ID: <20050103215958.GA5667@mellanox.co.il> Hello! Quoting r. Ronald G. Minnich (rminnich at lanl.gov) "Re: [openib-general] Re: tvflash HCA numbering with multiple HCAs": > > > On Mon, 3 Jan 2005, Michael S. Tsirkin wrote: > > > Or use mstflint for flashing which already does exactly that. > > I have not used this, does it still require that you insmod three modules > to work? > > ron No, no :) Just pass -d bus:dev.fn for memory access or -d /proc/bus/pci/bus/dev.fn for configuration. MST From iod00d at hp.com Mon Jan 3 14:46:26 2005 From: iod00d at hp.com (Grant Grundler) Date: Mon, 3 Jan 2005 14:46:26 -0800 Subject: [openib-general] Problem with userspace tree structure In-Reply-To: <1103831548.16121.5.camel@duffman> References: <1AC79F16F5C5284499BB9591B33D6F0003206023@orsmsx408> <52hdmc98w9.fsf@topspin.com> <20041223184004.GA30030@mellanox.co.il> <52brck97bw.fsf@topspin.com> <1103831548.16121.5.camel@duffman> Message-ID: <20050103224626.GE7370@esmail.cup.hp.com> On Thu, Dec 23, 2004 at 11:52:28AM -0800, Tom Duffy wrote: > I have seen a lot of projects who have only autogen.sh in the source > control, but then have a tarball available that has a generated > configure script for the user to run. Yes, automate the downloadable stuff. e.g.: http://cvs.parisc-linux.org/download/linux-2.6/ (credit goes to Paul Bame for the palinux pages and autobuilder) grant From halr at voltaire.com Mon Jan 3 14:39:47 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 03 Jan 2005 17:39:47 -0500 Subject: [openib-general] Re: tvflash HCA numbering with multiple HCAs In-Reply-To: <20050103213119.GA5623@mellanox.co.il> References: <1104515787.4662.170.camel@localhost.localdomain> <52wtuu713t.fsf@topspin.com> <20050103194616.GI18847@sventech.com> <52k6qu70rg.fsf@topspin.com> <20050103213119.GA5623@mellanox.co.il> Message-ID: <1104791987.4662.2555.camel@localhost.localdomain> On Mon, 2005-01-03 at 16:31, Michael S. Tsirkin wrote: > Or use mstflint for flashing which already does exactly that. > Check it out from https://openib.org/svn/trunk/contrib/mellanox/mstflint/ Does mstflint handle .mlx files or .bin files (or both) for the firmware ? -- Hal From bunk at stusta.de Mon Jan 3 15:10:24 2005 From: bunk at stusta.de (Adrian Bunk) Date: Tue, 4 Jan 2005 00:10:24 +0100 Subject: [openib-general] Re: [2.6 patch] infiniband: possible cleanups In-Reply-To: <52sm5i70um.fsf@topspin.com> References: <20050103171937.GG2980@stusta.de> <52sm5i70um.fsf@topspin.com> Message-ID: <20050103231024.GP2980@stusta.de> On Mon, Jan 03, 2005 at 11:45:53AM -0800, Roland Dreier wrote: > Thanks, I've applied the changes adding "static" to our tree. I'm > holding off on the "#if 0" changes since some is code useful for > debugging modules and other code is used by modules in development. Is there an ETA when the debugging modules and the modules in development will be merged into the kernel? > Thanks, > Roland cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed From mst at mellanox.co.il Mon Jan 3 15:19:03 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 4 Jan 2005 01:19:03 +0200 Subject: [openib-general] Re: tvflash HCA numbering with multiple HCAs In-Reply-To: <1104791987.4662.2555.camel@localhost.localdomain> References: <1104515787.4662.170.camel@localhost.localdomain> <52wtuu713t.fsf@topspin.com> <20050103194616.GI18847@sventech.com> <52k6qu70rg.fsf@topspin.com> <20050103213119.GA5623@mellanox.co.il> <1104791987.4662.2555.camel@localhost.localdomain> Message-ID: <20050103231903.GA7747@mellanox.co.il> Hello! Quoting r. Hal Rosenstock (halr at voltaire.com) "Re: [openib-general] Re: tvflash HCA numbering with multiple HCAs": > On Mon, 2005-01-03 at 16:31, Michael S. Tsirkin wrote: > > Or use mstflint for flashing which already does exactly that. > > Check it out from https://openib.org/svn/trunk/contrib/mellanox/mstflint/ > > Does mstflint handle .mlx files or .bin files (or both) for the firmware > ? > > -- Hal The .bin files. But it can do generic flash writes/reads and some image editing things like overriding guids from the command line. I usually just do mstflint -d 06:00.0 -i b MST From mst at mellanox.co.il Mon Jan 3 15:20:11 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 4 Jan 2005 01:20:11 +0200 Subject: [openib-general] Re: [2.6 patch] infiniband: possible cleanups In-Reply-To: <20050103231024.GP2980@stusta.de> References: <20050103171937.GG2980@stusta.de> <52sm5i70um.fsf@topspin.com> <20050103231024.GP2980@stusta.de> Message-ID: <20050103232011.GB7747@mellanox.co.il> Hello! Quoting r. Adrian Bunk (bunk at stusta.de) "[openib-general] Re: [2.6 patch] infiniband: possible cleanups": > On Mon, Jan 03, 2005 at 11:45:53AM -0800, Roland Dreier wrote: > > Thanks, I've applied the changes adding "static" to our tree. I'm > > holding off on the "#if 0" changes since some is code useful for > > debugging modules and other code is used by modules in development. > > Is there an ETA when the debugging modules and the modules in > development will be merged into the kernel? > > > Thanks, > > Roland > > cu > Adrian I saw some bits in Linus bk tree, if thats what you mean by "the kernel". mst From roland at topspin.com Mon Jan 3 15:24:59 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 03 Jan 2005 15:24:59 -0800 Subject: [openib-general] Re: [2.6 patch] infiniband: possible cleanups In-Reply-To: <20050103231024.GP2980@stusta.de> (Adrian Bunk's message of "Tue, 4 Jan 2005 00:10:24 +0100") References: <20050103171937.GG2980@stusta.de> <52sm5i70um.fsf@topspin.com> <20050103231024.GP2980@stusta.de> Message-ID: <524qhy6qpg.fsf@topspin.com> Adrian> Is there an ETA when the debugging modules and the modules Adrian> in development will be merged into the kernel? Once they're ready and pass review on lkml. - R. From mst at mellanox.co.il Mon Jan 3 15:34:49 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 4 Jan 2005 01:34:49 +0200 Subject: [openib-general] Re: [2.6 patch] infiniband: possible cleanups In-Reply-To: <524qhy6qpg.fsf@topspin.com> References: <20050103171937.GG2980@stusta.de> <52sm5i70um.fsf@topspin.com> <20050103231024.GP2980@stusta.de> <524qhy6qpg.fsf@topspin.com> Message-ID: <20050103233449.GC7747@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "[openib-general] Re: [2.6 patch] infiniband: possible cleanups": > Adrian> Is there an ETA when the debugging modules and the modules > Adrian> in development will be merged into the kernel? > > Once they're ready and pass review on lkml. > > - R. By the way, http://linus.bkbits.net:8080/linux-2.5/ChangeSet at -2w?nav=index.html already has Roland's patches, and I thought that was what Linus uses for kernel releases, right, Roland? mst From roland at topspin.com Mon Jan 3 15:39:57 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 03 Jan 2005 15:39:57 -0800 Subject: [openib-general] Re: [2.6 patch] infiniband: possible cleanups In-Reply-To: <20050103233449.GC7747@mellanox.co.il> (Michael S. Tsirkin's message of "Tue, 4 Jan 2005 01:34:49 +0200") References: <20050103171937.GG2980@stusta.de> <52sm5i70um.fsf@topspin.com> <20050103231024.GP2980@stusta.de> <524qhy6qpg.fsf@topspin.com> <20050103233449.GC7747@mellanox.co.il> Message-ID: <52zmzq5bg2.fsf@topspin.com> Michael> By the way, Michael> http://linus.bkbits.net:8080/linux-2.5/ChangeSet at -2w?nav=index.html Michael> already has Roland's patches, and I thought that was what Michael> Linus uses for kernel releases, right, Roland? Yes, the core kernel drivers are all merged in Linus's kernel already. Adrian and I are talking about modules that use some currently unused APIs, such as Sean's madeye debugging module, the CM, RMPP support, etc. - Roland From mplee at hpcn.ca.sandia.gov Mon Jan 3 16:05:08 2005 From: mplee at hpcn.ca.sandia.gov (Michael Lee) Date: Mon, 03 Jan 2005 16:05:08 -0800 Subject: [openib-general] System Downtime Message-ID: <1104797108.1047.18.camel@acheron.ca.sandia.gov> The server housing openib.org will be moving to its new location on Wednesday, 1/5/2004 @ 3PM PST. The expected down time will be 60 minutes. All services on openib.org (http, subversion, mail lists) will be down for the one-hour period. -- Michael Lee HPCN Sandia From hadi at cyberus.ca Mon Jan 3 20:18:14 2005 From: hadi at cyberus.ca (jamal) Date: 03 Jan 2005 23:18:14 -0500 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <20050103171227.GD7370@esmail.cup.hp.com> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> Message-ID: <1104812294.1085.53.camel@jzny.localdomain> On Mon, 2005-01-03 at 12:12, Grant Grundler wrote: > Some workloads that Jamal cares about (routing) only need 2 cpus. What bothers me is more the complexity this has introduced more than the workload. OTOH, 1-2% improvement posted by Roland is good justification. cheers, jamal From mst at mellanox.co.il Mon Jan 3 23:56:14 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 4 Jan 2005 09:56:14 +0200 Subject: [openib-general] Nitpicking: IB spec 1.2 Message-ID: <20050104075614.GA26009@mellanox.co.il> Hello! I was looking at IB spec rev 1.2 and I noted a difference with how gen2 behaves. 11.4.2 COMPLETION QUEUE OPERATIONS 11.4.2.1 POLL FOR COMPLETION The following appeared in IB spec rev 1.1 first, actually: The number of bytes transferred. The number of bytes transferred is returned in Work Completions for Receive Work Requests for incoming Sends and RDMA Writes with Immediate Data. This does not include the length of any immediate data. The number of bytes transferred is returned in Work Completions for Send Work Requests for RDMA Read and Atomic Operations. For the RQ of a UD QP that is not associated with an SRQ or for an SRQ that is associated with a UD QP, the number of bytes transferred is the payload of the message plus the 40 bytes reserved for the GRH. For the RQ of a UD QP that is not associated with an SRQ or for an SRQ that is associated with a UD QP, the 40 bytes is always included, whether or not the GRH is present. However, when local_completions() generates a wc from software, the byte_len field does not include the grh. Here's a patch. By the way, does someone know of a way to generate diffs with -p with svn diff? thanks, mst Index: core/mad.c =================================================================== --- core/mad.c (revision 1399) +++ core/mad.c (working copy) @@ -2017,7 +2043,7 @@ static void local_completions(void *data) wc.status = IB_WC_SUCCESS; wc.opcode = IB_WC_RECV; wc.vendor_err = 0; - wc.byte_len = sizeof(struct ib_mad); + wc.byte_len = sizeof(struct ib_mad) + sizeof(ib_grh); wc.src_qp = IB_QP0; wc.wc_flags = 0; wc.pkey_index = 0; MST From mst at mellanox.co.il Tue Jan 4 02:07:24 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 4 Jan 2005 12:07:24 +0200 Subject: [openib-general] [PATCH] Add local qp number to ib_wc Message-ID: <20050104100724.GA27245@mellanox.co.il> Hi! IB spec 1.2 add the qp number as a field in work completion: QP Number. Set if the Base Queue Management Extension or Shared Receive Queue Extension is supported. Now my understanding is that we kind of support the BQM since our post send lets you post multiple work requests. Further, when more than one qp is mapped to the same cq, it becomes convenient to have the qp number in the work completion, to be able to quickly tell whose completion it was. I would suggest add the ib_qp* to ib_wc, but that may not be valid since the qp may be removed after poll_cq. So, lets simply add the qp number to ib_wc. Patch attached. Works fine for me. MSt Index: include/ib_verbs.h =================================================================== --- include/ib_verbs.h (revision 1399) +++ include/ib_verbs.h (working copy) @@ -339,6 +339,7 @@ struct ib_wc { u32 vendor_err; u32 byte_len; __be32 imm_data; + u32 qp_num; u32 src_qp; int wc_flags; u16 pkey_index; Index: core/mad.c =================================================================== --- core/mad.c (revision 1399) +++ core/mad.c (working copy) @@ -2024,6 +2024,7 @@ static void local_completions(void *data wc.slid = IB_LID_PERMISSIVE; wc.sl = 0; wc.dlid_path_bits = 0; + wc.qp_num = IB_QP0; local->mad_priv->header.recv_wc.wc = &wc; local->mad_priv->header.recv_wc.mad_len = sizeof(struct ib_mad); Index: hw/mthca/mthca_cq.c =================================================================== --- hw/mthca/mthca_cq.c (revision 1399) +++ hw/mthca/mthca_cq.c (working copy) @@ -440,6 +440,8 @@ static inline int mthca_poll_one(struct spin_lock(&(*cur_qp)->lock); } + entry->qp_num = cur_qp->qpn; + if (is_send) { wq = &(*cur_qp)->sq; wqe_index = ((be32_to_cpu(cqe->wqe) - (*cur_qp)->send_wqe_offset) From halr at voltaire.com Tue Jan 4 05:37:37 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 04 Jan 2005 08:37:37 -0500 Subject: [openib-general] Nitpicking: IB spec 1.2 In-Reply-To: <20050104075614.GA26009@mellanox.co.il> References: <20050104075614.GA26009@mellanox.co.il> Message-ID: <1104845857.4661.294.camel@localhost.localdomain> On Tue, 2005-01-04 at 02:56, Michael S. Tsirkin wrote: > Hello! > I was looking at IB spec rev 1.2 and I noted a difference with > how gen2 behaves. > > 11.4.2 COMPLETION QUEUE OPERATIONS > 11.4.2.1 POLL FOR COMPLETION > > The following appeared in IB spec rev 1.1 first, actually: > > The number of bytes transferred. > The number of bytes transferred is returned in Work Completions > for Receive Work Requests for incoming Sends and > RDMA Writes with Immediate Data. This does not include the > length of any immediate data. > The number of bytes transferred is returned in Work Completions > for Send Work Requests for RDMA Read and Atomic Operations. > For the RQ of a UD QP that is not associated with an SRQ or > for an SRQ that is associated with a UD QP, the number of > bytes transferred is the payload of the message plus the 40 > bytes reserved for the GRH. For the RQ of a UD QP that is not > associated with an SRQ or for an SRQ that is associated with > a UD QP, the 40 bytes is always included, whether or not the > GRH is present. OK although changing this makes no difference in behavior as no MAD consumer and I wouldn't expect them to rely on this field because as there is no way to indicate whether the GRH is actually present or not other than to set the GRH pointer in the WC to null so the length cannot be used to do this. Another alternative would be that the LRH indicates whether the GRH was actually present. Isn't the sense of GRH presence on receive needed for reversible paths ? How is this indicated ? > However, when local_completions() generates a wc from software, > the byte_len field does not include the grh. > Here's a patch. I will deal with this after the above is understood so the patch is complete for this. Thanks for pointing this out. -- Hal From mst at mellanox.co.il Tue Jan 4 06:15:50 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 4 Jan 2005 16:15:50 +0200 Subject: [openib-general] Nitpicking: IB spec 1.2 In-Reply-To: <1104845857.4661.294.camel@localhost.localdomain> References: <20050104075614.GA26009@mellanox.co.il> <1104845857.4661.294.camel@localhost.localdomain> Message-ID: <20050104141550.GB8115@mellanox.co.il> Hello! Quoting r. Hal Rosenstock (halr at voltaire.com) "Re: [openib-general] Nitpicking: IB spec 1.2": > On Tue, 2005-01-04 at 02:56, Michael S. Tsirkin wrote: > > Hello! > > I was looking at IB spec rev 1.2 and I noted a difference with > > how gen2 behaves. > > > > 11.4.2 COMPLETION QUEUE OPERATIONS > > 11.4.2.1 POLL FOR COMPLETION > > > > The following appeared in IB spec rev 1.1 first, actually: > > > > The number of bytes transferred. > > The number of bytes transferred is returned in Work Completions > > for Receive Work Requests for incoming Sends and > > RDMA Writes with Immediate Data. This does not include the > > length of any immediate data. > > The number of bytes transferred is returned in Work Completions > > for Send Work Requests for RDMA Read and Atomic Operations. > > For the RQ of a UD QP that is not associated with an SRQ or > > for an SRQ that is associated with a UD QP, the number of > > bytes transferred is the payload of the message plus the 40 > > bytes reserved for the GRH. For the RQ of a UD QP that is not > > associated with an SRQ or for an SRQ that is associated with > > a UD QP, the 40 bytes is always included, whether or not the > > GRH is present. > > OK although changing this makes no difference in behavior as no MAD > consumer and I wouldn't expect them to rely on this field because > as there is no way to indicate whether the GRH is actually > present or not other than to set the GRH pointer in the WC to null > so the length cannot be used to do this. Another alternative would be > that the LRH indicates whether the GRH was actually present. > > Isn't the sense of GRH presence on receive needed for reversible paths ? > How is this indicated ? I thought IB_WC_GRH in wc flags is used to indicate the GRH presence. Right? > > However, when local_completions() generates a wc from software, > > the byte_len field does not include the grh. > > Here's a patch. > > I will deal with this after the above is understood so the patch is > complete for this. > > Thanks for pointing this out. > > -- Hal From tziporet at mellanox.co.il Tue Jan 4 07:07:45 2005 From: tziporet at mellanox.co.il (Tziporet Koren) Date: Tue, 4 Jan 2005 17:07:45 +0200 Subject: [openib-general] Can we open a new directory for mstflint under userspace Message-ID: <506C3D7B14CDD411A52C00025558DED6064BED0A@mtlex01.yok.mtl.com> Hi, Is it OK that we move mstflint from trunk/contrib/mellanox to gen2 userspace directory? This is important for us since it supports wider range of cards produced by Mellanox, is based on flint code that we use in production environment, and has features for low-level flash manipulation (e.g. setting PSID). Tziporet -------------- next part -------------- An HTML attachment was scrubbed... URL: From halr at voltaire.com Tue Jan 4 07:09:00 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 04 Jan 2005 10:09:00 -0500 Subject: [openib-general] Can we open a new directory for mstflint under userspace In-Reply-To: <506C3D7B14CDD411A52C00025558DED6064BED0A@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6064BED0A@mtlex01.yok.mtl.com> Message-ID: <1104851340.4661.316.camel@localhost.localdomain> Hi Tziporet, On Tue, 2005-01-04 at 10:07, Tziporet Koren wrote: > Is it OK that we move mstflint from trunk/contrib/mellanox to gen2 > userspace > directory? > > This is important for us since it supports wider range of cards > produced by > Mellanox, is based on flint code that we use in production > environment, > and has features for low-level flash manipulation (e.g. setting PSID). As I (think I) said before, I have no problem with doing this. -- Hal From halr at voltaire.com Tue Jan 4 07:16:19 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 04 Jan 2005 10:16:19 -0500 Subject: [openib-general] Nitpicking: IB spec 1.2 In-Reply-To: <20050104141550.GB8115@mellanox.co.il> References: <20050104075614.GA26009@mellanox.co.il> <1104845857.4661.294.camel@localhost.localdomain> <20050104141550.GB8115@mellanox.co.il> Message-ID: <1104851412.4661.318.camel@localhost.localdomain> On Tue, 2005-01-04 at 09:15, Michael S. Tsirkin wrote: > I thought IB_WC_GRH in wc flags is used to indicate the GRH > presence. Right? Right. I wasn't fully awake... -- Hal From halr at voltaire.com Tue Jan 4 07:33:18 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 04 Jan 2005 10:33:18 -0500 Subject: [openib-general] Nitpicking: IB spec 1.2 In-Reply-To: <20050104075614.GA26009@mellanox.co.il> References: <20050104075614.GA26009@mellanox.co.il> Message-ID: <1104852798.4789.0.camel@localhost.localdomain> On Tue, 2005-01-04 at 02:56, Michael S. Tsirkin wrote: > Index: core/mad.c > =================================================================== > -- core/mad.c (revision 1399) > +++ core/mad.c (working copy) > @@ -2017,7 +2043,7 @@ static void local_completions(void *data) > wc.status = IB_WC_SUCCESS; > wc.opcode = IB_WC_RECV; > wc.vendor_err = 0; > - wc.byte_len = sizeof(struct ib_mad); > + wc.byte_len = sizeof(struct ib_mad) + sizeof(ib_grh); > wc.src_qp = IB_QP0; > wc.wc_flags = 0; > wc.pkey_index = 0; Thanks. Applied manually as patch was rejected for some reason. Also, in the future, please include the signed off line. -- Hal From roland at topspin.com Tue Jan 4 08:02:06 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 04 Jan 2005 08:02:06 -0800 Subject: [openib-general] [PATCH] Add local qp number to ib_wc In-Reply-To: <20050104100724.GA27245@mellanox.co.il> (Michael S. Tsirkin's message of "Tue, 4 Jan 2005 12:07:24 +0200") References: <20050104100724.GA27245@mellanox.co.il> Message-ID: <52mzvp5gjl.fsf@topspin.com> can you resend with a Signed-off-by line and a description appropriate for the kernel changelog? Thanks, Roland From mst at mellanox.co.il Tue Jan 4 08:20:20 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 4 Jan 2005 18:20:20 +0200 Subject: [openib-general] [PATCH] Add local qp number to ib_wc In-Reply-To: <52mzvp5gjl.fsf@topspin.com> References: <20050104100724.GA27245@mellanox.co.il> <52mzvp5gjl.fsf@topspin.com> Message-ID: <20050104162020.GA8280@mellanox.co.il> Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] [PATCH] Add local qp number to ib_wc": > can you resend with a Signed-off-by line and a description appropriate > for the kernel changelog? Sure. Infiniband spec rev 1.2 compliance: add local qp number to work completion structure. Signed-off-by: Michael S. Tsirkin Index: include/ib_verbs.h =================================================================== --- include/ib_verbs.h (revision 1399) +++ include/ib_verbs.h (working copy) @@ -339,6 +339,7 @@ struct ib_wc { u32 vendor_err; u32 byte_len; __be32 imm_data; + u32 qp_num; u32 src_qp; int wc_flags; u16 pkey_index; Index: core/mad.c =================================================================== --- core/mad.c (revision 1399) +++ core/mad.c (working copy) @@ -2024,6 +2024,7 @@ static void local_completions(void *data wc.slid = IB_LID_PERMISSIVE; wc.sl = 0; wc.dlid_path_bits = 0; + wc.qp_num = IB_QP0; local->mad_priv->header.recv_wc.wc = &wc; local->mad_priv->header.recv_wc.mad_len = sizeof(struct ib_mad); Index: hw/mthca/mthca_cq.c =================================================================== --- hw/mthca/mthca_cq.c (revision 1399) +++ hw/mthca/mthca_cq.c (working copy) @@ -440,6 +440,8 @@ static inline int mthca_poll_one(struct spin_lock(&(*cur_qp)->lock); } + entry->qp_num = cur_qp->qpn; + if (is_send) { wq = &(*cur_qp)->sq; wqe_index = ((be32_to_cpu(cqe->wqe) - (*cur_qp)->send_wqe_offset) From tduffy at sun.com Tue Jan 4 09:22:05 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 04 Jan 2005 09:22:05 -0800 Subject: [openib-general] Can we open a new directory for mstflint under userspace In-Reply-To: <506C3D7B14CDD411A52C00025558DED6064BED0A@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6064BED0A@mtlex01.yok.mtl.com> Message-ID: <1104859325.17416.7.camel@duffman> On Tue, 2005-01-04 at 17:07 +0200, Tziporet Koren wrote: > Is it OK that we move mstflint from trunk/contrib/mellanox to gen2 > userspace > directory? What is the license for this utility? I don't see anything in the source or the README. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From shaharf at voltaire.com Tue Jan 4 09:39:10 2005 From: shaharf at voltaire.com (shaharf) Date: Tue, 4 Jan 2005 19:39:10 +0200 Subject: [openib-general] New utilities Message-ID: Hi guys, I started to add new mad utilities: Sminfo : issue a sminfo and dump the reply. Of course you must direct it to the sm lid/path in order to work, but it can query also standby SMs. Ibnetdiscover: do IB net discover and print out the topology file. You will find out that it is very useful tool to list the net and to run a sort of sanity validation. If ibnetdiscover doesn't run smoothly then either you have problems in your subnet, or I have a bug ;-). Both are just initial versions, but they should work. Comments, suggestions, etc. are welcomed. Both the new simple synchronous mad RPC library (libmad). Shahar -------------- next part -------------- An HTML attachment was scrubbed... URL: From eitan at mellanox.co.il Tue Jan 4 09:44:15 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Tue, 4 Jan 2005 19:44:15 +0200 Subject: [openib-general] New utilities Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEB76@mtlex01.yok.mtl.com> Under OpenSM there is a utility named osmtest. osmtest -f c creates a dump file with the information about all discovered nodes ports and path records ... Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -----Original Message----- From: shaharf [mailto:shaharf at voltaire.com] Sent: Tuesday, January 04, 2005 7:39 PM To: openib-general at openib.org Subject: [openib-general] New utilities Hi guys, I started to add new mad utilities: Sminfo : issue a sminfo and dump the reply. Of course you must direct it to the sm lid/path in order to work, but it can query also standby SMs. Ibnetdiscover: do IB net discover and print out the topology file. You will find out that it is very useful tool to list the net and to run a sort of sanity validation. If ibnetdiscover doesn't run smoothly then either you have problems in your subnet, or I have a bug ;-). Both are just initial versions, but they should work. Comments, suggestions, etc. are welcomed. Both the new simple synchronous mad RPC library (libmad). Shahar -------------- next part -------------- An HTML attachment was scrubbed... URL: From robert.j.woodruff at intel.com Tue Jan 4 09:58:59 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Tue, 4 Jan 2005 09:58:59 -0800 Subject: [openib-general] Re: [PATCH][v5][0/24] Latest IB patch queue Message-ID: <1AC79F16F5C5284499BB9591B33D6F00032CA55B@orsmsx408> Karen> I am interested in Infiniband with x86_64 Opterons. Roland>OK, the current code should work well for you -- x86_64 is probably Roland>the most-tested architecture. I have tested on X86_64 EM64T systems. I have a 4 node cluster that I ran some MPI tests on top of IpoIB over the holidays and it ran without any problems. I know that others have also tested on x86_64 Opteron, so it should work fine for that arch. woody From shaharf at voltaire.com Tue Jan 4 10:10:24 2005 From: shaharf at voltaire.com (shaharf) Date: Tue, 4 Jan 2005 20:10:24 +0200 Subject: [openib-general] New utilities Message-ID: Eitan, this is really not the same thing. Osmtest uses and requires a SM list file to work. Ibnetdiscover does it by itself. It doesn't require anything so it can operate even on networks that would bring the SM down (trust me; I saw several of those...). The topology created by the ibnetdiscover is the most recent topology (right to the few last milliseconds). It doesn't depend on nothing. Shahar ________________________________ From: Eitan Zahavi [mailto:eitan at mellanox.co.il] Sent: Tuesday, January 04, 2005 7:44 PM To: shaharf; openib-general at openib.org Subject: RE: [openib-general] New utilities Under OpenSM there is a utility named osmtest. osmtest -f c creates a dump file with the information about all discovered nodes ports and path records ... Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -----Original Message----- From: shaharf [mailto:shaharf at voltaire.com] Sent: Tuesday, January 04, 2005 7:39 PM To: openib-general at openib.org Subject: [openib-general] New utilities Hi guys, I started to add new mad utilities: Sminfo : issue a sminfo and dump the reply. Of course you must direct it to the sm lid/path in order to work, but it can query also standby SMs. Ibnetdiscover: do IB net discover and print out the topology file. You will find out that it is very useful tool to list the net and to run a sort of sanity validation. If ibnetdiscover doesn't run smoothly then either you have problems in your subnet, or I have a bug ;-). Both are just initial versions, but they should work. Comments, suggestions, etc. are welcomed. Both the new simple synchronous mad RPC library (libmad). Shahar -------------- next part -------------- An HTML attachment was scrubbed... URL: From tduffy at sun.com Tue Jan 4 10:24:30 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 04 Jan 2005 10:24:30 -0800 Subject: [PATCH] Re: [openib-general] Re: IPoIB Failure CQ overrun In-Reply-To: <506C3D7B14CDD411A52C00025558DED6064BEC29@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6064BEC29@mtlex01.yok.mtl.com> Message-ID: <1104863070.17416.23.camel@duffman> On Thu, 2004-12-23 at 11:07 +0200, Tziporet Koren wrote: > Hi, > We found an issue with the FW that causing this overrun. > The bug happened when incrementing CQ consumer index in more then 1 > and a CQE is written at the same time on this CQ. > This bug is the same in 3.3.1 and 4.6.1 versions. > > A FW with a fix will be provided next week. Can these firmware revs be checked in somewhere? Or put on the OpenIB website? I don't even have tavor 3.3.1 or arbel 4.6.1. Thanks, -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From halr at voltaire.com Tue Jan 4 10:55:26 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 04 Jan 2005 13:55:26 -0500 Subject: [openib-general] [PATCH] ipoib_faq.txt Message-ID: <1104864926.4645.53.camel@localhost.localdomain> ipoib_faq.txt: Include information about latest Tavor and Arbel firmware versions Signed-off-by: Hal Rosenstock Index: ipoib_faq.txt =================================================================== --- ipoib_faq.txt (revision 1462) +++ ipoib_faq.txt (working copy) @@ -53,6 +53,11 @@ For PCI-X HCAs, version 3.2.0 or later is recommended. For PCIe HCAs, version 4.5.3 or later is recommended. +Note that there is an issue with Tavor 3.3.1 and Arbel (in Tavor +compatibility mode) 4.6.1 where there is an issue with CQ handling. +A patch to workaround this has been posted at +http://openib.org/pipermail/openib-general/2004-December/007247.html + 2. Make sure the IB modules are loaded: /sbin/lsmod | grep ib_ should show ib_mthca (HCA driver) as well as ib_ipoib. There are others From jjengla at sandia.gov Tue Jan 4 11:10:35 2005 From: jjengla at sandia.gov (Josh England) Date: Tue, 04 Jan 2005 11:10:35 -0800 Subject: [openib-general] IPoIB breaks Message-ID: <1104865835.1352.31.camel@localhost> I'm getting great numbers from IPoIB...right up until it dies. The system is x86_64 and PCIe with latest stuff under 2.6.10. Streaming tests with both netperf and NetPIPE die almost instantly (NetPIPE actually lasts for a couple iterations). Ping-pong tests with NetPIPE seem to consistently die when it starts sending message sizes around 2k. Running pings eventually time out with: ping: sendmsg: No buffer space available IPoIB stops working completely until the module is reloaded on both nodes. Any ideas? -JE From halr at voltaire.com Tue Jan 4 11:02:30 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 04 Jan 2005 14:02:30 -0500 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <1104786850.21424.31.camel@duffman> References: <1104781717.21424.27.camel@duffman> <1104786202.4662.2480.camel@localhost.localdomain> <1104786850.21424.31.camel@duffman> Message-ID: <1104865104.4645.57.camel@localhost.localdomain> On Mon, 2005-01-03 at 16:14, Tom Duffy wrote: > On Mon, 2005-01-03 at 16:03 -0500, Hal Rosenstock wrote: > > On Mon, 2005-01-03 at 14:48, Tom Duffy wrote: > > > It would be cool if the log file was saved with the pid in the name as > > > well since then it wouldn't delete the old one when you restarted the > > > sm. > > > > Dealing with the too many log files (and space) issue is probably better > > than deleting the old log file (and making that explicit). So if no one > > has any objections to this, I will commit the change for this. It is > > pretty simple. > > Looks good. Any objection to the approach (append osm.log file and move it to /var/log) proposed by Johannes ? If not, I will check in these changes. Thanks. -- Hal From halr at voltaire.com Tue Jan 4 11:05:50 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 04 Jan 2005 14:05:50 -0500 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <20050103211231.GL18847@sventech.com> References: <1104781717.21424.27.camel@duffman> <1104786202.4662.2480.camel@localhost.localdomain> <20050103211231.GL18847@sventech.com> Message-ID: <1104865516.4645.65.camel@localhost.localdomain> On Mon, 2005-01-03 at 16:12, Johannes Erdfelt wrote: > On Mon, Jan 03, 2005, Hal Rosenstock wrote: > > On Mon, 2005-01-03 at 14:48, Tom Duffy wrote: > > > It would be cool if the log file was saved with the pid in the name as > > > well since then it wouldn't delete the old one when you restarted the > > > sm. > > > > Dealing with the too many log files (and space) issue is probably better > > than deleting the old log file (and making that explicit). So if no one > > has any objections to this, I will commit the change for this. It is > > pretty simple. > > Why not just append to the previous log file? That's what pretty much > every other daemon I've used does and what I would expect. > > Maybe also move the log file to /var/log too? I noticed that some of these daemons periodically copy their messages. One example is /var/log/messages. This becomes messages.1, .2, etc. Is this done on a date/time basis or size basis or something else ? Should this approach be taken for OpenSM ? Thanks. -- Hal From jjengla at sandia.gov Tue Jan 4 11:19:14 2005 From: jjengla at sandia.gov (Josh England) Date: Tue, 04 Jan 2005 11:19:14 -0800 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <1104865516.4645.65.camel@localhost.localdomain> References: <1104781717.21424.27.camel@duffman> <1104786202.4662.2480.camel@localhost.localdomain> <20050103211231.GL18847@sventech.com> <1104865516.4645.65.camel@localhost.localdomain> Message-ID: <1104866354.1352.38.camel@localhost> On Tue, 2005-01-04 at 14:05 -0500, Hal Rosenstock wrote: > I noticed that some of these daemons periodically copy their messages. > One example is /var/log/messages. This becomes messages.1, .2, etc. Is > this done on a date/time basis or size basis or something else ? Should > this approach be taken for OpenSM ? I don't think it is the daemons themselves. The logrotate utility is the one normally doing those things. -JE From johannes at erdfelt.com Tue Jan 4 11:17:01 2005 From: johannes at erdfelt.com (Johannes Erdfelt) Date: Tue, 4 Jan 2005 11:17:01 -0800 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <1104865516.4645.65.camel@localhost.localdomain> References: <1104781717.21424.27.camel@duffman> <1104786202.4662.2480.camel@localhost.localdomain> <20050103211231.GL18847@sventech.com> <1104865516.4645.65.camel@localhost.localdomain> Message-ID: <20050104191701.GS18847@sventech.com> On Tue, Jan 04, 2005, Hal Rosenstock wrote: > On Mon, 2005-01-03 at 16:12, Johannes Erdfelt wrote: > > On Mon, Jan 03, 2005, Hal Rosenstock wrote: > > > On Mon, 2005-01-03 at 14:48, Tom Duffy wrote: > > > > It would be cool if the log file was saved with the pid in the name as > > > > well since then it wouldn't delete the old one when you restarted the > > > > sm. > > > > > > Dealing with the too many log files (and space) issue is probably better > > > than deleting the old log file (and making that explicit). So if no one > > > has any objections to this, I will commit the change for this. It is > > > pretty simple. > > > > Why not just append to the previous log file? That's what pretty much > > every other daemon I've used does and what I would expect. > > > > Maybe also move the log file to /var/log too? > > I noticed that some of these daemons periodically copy their messages. > One example is /var/log/messages. This becomes messages.1, .2, etc. Is > this done on a date/time basis or size basis or something else ? Should > this approach be taken for OpenSM ? That is usually done by the logrotate package. Look at /etc/logrotate.conf and /etc/logrotate.d/ JE From roland at topspin.com Tue Jan 4 11:18:47 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 04 Jan 2005 11:18:47 -0800 Subject: [openib-general] IPoIB breaks In-Reply-To: <1104865835.1352.31.camel@localhost> (Josh England's message of "Tue, 04 Jan 2005 11:10:35 -0800") References: <1104865835.1352.31.camel@localhost> Message-ID: <52ekh157fs.fsf@topspin.com> Josh> I'm getting great numbers from IPoIB...right up until it Josh> dies. The system is x86_64 and PCIe with latest stuff under Josh> 2.6.10. Streaming tests with both netperf and NetPIPE die Josh> almost instantly (NetPIPE actually lasts for a couple Josh> iterations). Ping-pong tests with NetPIPE seem to Josh> consistently die when it starts sending message sizes around Josh> 2k. Josh> Running pings eventually time out with: ping: sendmsg: No Josh> buffer space available Josh> IPoIB stops working completely until the module is reloaded Josh> on both nodes. Any ideas? What FW version are you using? If you are using the latest subversion sources, then FW 4.6.2 is required (because of the CQ bug in FW 4.6.1). If you're already on FW 4.6.2, are there any messages in the kernel log? (By the way, I've run NPtcp on a dual Nocona/PCIe system overnight and transferred about 5 TB without a glitch) - R. From jjengla at sandia.gov Tue Jan 4 11:23:52 2005 From: jjengla at sandia.gov (Josh England) Date: Tue, 04 Jan 2005 11:23:52 -0800 Subject: [openib-general] IPoIB breaks In-Reply-To: <52ekh157fs.fsf@topspin.com> References: <1104865835.1352.31.camel@localhost> <52ekh157fs.fsf@topspin.com> Message-ID: <1104866632.1352.40.camel@localhost> On Tue, 2005-01-04 at 11:18 -0800, Roland Dreier wrote: > Josh> I'm getting great numbers from IPoIB...right up until it > Josh> dies. The system is x86_64 and PCIe with latest stuff under > Josh> 2.6.10. Streaming tests with both netperf and NetPIPE die > Josh> almost instantly (NetPIPE actually lasts for a couple > Josh> iterations). Ping-pong tests with NetPIPE seem to > Josh> consistently die when it starts sending message sizes around > Josh> 2k. > > Josh> Running pings eventually time out with: ping: sendmsg: No > Josh> buffer space available > > Josh> IPoIB stops working completely until the module is reloaded > Josh> on both nodes. Any ideas? > > What FW version are you using? If you are using the latest subversion > sources, then FW 4.6.2 is required (because of the CQ bug in FW > 4.6.1). If you're already on FW 4.6.2, are there any messages in the > kernel log? I'm still on 4.6.1. I'll upgrade and try again. -JE From roland at topspin.com Tue Jan 4 11:30:44 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 04 Jan 2005 11:30:44 -0800 Subject: [openib-general] [PATCH] Add local qp number to ib_wc In-Reply-To: <20050104162020.GA8280@mellanox.co.il> (Michael S. Tsirkin's message of "Tue, 4 Jan 2005 18:20:20 +0200") References: <20050104100724.GA27245@mellanox.co.il> <52mzvp5gjl.fsf@topspin.com> <20050104162020.GA8280@mellanox.co.il> Message-ID: <524qhx56vv.fsf@topspin.com> Thanks, I've committed this. In general I don't think we have to be to follow every last detail of the IB spec verbs interface (since there are no consumers that want the QP number and it doesn't seem useful to have it) but since we plan to add shared receive queues, this feature does make sense. - R. From Tom.Duffy at Sun.COM Tue Jan 4 11:33:11 2005 From: Tom.Duffy at Sun.COM (Tom Duffy) Date: Tue, 04 Jan 2005 11:33:11 -0800 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <1104865104.4645.57.camel@localhost.localdomain> References: <1104781717.21424.27.camel@duffman> <1104786202.4662.2480.camel@localhost.localdomain> <1104786850.21424.31.camel@duffman> <1104865104.4645.57.camel@localhost.localdomain> Message-ID: <1104867191.17416.28.camel@duffman> On Tue, 2005-01-04 at 14:02 -0500, Hal Rosenstock wrote: > Any objection to the approach (append osm.log file and move it to > /var/log) proposed by Johannes ? If not, I will check in these changes. Fine by me. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From paul.baxter at dsl.pipex.com Tue Jan 4 11:47:34 2005 From: paul.baxter at dsl.pipex.com (Paul Baxter) Date: Tue, 4 Jan 2005 19:47:34 -0000 Subject: [openib-general] ip over ib throughtput References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> Message-ID: <00a101c4f296$3cf3bfc0$8000000a@blorp> > Quoting r. Michael S. Tsirkin (mst at mellanox.co.il) "[openib-general] ip > over ib throughtput": >> Hi! >> What kind of performance do people see with ip over ib on gen2? >> I see about 100Mbyte/sec at 99% CPU utilisation on send, >> on an express card, Xeon 2.8GHz, SSE doorbells enabled. > > At 159 Mbyte/sec without SSE doorbells. > The test is netperf-2.2pl5, BTW. Didn't see any response to Michael's numbers other than another mail today from Josh England saying 'great numbers till it dies'. Are these results considered good on a 4x link? I realise there is a significant TCPIP overhead, but is this significantly better or worse than the vendor-specific equivalents using different drivers? What (short term?) plans are there for implementing a higher performance link that can show better transfer rates. I'm interested in any bottlenecks this might reveal in the current kernel submission and understanding in broad handfuls what sort of optimisation/stabilisation period will be necessary before I can look to using openib in high bandwidth message transfers. Is more functionality or performance optimisation the goal for the next 6 months. I've largely written off SDP going higher than ~300MB/s even with high CPU utilisation. (Assumptions: License concerns make it unlikely to be one of the first things openib tackle. Not trivial to implement it with zero copy or asynchronous I/O on Linux) Am I right in thinking that the ib_verbs layer direct or ideally with MPI/uDAPL will be my best bet in the next 6 months for showing a portable vendor-neutral implementation which might achieve 600MB/s transfers or slightly lower but with <25% cpu utilisation on PCIe. Paul From halr at voltaire.com Tue Jan 4 11:50:09 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 04 Jan 2005 14:50:09 -0500 Subject: [openib-general] [PATCH] mthca_cq.c: Fix compile problem with previous patch Message-ID: <1104868209.4645.74.camel@localhost.localdomain> mthca_cq.c: Fix compile problem with previous patch Signed-off-by: Hal Rosenstock Index: linux-kernel/infiniband/hw/mthca/mthca_cq.c =================================================================== --- linux-kernel/infiniband/hw/mthca/mthca_cq.c (revision 1467) +++ linux-kernel/infiniband/hw/mthca/mthca_cq.c (working copy) @@ -444,7 +444,7 @@ spin_lock(&(*cur_qp)->lock); } - entry->qp_num = cur_qp->qpn; + entry->qp_num = (*cur_qp)->qpn; if (is_send) { wq = &(*cur_qp)->sq; From mst at mellanox.co.il Tue Jan 4 12:28:02 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 4 Jan 2005 22:28:02 +0200 Subject: [openib-general] [PATCH] mthca_cq.c: Fix compile problem with previous patch In-Reply-To: <1104868209.4645.74.camel@localhost.localdomain> References: <1104868209.4645.74.camel@localhost.localdomain> Message-ID: <20050104202802.GE8522@mellanox.co.il> Hello! Quoting r. Hal Rosenstock (halr at voltaire.com) "[openib-general] [PATCH] mthca_cq.c: Fix compile problem with previous patch": > mthca_cq.c: Fix compile problem with previous patch > > Signed-off-by: Hal Rosenstock > > Index: linux-kernel/infiniband/hw/mthca/mthca_cq.c > =================================================================== > --- linux-kernel/infiniband/hw/mthca/mthca_cq.c (revision 1467) > +++ linux-kernel/infiniband/hw/mthca/mthca_cq.c (working copy) > @@ -444,7 +444,7 @@ > spin_lock(&(*cur_qp)->lock); > } > > - entry->qp_num = cur_qp->qpn; > + entry->qp_num = (*cur_qp)->qpn; > > if (is_send) { > wq = &(*cur_qp)->sq; My bad, I fixed it but posted the wrong patch. This needs to be applied, obviously. mst From tduffy at sun.com Tue Jan 4 13:00:27 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 04 Jan 2005 13:00:27 -0800 Subject: [openib-general] [PATCH] Fix mstflint compilation with gcc 3.4.2 In-Reply-To: <506C3D7B14CDD411A52C00025558DED6064BED0A@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6064BED0A@mtlex01.yok.mtl.com> Message-ID: <1104872428.6291.11.camel@duffman> I have just tried to compile mstflint and got the following: [tduffy at duffman mstflint]$ make g++ -I. -fno-exceptions -O2 flint.cpp -o mstflint flint.cpp:537: error: expected `0' before "" flint.cpp:537: error: invalid initializer for virtual method `virtual bool Flash::CmdSet::write(u_int32_t, void*, int, bool, bool)' flint.cpp:537: error: expected `;' before "" flint.cpp:540: error: expected `0' before "" flint.cpp:540: error: invalid initializer for virtual method `virtual bool Flash::CmdSet::erase_sector(u_int32_t)' flint.cpp:540: error: expected `;' before "" flint.cpp:542: error: expected `0' before "" flint.cpp:542: error: invalid initializer for virtual method `virtual bool Flash::CmdSet::reset()' flint.cpp:542: error: expected `;' before "" flint.cpp: In member function `virtual bool Flash::open(const char*)': flint.cpp:943: error: 'class Flash::CmdSet' has no member named 'reset' flint.cpp: In member function `bool Flash::erase_sector(u_int32_t)': flint.cpp:1513: error: 'class Flash::CmdSet' has no member named 'erase_sector' flint.cpp: In member function `bool Flash::write(u_int32_t, void*, int, bool, bool)': flint.cpp:1706: error: 'class Flash::CmdSet' has no member named 'write' make: *** [mstflint] Error 1 [tduffy at duffman mstflint]$ g++ -v Reading specs from /usr/lib/gcc/x86_64-redhat-linux/3.4.2/specs Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-languages=c,c++,objc,java,f77 --enable-java-awt=gtk --host=x86_64-redhat-linux Thread model: posix gcc version 3.4.2 20041017 (Red Hat 3.4.2-6.fc3) According to Stroustrup's _The_C++_Programming_Language_ Second Edition, you need to specify pure virtual functions by declaring them "0" rather than NULL. This patch fixes that: Index: svn/trunk/contrib/mellanox/mstflint/flint.cpp =================================================================== --- svn/trunk/contrib/mellanox/mstflint/flint.cpp (revision 1468) +++ svn/trunk/contrib/mellanox/mstflint/flint.cpp (working copy) @@ -534,12 +534,12 @@ void* data, int cnt, bool noerase = false, - bool noverify = false) = NULL; + bool noverify = false) = 0; //virtual bool unlock_bypass (bool unlock) = NULL; - virtual bool erase_sector (u_int32_t addr) = NULL; + virtual bool erase_sector (u_int32_t addr) = 0; - virtual bool reset () = NULL; + virtual bool reset () = 0; protected: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From jjengla at sandia.gov Tue Jan 4 13:06:44 2005 From: jjengla at sandia.gov (Josh England) Date: Tue, 04 Jan 2005 13:06:44 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <00a101c4f296$3cf3bfc0$8000000a@blorp> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> Message-ID: <1104872804.1352.50.camel@localhost> I'm seeing about 364 MB/s between 2 PCIe Xeon 3.2GHz boxes using netperf-2.3pl1. -JE On Tue, 2005-01-04 at 19:47 +0000, Paul Baxter wrote: > > Quoting r. Michael S. Tsirkin (mst at mellanox.co.il) "[openib-general] ip > > over ib throughtput": > >> Hi! > >> What kind of performance do people see with ip over ib on gen2? > >> I see about 100Mbyte/sec at 99% CPU utilisation on send, > >> on an express card, Xeon 2.8GHz, SSE doorbells enabled. > > > > At 159 Mbyte/sec without SSE doorbells. > > The test is netperf-2.2pl5, BTW. > > Didn't see any response to Michael's numbers other than another mail today > from Josh England saying 'great numbers till it dies'. > > Are these results considered good on a 4x link? I realise there is a > significant TCPIP overhead, but is this significantly better or worse than > the vendor-specific equivalents using different drivers? > > What (short term?) plans are there for implementing a higher performance > link that can show better transfer rates. > > I'm interested in any bottlenecks this might reveal in the current kernel > submission and understanding in broad handfuls what sort of > optimisation/stabilisation period will be necessary before I can look to > using openib in high bandwidth message transfers. Is more functionality or > performance optimisation the goal for the next 6 months. > > I've largely written off SDP going higher than ~300MB/s even with high CPU > utilisation. (Assumptions: License concerns make it unlikely to be one of > the first things openib tackle. Not trivial to implement it with zero copy > or asynchronous I/O on Linux) > > Am I right in thinking that the ib_verbs layer direct or ideally with > MPI/uDAPL will be my best bet in the next 6 months for showing a portable > vendor-neutral implementation which might achieve 600MB/s transfers or > slightly lower but with <25% cpu utilisation on PCIe. > > Paul > > > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general > From tduffy at sun.com Tue Jan 4 13:09:23 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 04 Jan 2005 13:09:23 -0800 Subject: [openib-general] Creating .bin files from .mlx Message-ID: <1104872963.6291.15.camel@duffman> I just got a hold of the latest Tavor and Arbel firmware tarballs through our internal Mellanox contact, but they come as .mlx and .brd files. Is there a tool under Linux that can munge them into .bin files for mstflint or tvflash? Thanks, -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From roland at topspin.com Tue Jan 4 13:10:15 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 04 Jan 2005 13:10:15 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <1104872804.1352.50.camel@localhost> (Josh England's message of "Tue, 04 Jan 2005 13:06:44 -0800") References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> Message-ID: <52mzvo52a0.fsf@topspin.com> Josh> I'm seeing about 364 MB/s between 2 PCIe Xeon 3.2GHz boxes Josh> using netperf-2.3pl1. Are you using MSI-X? To use it, set CONFIG_PCI_MSI=y when you build your kernel and either "modprobe ib_mthca msi_x=1" or add "options ib_mthca msi_x=1" to a file in /etc/modprobe.d. If MSI-X is enabled, your /proc/interrupts will have mthca lines like 217: 0 0 26860275 0 PCI-MSI-X ib_mthca (comp) 225: 0 0 10 0 PCI-MSI-X ib_mthca (async) 233: 0 0 11572 0 PCI-MSI-X ib_mthca (cmd) instead of 193: 3954254 2655769514 1116770165 1544790344 IO-APIC-level ib_mthca If you're not using MSI-X you may be able to crack 400 MB/sec by turning it on. - Roland From roland at topspin.com Tue Jan 4 12:33:28 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 04 Jan 2005 12:33:28 -0800 Subject: [openib-general] [PATCH] mthca_cq.c: Fix compile problem with previous patch In-Reply-To: <1104868209.4645.74.camel@localhost.localdomain> (Hal Rosenstock's message of "04 Jan 2005 14:50:09 -0500") References: <1104868209.4645.74.camel@localhost.localdomain> Message-ID: <52r7l13pev.fsf@topspin.com> Hal> mthca_cq.c: Fix compile problem with previous patch Thanks, committed. (Sorry, I was really dumb -- I tested the build and saw the failure in one window, but then got distracted and forgot about it, and committed the patch in another window) - R. From roland at topspin.com Tue Jan 4 12:31:24 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 04 Jan 2005 12:31:24 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <00a101c4f296$3cf3bfc0$8000000a@blorp> (Paul Baxter's message of "Tue, 4 Jan 2005 19:47:34 -0000") References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> Message-ID: <52vfad3pib.fsf@topspin.com> Paul> Didn't see any response to Michael's numbers other than Paul> another mail today from Josh England saying 'great numbers Paul> till it dies'. I've seen 225 MB/sec on my dual 2.2 GHz Xeon/PCI-X systems with NPtcp, and on Josh's systems I've seen 425 MB/sec. I'm pretty sure Josh's problems will be solved by upgrading from FW 4.6.1 to 4.6.2. Paul> Are these results considered good on a 4x link? I realise Paul> there is a significant TCPIP overhead, but is this Paul> significantly better or worse than the vendor-specific Paul> equivalents using different drivers? I believe the OpenIB IPoIB substantially outperforms any vendor stacks (certainly I have never seen better numbers). However IPoIB is a poor use of IB, since it uses UD, which means every 2K packet requires its own work request and completion to be generated and processed. Paul> What (short term?) plans are there for implementing a higher Paul> performance link that can show better transfer rates. Nothing in the extremely short term but in the first half of 2005 I would expect to see some preliminary implementations of the IPoIB connected mode drafts, beta-level native MPI bindings and production quality SDP. Paul> I've largely written off SDP going higher than ~300MB/s even Paul> with high CPU utilisation. (Assumptions: License concerns Paul> make it unlikely to be one of the first things openib Paul> tackle. Not trivial to implement it with zero copy or Paul> asynchronous I/O on Linux) Libor can speak more authoritatively about his plans but I think the main thing holding back SDP is completing the gen2 CM. I believe Libor already has zero copy and AIO working on kernel 2.6 on the gen1 stack, although there is some mthca work required ("FMRs") for this to work on the gen2 stack. Paul> Am I right in thinking that the ib_verbs layer direct or Paul> ideally with MPI/uDAPL will be my best bet in the next 6 Paul> months for showing a portable vendor-neutral implementation Paul> which might achieve 600MB/s transfers or slightly lower but Paul> with <25% cpu utilisation on PCIe. I think in the next six months both MPI and SDP with AIO should be running bus limited (ie close to 1 GB/sec) on PCIe with essentially zero CPU usage. - Roland From mst at mellanox.co.il Tue Jan 4 13:15:13 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 4 Jan 2005 23:15:13 +0200 Subject: [openib-general] ip over ib throughtput In-Reply-To: <1104872804.1352.50.camel@localhost> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> Message-ID: <20050104211513.GG8522@mellanox.co.il> > On Tue, 2005-01-04 at 19:47 +0000, Paul Baxter wrote: > > > Quoting r. Michael S. Tsirkin (mst at mellanox.co.il) "[openib-general] ip > > > over ib throughtput": > > >> Hi! > > >> What kind of performance do people see with ip over ib on gen2? > > >> I see about 100Mbyte/sec at 99% CPU utilisation on send, > > >> on an express card, Xeon 2.8GHz, SSE doorbells enabled. > > > > > > At 159 Mbyte/sec without SSE doorbells. > > > The test is netperf-2.2pl5, BTW. > > > > Didn't see any response to Michael's numbers other than another mail today > > from Josh England saying 'great numbers till it dies'. > > > > Are these results considered good on a 4x link? I realise there is a > > significant TCPIP overhead, but is this significantly better or worse than > > the vendor-specific equivalents using different drivers? > > > > What (short term?) plans are there for implementing a higher performance > > link that can show better transfer rates. > > > > I'm interested in any bottlenecks this might reveal in the current kernel > > submission and understanding in broad handfuls what sort of > > optimisation/stabilisation period will be necessary before I can look to > > using openib in high bandwidth message transfers. Is more functionality or > > performance optimisation the goal for the next 6 months. > > > > I've largely written off SDP going higher than ~300MB/s even with high CPU > > utilisation. (Assumptions: License concerns make it unlikely to be one of > > the first things openib tackle. Not trivial to implement it with zero copy > > or asynchronous I/O on Linux) I think SDP can go higher and I think I know how to do zero copy. But license/patent concerns present a problem. > > Am I right in thinking that the ib_verbs layer direct or ideally with > > MPI/uDAPL will be my best bet in the next 6 months for showing a portable > > vendor-neutral implementation which might achieve 600MB/s transfers or > > slightly lower but with <25% cpu utilisation on PCIe. > > > > Paul > > > > > Quoting r. Josh England (jjengla at sandia.gov) "Re: [openib-general] ip over ib throughtput": > I'm seeing about 364 MB/s between 2 PCIe Xeon 3.2GHz boxes using > netperf-2.3pl1. > > -JE With IP over IB on gen2? Are these x86_64? mst -- Q: What is more annoying than top-posting? A: Mailing list servers that add a signature of their own :) From halr at voltaire.com Tue Jan 4 13:07:59 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 04 Jan 2005 16:07:59 -0500 Subject: [openib-general] Creating .bin files from .mlx In-Reply-To: <1104872963.6291.15.camel@duffman> References: <1104872963.6291.15.camel@duffman> Message-ID: <1104872879.4645.121.camel@localhost.localdomain> On Tue, 2005-01-04 at 16:09, Tom Duffy wrote: > I just got a hold of the latest Tavor and Arbel firmware tarballs > through our internal Mellanox contact, but they come as .mlx and .brd > files. Is there a tool under Linux that can munge them into .bin files > for mstflint or tvflash? InfiniBurn is one way to do this. I think there is another Mellanox program which does this as well. -- Hal From rminnich at lanl.gov Tue Jan 4 13:14:55 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Tue, 4 Jan 2005 14:14:55 -0700 (MST) Subject: [openib-general] ip over ib throughtput In-Reply-To: <52vfad3pib.fsf@topspin.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <52vfad3pib.fsf@topspin.com> Message-ID: would you all recommend just cutting over to openib at this point? I've got a 256-node cluster with hierarchical switches that has never really worked well with the vendor stacks, and the opensm has never run more than one day without segv; is openib solid enough that I can run with it? Is the opensm in openib pretty solid? Are there tools for tracing the fabric and looking for problems? thanks ron From mst at mellanox.co.il Tue Jan 4 13:18:17 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 4 Jan 2005 23:18:17 +0200 Subject: [openib-general] [PATCH] Fix mstflint compilation with gcc 3.4.2 In-Reply-To: <1104872428.6291.11.camel@duffman> References: <1104872428.6291.11.camel@duffman> Message-ID: <20050104211817.GH8522@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "[openib-general] [PATCH] Fix mstflint compilation with gcc 3.4.2": > Subject: > Date: Tue, 4 Jan 2005 23:00:08 +0200 > > > I have just tried to compile mstflint and got the following: > > [tduffy at duffman mstflint]$ make > g++ -I. -fno-exceptions -O2 flint.cpp -o mstflint > flint.cpp:537: error: expected `0' before "" > flint.cpp:537: error: invalid initializer for virtual method `virtual bool Flash::CmdSet::write(u_int32_t, void*, int, bool, bool)' > flint.cpp:537: error: expected `;' before "" > flint.cpp:540: error: expected `0' before "" > flint.cpp:540: error: invalid initializer for virtual method `virtual bool Flash::CmdSet::erase_sector(u_int32_t)' > flint.cpp:540: error: expected `;' before "" > flint.cpp:542: error: expected `0' before "" > flint.cpp:542: error: invalid initializer for virtual method `virtual bool Flash::CmdSet::reset()' > flint.cpp:542: error: expected `;' before "" > flint.cpp: In member function `virtual bool Flash::open(const char*)': > flint.cpp:943: error: 'class Flash::CmdSet' has no member named 'reset' > flint.cpp: In member function `bool Flash::erase_sector(u_int32_t)': > flint.cpp:1513: error: 'class Flash::CmdSet' has no member named 'erase_sector' > flint.cpp: In member function `bool Flash::write(u_int32_t, void*, int, bool, bool)': > flint.cpp:1706: error: 'class Flash::CmdSet' has no member named 'write' > make: *** [mstflint] Error 1 > [tduffy at duffman mstflint]$ g++ -v > Reading specs from /usr/lib/gcc/x86_64-redhat-linux/3.4.2/specs > Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-languages=c,c++,objc,java,f77 --enable-java-awt=gtk --host=x86_64-redhat-linux > Thread model: posix > gcc version 3.4.2 20041017 (Red Hat 3.4.2-6.fc3) > > According to Stroustrup's _The_C++_Programming_Language_ Second Edition, > you need to specify pure virtual functions by declaring them "0" rather > than NULL. > > This patch fixes that: > > Index: svn/trunk/contrib/mellanox/mstflint/flint.cpp > =================================================================== > --- svn/trunk/contrib/mellanox/mstflint/flint.cpp (revision 1468) > +++ svn/trunk/contrib/mellanox/mstflint/flint.cpp (working copy) > @@ -534,12 +534,12 @@ > void* data, > int cnt, > bool noerase = false, > - bool noverify = false) = NULL; > + bool noverify = false) = 0; > > //virtual bool unlock_bypass (bool unlock) = NULL; > - virtual bool erase_sector (u_int32_t addr) = NULL; > + virtual bool erase_sector (u_int32_t addr) = 0; > > - virtual bool reset () = NULL; > + virtual bool reset () = 0; > > protected: > > Thanks, I'll apply tomorrow. mst From jjengla at sandia.gov Tue Jan 4 13:21:53 2005 From: jjengla at sandia.gov (Josh England) Date: Tue, 04 Jan 2005 13:21:53 -0800 Subject: [openib-general] Creating .bin files from .mlx In-Reply-To: <1104872963.6291.15.camel@duffman> References: <1104872963.6291.15.camel@duffman> Message-ID: <1104873713.1352.64.camel@localhost> You can use infiniburn to read in the .mlx and then write them back out in raw format, then burn with your tool of choice. -JE On Tue, 2005-01-04 at 13:09 -0800, Tom Duffy wrote: > I just got a hold of the latest Tavor and Arbel firmware tarballs > through our internal Mellanox contact, but they come as .mlx and .brd > files. Is there a tool under Linux that can munge them into .bin files > for mstflint or tvflash? > > Thanks, > > -tduffy > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general From jjengla at sandia.gov Tue Jan 4 13:29:26 2005 From: jjengla at sandia.gov (Josh England) Date: Tue, 04 Jan 2005 13:29:26 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52mzvo52a0.fsf@topspin.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> Message-ID: <1104874166.1352.67.camel@localhost> On Tue, 2005-01-04 at 13:10 -0800, Roland Dreier wrote: > If you're not using MSI-X you may be able to crack 400 MB/sec by turning it on. Excellent! With MSI-X it jumps up to about 420 MB/s. -JE From jjengla at sandia.gov Tue Jan 4 13:32:46 2005 From: jjengla at sandia.gov (Josh England) Date: Tue, 04 Jan 2005 13:32:46 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050104211513.GG8522@mellanox.co.il> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <20050104211513.GG8522@mellanox.co.il> Message-ID: <1104874366.1352.70.camel@localhost> On Tue, 2005-01-04 at 23:15 +0200, Michael S. Tsirkin wrote: > Quoting r. Josh England (jjengla at sandia.gov) "Re: [openib-general] ip over ib throughtput": > > I'm seeing about 364 MB/s between 2 PCIe Xeon 3.2GHz boxes using > > netperf-2.3pl1. > > > > -JE > > With IP over IB on gen2? Are these x86_64? Yeah...gen2, 2.6.10, x86_64, PCIe .... and actually now its up to 420 MB/s with MSI-X enabled. -JE From libor at topspin.com Tue Jan 4 13:36:06 2005 From: libor at topspin.com (Libor Michalek) Date: Tue, 4 Jan 2005 13:36:06 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <00a101c4f296$3cf3bfc0$8000000a@blorp>; from paul.baxter@dsl.pipex.com on Tue, Jan 04, 2005 at 07:47:34PM -0000 References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> Message-ID: <20050104133606.A9278@topspin.com> On Tue, Jan 04, 2005 at 07:47:34PM -0000, Paul Baxter wrote: > > I've largely written off SDP going higher than ~300MB/s even with high CPU > utilisation. (Assumptions: License concerns make it unlikely to be one of > the first things openib tackle. Not trivial to implement it with zero copy > or asynchronous I/O on Linux) SDP synchronous performance is primarily dependent on the system user/kernel space copy performance, so throughput varies widely. I've measured performance in plain synchronous mode over 600 MB/s. Asynch and zero-copy are not trivial, but I've had it working on the 2.4 redhat kernels for over a year, and I'm currently finishing up support for 2.6 kernels. As Roland mentioned the primary gating factor for submitting it to openib is a working Connection Manager which Sean is currently working on. -Libor From iod00d at hp.com Tue Jan 4 14:40:21 2005 From: iod00d at hp.com (Grant Grundler) Date: Tue, 4 Jan 2005 14:40:21 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <00a101c4f296$3cf3bfc0$8000000a@blorp> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> Message-ID: <20050104224021.GA12343@esmail.cup.hp.com> On Tue, Jan 04, 2005 at 07:47:34PM -0000, Paul Baxter wrote: > Didn't see any response to Michael's numbers other than another mail today > from Josh England saying 'great numbers till it dies'. I had posted some numbers in December: http://openib.org/pipermail/openib-general/2004-December/006948.html I am working on updating all the systems to do another run. grant From Tom.Duffy at Sun.COM Tue Jan 4 15:19:35 2005 From: Tom.Duffy at Sun.COM (Tom Duffy) Date: Tue, 04 Jan 2005 15:19:35 -0800 Subject: [openib-general] Creating .bin files from .mlx In-Reply-To: <1104873713.1352.64.camel@localhost> References: <1104872963.6291.15.camel@duffman> <1104873713.1352.64.camel@localhost> Message-ID: <1104880775.6291.39.camel@duffman> On Tue, 2005-01-04 at 13:21 -0800, Josh England wrote: > You can use infiniburn to read in the .mlx and then write them back out > in raw format, then burn with your tool of choice. Alright, I found infiniburn under: https://openib.org/svn/trunk/contrib/infinicon/latest/ALL_HOST/tavor_hca/MST/X86_64/infiniburn But, the 64-bit version doesn't work for me: [tduffy at duffman svn]$ ./trunk/contrib/BoB/ALL_HOST/tavor_hca/MST/X86_64/infiniburn Segmentation fault (core dumped) [tduffy at duffman svn]$ file ./trunk/contrib/BoB/ALL_HOST/tavor_hca/MST/X86_64/infiniburn ./trunk/contrib/BoB/ALL_HOST/tavor_hca/MST/X86_64/infiniburn: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.4.0, statically linked, stripped It is stripped, so I cannot debug it any further. However, it seems the ia32 version works on x86_64. I was able to produce a raw file... However, I am trying to query an Arbel with mstflint, I get: [root at flopteron2 ~]# lspci 06:00.0 InfiniBand: Mellanox Technology MT25208 InfiniHost III Ex (Tavor compatibility mode) (rev a0) [root at flopteron2 ~]# ./mstflint -d 06:00.0 query proc: unexpected size values *** ERROR *** No such file or directory Hrm. I guess I'll try tvflash... [root at flopteron2 ~]# ./tvflash -i HCA #0: Found MT25208 (MT23108 mode), Lion Cub, revision A0 Primary image is valid, unknown source Secondary image is valid, unknown source Error. String Tag not present (found tag 4c instead) Vital Product Data What is that error? Oh well, here goes nothing: [root at flopteron2 ~]# ./tvflash -d 4-6-2.bin New Node GUID = 0002c9010a99e030 New Port1 GUID = 0002c9010a99e031 New Port2 GUID = 0002c9010a99e032 Programming HCA Microcode... Flash Image Size = 343952 Failsafe [==================================================================] Erasing [==================================================================] Writing [==================================================================] Verifying [==================================================================] Flash verify passed! [root at flopteron2 ~]# cat /sys/class/infiniband/mthca0/fw_ver 4.6.2 ok, looking good. [root at flopteron2 bin]# ./ibstatus Infiniband device 'mthca0' port 1 status: default gid: fe80:0000:0000:0000:0002:c901:0a99:e031 base lid: 0x1 sm lid: 0x1 state: 4: ACTIVE rate: 10 Gb/sec (4X) Cool. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From tduffy at sun.com Tue Jan 4 15:40:41 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 04 Jan 2005 15:40:41 -0800 Subject: [openib-general] Nitpick: permissions on files checked into SVN Message-ID: <1104882041.6291.49.camel@duffman> It seems that the permissions on a bunch of the userland source files, like opensm, are checked into svn 755. It doesn't muck with anything like builds, but they do show up as executables which makes me cringe when I do an ls -F. Please, can you chmod them 644? Thanks, -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From iod00d at hp.com Tue Jan 4 16:03:22 2005 From: iod00d at hp.com (Grant Grundler) Date: Tue, 4 Jan 2005 16:03:22 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52mzvo52a0.fsf@topspin.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> Message-ID: <20050105000322.GB12343@esmail.cup.hp.com> On Tue, Jan 04, 2005 at 01:10:15PM -0800, Roland Dreier wrote: > Are you using MSI-X? To use it, set CONFIG_PCI_MSI=y when you build > your kernel and either "modprobe ib_mthca msi_x=1" or add "options > ib_mthca msi_x=1" to a file in /etc/modprobe.d. FYI ionize:~# modprobe ib_mthca msi_x=1 ib_mthca: Mellanox InfiniBand HCA driver v0.06-pre (November 8, 2004) ib_mthca: Initializing Mellanox Technology MT23108 InfiniHost (0000:81:00.0) GSI 60 (level, low) -> CPU 1 (0x0100) vector 60 ACPI: PCI interrupt 0000:81:00.0[A] -> GSI 60 (level, low) -> IRQ 60 MSI INIT SUCCESS ib_mthca 0000:81:00.0: Failed to initialize queue pair table, aborting. ib_mthca 0000:81:00.0: HW2SW_EQ failed (-11) ib_mthca 0000:81:00.0: HW2SW_MPT failed (-11) ib_mthca 0000:81:00.0: HW2SW_EQ failed (-11) ib_mthca 0000:81:00.0: HW2SW_MPT failed (-11) ib_mthca 0000:81:00.0: HW2SW_EQ failed (-11) ib_mthca 0000:81:00.0: HW2SW_MPT failed (-11) ib_mthca 0000:81:00.0: HW2SW_MPT failed (-11) [ MCA Starts here ] *********************************************************** * ROM Version : 02.21 * ROM Date : 08/20/2003 * BMC Version : 01.50 *********************************************************** ... Would it be a good guess that MSI-X support in the ia64 kernel is broken? *sigh* This is with 2.6.10 kernel on rx2600. I'll have to look into this. grant From roland at topspin.com Tue Jan 4 16:12:33 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 04 Jan 2005 16:12:33 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050105000322.GB12343@esmail.cup.hp.com> (Grant Grundler's message of "Tue, 4 Jan 2005 16:03:22 -0800") References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> Message-ID: <528y784tu6.fsf@topspin.com> Grant> Would it be a good guess that MSI-X support in the ia64 Grant> kernel is broken? *sigh* Yup, this type of error message is typical when the driver doesn't get the interrupts it expects. I suspect that the kernel MSI/MSI-X support hardcodes some assumptions about addresses and message contents that are only valid for Intel IA64 chipsets (see drivers/pci/msi.h, specifically MSI_ADDRESS_HEADER etc.). Does HP have any publicly available documentation about MSI on ZX1? It would be great to finally have a reason to abstract the system-dependent MSI stuff out of the current code. - R. From roland at topspin.com Tue Jan 4 16:16:47 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 04 Jan 2005 16:16:47 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050105000322.GB12343@esmail.cup.hp.com> (Grant Grundler's message of "Tue, 4 Jan 2005 16:03:22 -0800") References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> Message-ID: <524qhw4tn4.fsf@topspin.com> Grant> [ MCA Starts here ] By the way, I would guess the machine check might be caused by the HCA sending MSI messages into space (ie a bogus Intel-specific address). - R. From iod00d at hp.com Tue Jan 4 16:30:01 2005 From: iod00d at hp.com (Grant Grundler) Date: Tue, 4 Jan 2005 16:30:01 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <528y784tu6.fsf@topspin.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> Message-ID: <20050105003001.GD12343@esmail.cup.hp.com> On Tue, Jan 04, 2005 at 04:12:33PM -0800, Roland Dreier wrote: > Yup, this type of error message is typical when the driver doesn't get > the interrupts it expects. I suspect that the kernel MSI/MSI-X > support hardcodes some assumptions about addresses and message > contents that are only valid for Intel IA64 chipsets (see > drivers/pci/msi.h, specifically MSI_ADDRESS_HEADER etc.). Ok. I'll look at that. > Does HP have any publicly available documentation about MSI on ZX1? Some ZX1 docs have recently been published but I don't know if any of that specifically covers MSI: http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=lpv39123 (also on http://www.parisc-linux.org/documentation/index.html since the same chipset is used for PA-8800 machines) > It would be great to finally have a reason to abstract the > system-dependent MSI stuff out of the current code. Which "current code" are you talking about? mthca? thanks, grant > > - R. From roland at topspin.com Tue Jan 4 16:38:45 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 04 Jan 2005 16:38:45 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050105003001.GD12343@esmail.cup.hp.com> (Grant Grundler's message of "Tue, 4 Jan 2005 16:30:01 -0800") References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> Message-ID: <52zmzo3e22.fsf@topspin.com> Grant> Some ZX1 docs have recently been published but I don't know Grant> if any of that specifically covers MSI: Thanks, I'll take a look. Grant> Which "current code" are you talking about? mthca? No, mthca is blissfully unaware of the details of assigning MSI vectors. I'm talking about drivers/pci/msi.[ch], which currently have a very simple msi_address_init() function that assumes Intel-style addresses, and similarly encode Intel-style message contents. - R. From halr at voltaire.com Tue Jan 4 16:37:35 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 04 Jan 2005 19:37:35 -0500 Subject: [openib-general] ip over ib throughtput In-Reply-To: References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <52vfad3pib.fsf@topspin.com> Message-ID: <1104885455.4645.553.camel@localhost.localdomain> On Tue, 2005-01-04 at 16:14, Ronald G. Minnich wrote: > would you all recommend just cutting over to openib at this point? Depends on what you are looking to do with your cluster. Is it production ? What ULPs are you looking to use ? > I've got a 256-node cluster with hierarchical switches that has never really > worked well with the vendor stacks, If you can live with just IPoIB then OpenIB might be good enough right now. > and the opensm has never run more than one day without segv; > is openib solid enough that I can run with it? Is > the opensm in openib pretty solid? OpenIB opensm is based on Mellanox Gold 1.6.1. This port is pretty new and has only been used in small clusters to date. > Are there tools for tracing the fabric and looking for problems? There are a number of diagnostic tools currently available: ibstat/ibstatus, ibnetdiscover (which walks the fabric), smpdump, sminfo, and mad_test currently. These are all pretty new. There was a writeup on these posted some time ago. If IPoIB is sufficient, then a 2 phase approach to migration might be possible: 1. Use OpenIB on end nodes but use some vendor's SM 2. Bring up a single or a couple of OpenIB end node(s) and use OpenIB OpenSM shutting off the other SMs If that works, then you can convert over. -- Hal From roland at topspin.com Tue Jan 4 16:54:00 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 04 Jan 2005 16:54:00 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52zmzo3e22.fsf@topspin.com> (Roland Dreier's message of "Tue, 04 Jan 2005 16:38:45 -0800") References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> Message-ID: <52sm5g3dcn.fsf@topspin.com> Grant> Some ZX1 docs have recently been published but I don't know Grant> if any of that specifically covers MSI: According to http://ftp.parisc-linux.org/docs/chips/zx1-mio.pdf, section 3.4.4.1: A message singled interrupt (MSI) transaction occurs when a I/O device does a Memory Write transaction to the 1MB address range starting at 0xFEE0_0000 (zx1 ioa makes MSI space programmable). The rope guest claims the transaction and forwards them to the zx1 mio as interrupt address and interrupt data. The transaction makes its way to the Itanium-2 bus just like a P2P write. The zx1 mio eventually does an interrupt transaction on the Itanium-2 bus with the same address and data, but using the Itanium-2 bus encoding for an interrupt transaction. The kernel does use an address in the 0xfee region, so that's OK. I assume the contents are OK as well, since the doc seems to be saying that ZX1 mio does no translation. So I'm not sure what might be going wrong. I don't think this is an mthca issue, since the MSI-X API is pretty hard to get wrong. Do you have any other devices that can generate MSIs? tg3 devices should be MSI capable, I'm not sure if anyone has hacked the driver to turn it on, but if tg3 doesn't work either then that definitely points to a core platform PCI driver issue. - R. From iod00d at hp.com Tue Jan 4 17:00:18 2005 From: iod00d at hp.com (Grant Grundler) Date: Tue, 4 Jan 2005 17:00:18 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52zmzo3e22.fsf@topspin.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> Message-ID: <20050105010018.GE12343@esmail.cup.hp.com> On Tue, Jan 04, 2005 at 04:38:45PM -0800, Roland Dreier wrote: > No, mthca is blissfully unaware of the details of assigning MSI > vectors. Ok > I'm talking about drivers/pci/msi.[ch], which currently have > a very simple msi_address_init() function that assumes Intel-style > addresses, and similarly encode Intel-style message contents. I don't think those are Intel specific: #define MSI_ADDRESS_HEADER 0xfee #define MSI_ADDRESS_HEADER_SHIFT 12 #define MSI_ADDRESS_HEADER_MASK 0xfff000 #define MSI_ADDRESS_DEST_ID_MASK 0xfff0000f PA-RISC platforms since 1999 (about) use the same address range: | 2.5.1 PCI Interrupt transactions | When a PCI device does a Memory Write transaction to the 1MB address | range starting at 0xFEE0_0000. The PSC claims the transaction and puts | the address and data into the WPF, identifying them as interrupt address | and interrupt data. The transaction makes its way to the Ibus. The MBIB | subsequently does an interrupt transaction on the Merced bus with the | same address and data, but using the Merced bus encoding for an interrupt | transaction. (N-class PA-RISC boxes had a Merced Bus) Page 12 of 57 of the ZX1 Mem/IO Controller Doc has the system address map and also places the interrupt block at 0xfee00000. I wondered if the MSI_ADDRESS_HEADER_SHIFT needed to be 20 instead of 12 (and it doesn't): static void msi_address_init(struct msg_address *msi_address) { ... dest_id = (MSI_ADDRESS_HEADER << MSI_ADDRESS_HEADER_SHIFT); ... msi_address->lo_address.u.dest_id = dest_id; ... } but "struct msg_address" uses bit fields to put dest_id in the right location of the "vector". At least I expect it's the right location since MSI-X seems to work for other little endian arches. I'll keep looking. thanks, grant From roland at topspin.com Tue Jan 4 17:01:40 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 04 Jan 2005 17:01:40 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52sm5g3dcn.fsf@topspin.com> (Roland Dreier's message of "Tue, 04 Jan 2005 16:54:00 -0800") References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> Message-ID: <52oeg43czv.fsf@topspin.com> Roland> I don't think this is an mthca issue, since the MSI-X API Roland> is pretty hard to get wrong. Do you have any other Roland> devices that can generate MSIs? tg3 devices should be MSI Roland> capable, I'm not sure if anyone has hacked the driver to Roland> turn it on, but if tg3 doesn't work either then that Roland> definitely points to a core platform PCI driver issue. Doesn't look like anyone has tried MSI with tg3 for a while. I'm not sure if the chip works properly (I know that e1000 doesn't even though it advertises an MSI capability) but this hacky patch should be good enough to test with (of course it doesn't make MSI configurable and doesn't clean up on the error path correctly so it's just for testing). - R. Index: linux-bk/drivers/net/tg3.c =================================================================== --- linux-bk.orig/drivers/net/tg3.c 2004-12-29 22:05:41.000000000 -0800 +++ linux-bk/drivers/net/tg3.c 2005-01-04 16:59:36.089783742 -0800 @@ -8218,6 +8218,9 @@ pci_using_dac = 0; } + if (pci_enable_msi(pdev)) + printk(KERN_WARNING PFX "Couldn't enable MSI.\n"); + tg3reg_base = pci_resource_start(pdev, 0); tg3reg_len = pci_resource_len(pdev, 0); @@ -8468,6 +8471,7 @@ unregister_netdev(dev); iounmap(tp->regs); free_netdev(dev); + pci_disable_msi(pdev); pci_release_regions(pdev); pci_disable_device(pdev); pci_set_drvdata(pdev, NULL); From roland at topspin.com Tue Jan 4 17:03:49 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 04 Jan 2005 17:03:49 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050105010018.GE12343@esmail.cup.hp.com> (Grant Grundler's message of "Tue, 4 Jan 2005 17:00:18 -0800") References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <20050105010018.GE12343@esmail.cup.hp.com> Message-ID: <52k6qs3cwa.fsf@topspin.com> Grant> I don't think those are Intel specific: Yup, you're right (or maybe it's just the case that 0xfee is an Intel APIC address that gets put on the processor bus, so every Itanium chipset is likely to follow along and use that address for MSI). - R. From iod00d at hp.com Tue Jan 4 17:03:46 2005 From: iod00d at hp.com (Grant Grundler) Date: Tue, 4 Jan 2005 17:03:46 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52sm5g3dcn.fsf@topspin.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> Message-ID: <20050105010346.GF12343@esmail.cup.hp.com> On Tue, Jan 04, 2005 at 04:54:00PM -0800, Roland Dreier wrote: > The kernel does use an address in the 0xfee region, so that's OK. I > assume the contents are OK as well, since the doc seems to be saying > that ZX1 mio does no translation. So I'm not sure what might be going > wrong. yeah, I reached the same conclusion. > I don't think this is an mthca issue, since the MSI-X API is pretty > hard to get wrong. Do you have any other devices that can generate > MSIs? tg3 devices should be MSI capable, I'm not sure if anyone has > hacked the driver to turn it on, but if tg3 doesn't work either then > that definitely points to a core platform PCI driver issue. tg3 doesn't. e1000 is broken (can't yet support MSI). I haven't checked if fusion driver (LSI MPT u320 SCSI) works. I've asked internally but the person that should know is already gone for the day (TZ=EST). I'll see how hard it would be to try it with tg3. thanks, grant From mlleinin at hpcn.ca.sandia.gov Tue Jan 4 17:02:59 2005 From: mlleinin at hpcn.ca.sandia.gov (Matt Leininger) Date: Tue, 04 Jan 2005 17:02:59 -0800 Subject: [PATCH] Re: [openib-general] Re: IPoIB Failure CQ overrun In-Reply-To: <1104863070.17416.23.camel@duffman> References: <506C3D7B14CDD411A52C00025558DED6064BEC29@mtlex01.yok.mtl.com> <1104863070.17416.23.camel@duffman> Message-ID: <1104886979.2603.150.camel@localhost> On Tue, 2005-01-04 at 10:24 -0800, Tom Duffy wrote: > On Thu, 2004-12-23 at 11:07 +0200, Tziporet Koren wrote: > > Hi, > > We found an issue with the FW that causing this overrun. > > The bug happened when incrementing CQ consumer index in more then 1 > > and a CQE is written at the same time on this CQ. > > This bug is the same in 3.3.1 and 4.6.1 versions. > > > > A FW with a fix will be provided next week. > > Can these firmware revs be checked in somewhere? Or put on the OpenIB > website? > > I don't even have tavor 3.3.1 or arbel 4.6.1. > > Thanks, > > -tduffy > Can someone from Mellanox comment on this idea? thanks, - Matt From roland at topspin.com Tue Jan 4 17:11:11 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 04 Jan 2005 17:11:11 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050105010346.GF12343@esmail.cup.hp.com> (Grant Grundler's message of "Tue, 4 Jan 2005 17:03:46 -0800") References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> Message-ID: <52fz1g3ck0.fsf@topspin.com> Grant> I'll see how hard it would be to try it with tg3. My previous patch seems like it won't work (need MSGINT_MODE_ENABLE set too, according to http://www.ussg.iu.edu/hypermail/linux/kernel/0301.3/0123.html) Index: linux-bk/drivers/net/tg3.c =================================================================== --- linux-bk.orig/drivers/net/tg3.c 2004-12-29 22:05:41.000000000 -0800 +++ linux-bk/drivers/net/tg3.c 2005-01-04 17:09:23.930140627 -0800 @@ -8218,6 +8218,11 @@ pci_using_dac = 0; } + if (pci_enable_msi(pdev)) + printk(KERN_WARNING PFX "Couldn't enable MSI.\n"); + else + tw32(MSGINT_MODE, MSGINT_MODE_ENABLE); + tg3reg_base = pci_resource_start(pdev, 0); tg3reg_len = pci_resource_len(pdev, 0); @@ -8468,6 +8473,7 @@ unregister_netdev(dev); iounmap(tp->regs); free_netdev(dev); + pci_disable_msi(pdev); pci_release_regions(pdev); pci_disable_device(pdev); pci_set_drvdata(pdev, NULL); From halr at voltaire.com Tue Jan 4 18:08:17 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 04 Jan 2005 21:08:17 -0500 Subject: [openib-general] New utilities In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEB76@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6047EEB76@mtlex01.yok.mtl.com> Message-ID: <1104890897.4645.738.camel@localhost.localdomain> Hi Eitan, On Tue, 2005-01-04 at 12:44, Eitan Zahavi wrote: > Under OpenSM there is a utility named osmtest. > > osmtest -f c creates a dump file with the information about all > discovered nodes ports and path records ... My understanding of this command is that it reformats the /tmp/subnet.lst file created by OpenSM and can only run on the node where the SM is running. Is that correct ? Is it being mentioned as a complement to or an alternative to ibnetdiscover ? I presume it is the former. Shahar has already written some of the features of this tool on this list. ibnetdiscover displays the most recent topology which it gathers from the subnet. It can work over badly configured or unconfigured networks, and is more up to date with the real network status than the SM may be. It also allows you to find bad links, etc. -- Hal From ebiederman at lnxi.com Tue Jan 4 22:14:54 2005 From: ebiederman at lnxi.com (Eric W. Biederman) Date: 04 Jan 2005 23:14:54 -0700 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52vfad3pib.fsf@topspin.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <52vfad3pib.fsf@topspin.com> Message-ID: Roland Dreier writes: > Paul> Didn't see any response to Michael's numbers other than > Paul> another mail today from Josh England saying 'great numbers > Paul> till it dies'. > > I've seen 225 MB/sec on my dual 2.2 GHz Xeon/PCI-X systems with NPtcp, > and on Josh's systems I've seen 425 MB/sec. I'm pretty sure Josh's > problems will be solved by upgrading from FW 4.6.1 to 4.6.2. Cool. These numbers are starting to sound reasonable. :) Does mthca support NAPI? If you are interrupt limited I suspect that will help. With the MSI-X comments it sounds like you are interrupt limited. Last time I was messing around I could get 600MB/s with UD packets so it looks like there is still room from IBoIP to go. And that has been achieved with the Linux IP stack with 10 GigE adapters. What part checksum offloading and tuning for IP workloads in the hardware design I don't know. Still when memory bandwidth is greater than 3x the network speed I expect it mostly because a question of how much of your cpu the communication will utilize. Eric From eitan at mellanox.co.il Tue Jan 4 22:49:59 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Wed, 5 Jan 2005 08:49:59 +0200 Subject: [openib-general] New utilities Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEB81@mtlex01.yok.mtl.com> Hi Hal, My understanding of this command is that it reformats the /tmp/subnet.lst file created by OpenSM and can only run on the node where the SM is running. Is that correct ? [EZ] The osmtest can run on any node. Yes it provides the same data the SM has. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mst at mellanox.co.il Tue Jan 4 23:06:58 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 5 Jan 2005 09:06:58 +0200 Subject: [openib-general] Creating .bin files from .mlx In-Reply-To: <1104880775.6291.39.camel@duffman> References: <1104880775.6291.39.camel@duffman> Message-ID: <20050105070658.GC16211@mellanox.co.il> Hello! Quoting r. Tom Duffy (Tom.Duffy at Sun.COM) "Re: [openib-general] Creating .bin files from .mlx": > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit > http://openib.org/mailman/listinfo/openib-general > > Subject: > Date: Wed, 5 Jan 2005 01:19:07 +0200 > > > On Tue, 2005-01-04 at 13:21 -0800, Josh England wrote: > > You can use infiniburn to read in the .mlx and then write them back out > > in raw format, then burn with your tool of choice. > > Alright, I found infiniburn under: > > https://openib.org/svn/trunk/contrib/infinicon/latest/ALL_HOST/tavor_hca/MST/X86_64/infiniburn > > But, the 64-bit version doesn't work for me: > > [tduffy at duffman svn]$ ./trunk/contrib/BoB/ALL_HOST/tavor_hca/MST/X86_64/infiniburn > Segmentation fault (core dumped) > [tduffy at duffman svn]$ file ./trunk/contrib/BoB/ALL_HOST/tavor_hca/MST/X86_64/infiniburn > ./trunk/contrib/BoB/ALL_HOST/tavor_hca/MST/X86_64/infiniburn: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.4.0, statically linked, stripped > > It is stripped, so I cannot debug it any further. What system is that? Linux, right? Let me know, I'll try to reproduce. > However, it seems the ia32 version works on x86_64. I was able to > produce a raw file... > > However, I am trying to query an Arbel with mstflint, I get: > > [root at flopteron2 ~]# lspci > 06:00.0 InfiniBand: Mellanox Technology MT25208 InfiniHost III Ex (Tavor compatibility mode) (rev a0) > > [root at flopteron2 ~]# ./mstflint -d 06:00.0 query > proc: unexpected size values > *** ERROR *** No such file or directory Could you cat /proc/bus/pci/devices please? As a work around, could you please try ./mstflint -d /proc/bus/pci/06/00.0 ? MST From tziporet at mellanox.co.il Wed Jan 5 00:49:33 2005 From: tziporet at mellanox.co.il (Tziporet Koren) Date: Wed, 5 Jan 2005 10:49:33 +0200 Subject: [openib-general] [PATCH] ipoib_faq.txt Message-ID: <506C3D7B14CDD411A52C00025558DED6064BED16@mtlex01.yok.mtl.com> Hi Hal, Please add to the FAQ that this problem is solved by FWs: Tavor 3.3.2 and Arbel 4.6.2 (already released) Tziporet -----Original Message----- From: Hal Rosenstock [mailto:halr at voltaire.com] Sent: Tuesday, January 04, 2005 8:55 PM To: openib-general at openib.org Subject: [openib-general] [PATCH] ipoib_faq.txt ipoib_faq.txt: Include information about latest Tavor and Arbel firmware versions Signed-off-by: Hal Rosenstock Index: ipoib_faq.txt =================================================================== --- ipoib_faq.txt (revision 1462) +++ ipoib_faq.txt (working copy) @@ -53,6 +53,11 @@ For PCI-X HCAs, version 3.2.0 or later is recommended. For PCIe HCAs, version 4.5.3 or later is recommended. +Note that there is an issue with Tavor 3.3.1 and Arbel (in Tavor +compatibility mode) 4.6.1 where there is an issue with CQ handling. +A patch to workaround this has been posted at +http://openib.org/pipermail/openib-general/2004-December/007247.html + 2. Make sure the IB modules are loaded: /sbin/lsmod | grep ib_ should show ib_mthca (HCA driver) as well as ib_ipoib. There are others _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From tziporet at mellanox.co.il Wed Jan 5 01:00:43 2005 From: tziporet at mellanox.co.il (Tziporet Koren) Date: Wed, 5 Jan 2005 11:00:43 +0200 Subject: [openib-general] Can we open a new directory for mstflint und er userspace Message-ID: <506C3D7B14CDD411A52C00025558DED6064BED18@mtlex01.yok.mtl.com> It should have the same license as all openib.org SW. We will add it to the files and also a README Tziporet -----Original Message----- From: Tom Duffy [mailto:tduffy at sun.com] Sent: Tuesday, January 04, 2005 7:22 PM To: Tziporet Koren Cc: openib-general at openib.org Subject: Re: [openib-general] Can we open a new directory for mstflint under userspace On Tue, 2005-01-04 at 17:07 +0200, Tziporet Koren wrote: > Is it OK that we move mstflint from trunk/contrib/mellanox to gen2 > userspace > directory? What is the license for this utility? I don't see anything in the source or the README. -tduffy -------------- next part -------------- An HTML attachment was scrubbed... URL: From halr at voltaire.com Wed Jan 5 05:14:36 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 05 Jan 2005 08:14:36 -0500 Subject: [openib-general] [PATCH] ipoib_faq.txt In-Reply-To: <506C3D7B14CDD411A52C00025558DED6064BED16@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6064BED16@mtlex01.yok.mtl.com> Message-ID: <1104930876.4645.1448.camel@localhost.localdomain> On Wed, 2005-01-05 at 03:49, Tziporet Koren wrote: > Hi Hal, > Please add to the FAQ that this problem is solved by FWs: Tavor 3.3.2 > and Arbel 4.6.2 (already released) I saw the updated firmware yesterday and was debating whether to be specific or just say there are more recent versions which correct this problem so I don't need to keep updating this aspect (which I would likely forget to do :-) I chose the latter approach. Patch below Description Indicate CQ issue fixed in Tavor and Arbel firmware versions beyond 3.3.1 and 4.6.1 (rather than specifically fixed in 3.3.2 and 4.6.2) Signed-off-by: Hal Rosenstock -- Hal Index: ipoib_faq.txt =================================================================== --- ipoib_faq.txt (revision 1469) +++ ipoib_faq.txt (working copy) @@ -57,6 +57,8 @@ compatibility mode) 4.6.1 where there is an issue with CQ handling. A patch to workaround this has been posted at http://openib.org/pipermail/openib-general/2004-December/007247.html +This issue is corrected in subsequent versions of Tavor and Arbel +(in Tavor compatibility mode) firmware. 2. Make sure the IB modules are loaded: /sbin/lsmod | grep ib_ From roland at topspin.com Wed Jan 5 07:24:11 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 05 Jan 2005 07:24:11 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050105003001.GD12343@esmail.cup.hp.com> (Grant Grundler's message of "Tue, 4 Jan 2005 16:30:01 -0800") References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> Message-ID: <52brc33nms.fsf@topspin.com> Grant, what FW are you running? I just realized that all FW prior to 3.3.1 has issues with MSI-X. So if you want to use MSI-X then you should upgrade to FW 3.3.2 (since 3.3.1 has a bug in CQ handling). - R. From roland at topspin.com Wed Jan 5 07:28:39 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 05 Jan 2005 07:28:39 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: (Eric W. Biederman's message of "04 Jan 2005 23:14:54 -0700") References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <52vfad3pib.fsf@topspin.com> Message-ID: <527jmr3nfc.fsf@topspin.com> Eric> Does mthca support NAPI? If you are interrupt limited I Eric> suspect that will help. With the MSI-X comments it sounds Eric> like you are interrupt limited. NAPI doesn't have any relevance to mthca -- it needs to be implemented in the IPoIB driver. I actually tried adding NAPI to the IPoIB driver a while ago and it didn't help at all. I'm not sure that the interrupt rate is the limit-- IPoIB seems to be CPU-bound. Eric> Last time I was messing around I could get 600MB/s with UD Eric> packets so it looks like there is still room from IBoIP to Eric> go. And that has been achieved with the Linux IP stack with Eric> 10 GigE adapters. What part checksum offloading and tuning Eric> for IP workloads in the hardware design I don't know. Still Eric> when memory bandwidth is greater than 3x the network speed I Eric> expect it mostly because a question of how much of your cpu Eric> the communication will utilize. I know 10 gigE has shown some very high numbers, but I assume that's doing sendfile() with 9K jumbo frames. Do you know how well they do in non-zero-copy workloads with a 2K MTU? - R. From robert.j.woodruff at intel.com Wed Jan 5 08:49:48 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Wed, 5 Jan 2005 08:49:48 -0800 Subject: [openib-general] ip over ib throughtput Message-ID: <1AC79F16F5C5284499BB9591B33D6F000330FDC9@orsmsx408> Ron> would you all recommend just cutting over to openib at this point? I've >got a 256-node cluster with hierarchical switches that has never really >worked well with the vendor stacks, and the opensm has never run more than >one day without segv; is openib solid enough that I can run with it? Is >the opensm in openib pretty solid? Are there tools for tracing the fabric >and looking for problems? >thanks >ron I ran a small (4 node) cluster for 12 days over the holidays running MPI over IPoIB and it ran without any problems. I have not yet tried the opensm that was ported to the openib.org stack. I was running the SM from HPC Gold 1.6.0 on a separate node and it ran without problems. It would be interesting to see if there are any problems running the stack on a larger cluster. woody From peter at pantasys.com Wed Jan 5 09:23:29 2005 From: peter at pantasys.com (Peter Buckingham) Date: Wed, 05 Jan 2005 09:23:29 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <527jmr3nfc.fsf@topspin.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <52vfad3pib.fsf@topspin.com> <527jmr3nfc.fsf@topspin.com> Message-ID: <41DC2291.1010604@pantasys.com> Roland Dreier wrote: > I know 10 gigE has shown some very high numbers, but I assume that's > doing sendfile() with 9K jumbo frames. Do you know how well they do > in non-zero-copy workloads with a 2K MTU? stupid question: why are we limited to a 2K MTU for IPoIB? thanks, peter From halr at voltaire.com Wed Jan 5 09:21:06 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 05 Jan 2005 12:21:06 -0500 Subject: [openib-general] ip over ib throughtput In-Reply-To: <41DC2291.1010604@pantasys.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <52vfad3pib.fsf@topspin.com> <527jmr3nfc.fsf@topspin.com> <41DC2291.1010604@pantasys.com> Message-ID: <1104945666.4645.34.camel@localhost.localdomain> On Wed, 2005-01-05 at 12:23, Peter Buckingham wrote: > stupid question: why are we limited to a 2K MTU for IPoIB? The IB max MTU is 4K. The current HCAs support a max MTU of 2K. -- Hal From tduffy at sun.com Wed Jan 5 09:31:52 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 05 Jan 2005 09:31:52 -0800 Subject: [openib-general] Creating .bin files from .mlx In-Reply-To: <20050105070658.GC16211@mellanox.co.il> References: <1104880775.6291.39.camel@duffman> <20050105070658.GC16211@mellanox.co.il> Message-ID: <1104946312.18927.12.camel@duffman> On Wed, 2005-01-05 at 09:06 +0200, Michael S. Tsirkin wrote: > What system is that? Linux, right? > Let me know, I'll try to reproduce. Fedora Core 3 x86_64. > Could you cat /proc/bus/pci/devices please? 0000 80863590 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0001 80863591 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0008 80863594 7 febfe000 0 0 0 0 0 0 1000 0 0 0 0 0 0 0010 80863595 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0020 80863597 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0030 80863599 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0038 8086359a 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00e8 808624d2 d1 0 0 0 0 d001 0 0 0 0 0 0 20 0 0 uhci_hcd 00e9 808624d4 e1 0 0 0 0 d401 0 0 0 0 0 0 20 0 0 uhci_hcd 00ea 808624d7 a9 0 0 0 0 d801 0 0 0 0 0 0 20 0 0 uhci_hcd 00ef 808624dd d9 febffc00 0 0 0 0 0 0 400 0 0 0 0 0 0 ehci_hcd 00f0 8086244e 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00f8 808624d0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00f9 808624db a9 0 0 0 0 fc01 40000000 0 0 0 0 0 10 400 0 PIIX_IDE 00fb 808624d3 0 0 0 0 0 541 0 0 0 0 0 0 20 0 0 i801_smbus 0700 80860329 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0701 80860326 0 feafe000 0 0 0 0 0 0 1000 0 0 0 0 0 0 0702 8086032a 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0703 80860327 0 feaff000 0 0 0 0 0 0 1000 0 0 0 0 0 0 0820 80861079 c1 fe9c0004 0 0 0 c801 0 0 20000 0 0 0 40 0 0 e1000 0821 80861079 c9 fe9e0004 0 0 0 cc01 0 0 20000 0 0 0 40 0 0 e1000 0600 15b36278 d1 fe800004 0 df80000c 0 c000000c 0 0 100000 0 800000 0 10000000 0 0 ib_mthca 0200 80860330 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0201 80860331 0 fe6fe000 0 0 0 0 0 0 1000 0 0 0 0 0 0 0202 80860332 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0203 80860333 0 fe6ff000 0 0 0 0 0 0 1000 0 0 0 0 0 0 0428 10000030 b1 b401 fe5d0004 0 fe5c0004 0 0 fe300000 100 10000 0 10000 0 0 100000 mptbase 0429 10000030 b9 b801 fe5f0004 0 fe5e0004 0 0 fe400000 100 10000 0 10000 0 0 100000 mptbase 0160 10024752 7 fd000000 a801 fcfff000 0 0 0 fcfc0002 1000000 100 1000 0 0 0 20000 > As a work around, could you please try ./mstflint -d /proc/bus/pci/06/00.0 ? OK, that worked better: [root at flopteron2 ~]# ./mstflint -d /proc/bus/pci/06/00.0 q Image type: FailSafe Chip rev.: A0 GUIDs: 0002c9010a99e030 0002c9010a99e031 0002c9010a99e032 0002c9000100d050 Board ID: -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mst at mellanox.co.il Wed Jan 5 09:50:38 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 5 Jan 2005 19:50:38 +0200 Subject: [openib-general] Creating .bin files from .mlx In-Reply-To: <1104946312.18927.12.camel@duffman> References: <1104946312.18927.12.camel@duffman> Message-ID: <20050105175038.GA17498@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] Creating .bin files from .mlx": > On Wed, 2005-01-05 at 09:06 +0200, Michael S. Tsirkin wrote: > > What system is that? Linux, right? > > Let me know, I'll try to reproduce. > > Fedora Core 3 x86_64. Hmm dont have it. I'll try to find such a pc. > > Could you cat /proc/bus/pci/devices please? > Looks good. > > As a work around, could you please try ./mstflint -d > /proc/bus/pci/06/00.0 ? > > OK, that worked better: > > [root at flopteron2 ~]# ./mstflint -d /proc/bus/pci/06/00.0 q > Image type: FailSafe > Chip rev.: A0 > GUIDs: 0002c9010a99e030 0002c9010a99e031 0002c9010a99e032 > 0002c9000100d050 > > Board ID: > > -tduffy So flash access works and you' shall be able to burn over /proc/bus/pci. But why not the devices file parsing? Could you please re-run with the latest code from gen2/userspace/mstflint? I added a bunch of debug prints around that error messages you've seen. MST From blist at aon.at Wed Jan 5 10:19:03 2005 From: blist at aon.at (Bernhard Fischer) Date: Wed, 5 Jan 2005 19:19:03 +0100 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <1104867191.17416.28.camel@duffman> References: <1104781717.21424.27.camel@duffman> <1104786202.4662.2480.camel@localhost.localdomain> <1104786850.21424.31.camel@duffman> <1104865104.4645.57.camel@localhost.localdomain> <1104867191.17416.28.camel@duffman> Message-ID: <20050105181902.GE12719@aon.at> Hi, Sorry for nitpicking.. opensm -h doesn't exit as advertised. -------------- next part -------------- diff -rup openib.gen2.oorig/upstream/gen2/trunk/src/userspace/management/osm/opensm/main.c openib.gen2/upstream/gen2/trunk/src/userspace/management/osm/opensm/main.c --- openib.gen2.oorig/upstream/gen2/trunk/src/userspace/management/osm/opensm/main.c 2005-01-05 10:16:25.000000000 +0100 +++ openib.gen2/upstream/gen2/trunk/src/userspace/management/osm/opensm/main.c 2005-01-05 19:03:22.325418049 +0100 @@ -104,7 +104,7 @@ instantiating more than one opensm object. */ osm_opensm_t osm; -volatile int osm_exit_flag; +volatile int osm_exit_flag = 0; #define GUID_ARRAY_SIZE 64 @@ -246,6 +246,7 @@ show_usage(void) printf( "-?\n" " Display this usage info then exit.\n\n" ); fflush( stdout ); + osm_exit_flag = 1; } /********************************************************************** @@ -598,14 +599,10 @@ main( break; case 'h': - show_usage(); - return 0; - break; - case '?': show_usage(); - return 0; break; + case -1: break; /* done with option */ default: /* something wrong */ @@ -614,6 +611,10 @@ main( } while(next_option != -1); + if (osm_exit_flag) { + complib_exit(); + return( 0 ); + } if (opt.log_file != NULL ) printf(" Log File: %s\n", opt.log_file ); /* Done with options description */ From Diego at Mellanox.com Wed Jan 5 10:38:38 2005 From: Diego at Mellanox.com (Diego Crupnicoff) Date: Wed, 5 Jan 2005 10:38:38 -0800 Subject: [openib-general] ip over ib throughtput Message-ID: <25AE7F432672D511B8DC00B0D0DF11DA043F1957@MTIEX01> Note however that the relevant IB limit is the max ***message size*** which happens to be equal to the ***IB*** MTU for the current IPoIB (that runs on top of IB UD transport service where IB messages are limited to a single packet). A connected mode IPoIB (that runs on top of IB RC/UC transport service) would allow IB messages up to 2GB long. That will allow for much larger (effectively as large as you may ever dream of) ***IP*** MTUs, regardless of the underlying IB MTU. Diego > -----Original Message----- > From: Hal Rosenstock [mailto:halr at voltaire.com] > Sent: Wednesday, January 05, 2005 2:21 PM > To: Peter Buckingham > Cc: openib-general at openib.org > Subject: Re: [openib-general] ip over ib throughtput > > > On Wed, 2005-01-05 at 12:23, Peter Buckingham wrote: > > stupid question: why are we limited to a 2K MTU for IPoIB? > > The IB max MTU is 4K. The current HCAs support a max MTU of 2K. > > -- Hal > > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-> general > > To > unsubscribe, please visit > http://openib.org/mailman/listinfo/openib-general > -------------- next part -------------- An HTML attachment was scrubbed... URL: From robert.j.woodruff at intel.com Wed Jan 5 10:53:00 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Wed, 5 Jan 2005 10:53:00 -0800 Subject: [openib-general] ip over ib throughtput Message-ID: <1AC79F16F5C5284499BB9591B33D6F000331017E@orsmsx408> >Note however that the relevant IB limit is the max ***message size*** which happens to >be equal to the ***IB*** MTU for the current IPoIB (that runs on top of IB UD transport >service where IB messages are limited to a single packet). >A connected mode IPoIB (that runs on top of IB RC/UC transport service) would allow IB >messages up to 2GB long. That will allow for much larger (effectively as large as you >may ever dream of) ***IP*** MTUs, regardless of the underlying IB MTU. >Diego The trade off is that a fully connected model requires each node to burn a QP for every node in the cluster and thus does not scale as well as the UD model. My guess is that if people need really high performance socket access, they will use SDP instead. woody From iod00d at hp.com Wed Jan 5 10:58:11 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 5 Jan 2005 10:58:11 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52brc33nms.fsf@topspin.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52brc33nms.fsf@topspin.com> Message-ID: <20050105185811.GA19360@esmail.cup.hp.com> On Wed, Jan 05, 2005 at 07:24:11AM -0800, Roland Dreier wrote: > Grant, what FW are you running? I just realized that all FW prior to > 3.3.1 has issues with MSI-X. So if you want to use MSI-X then you > should upgrade to FW 3.3.2 (since 3.3.1 has a bug in CQ handling). I'm pretty sure it's 3.2.0. Can you point me at the equivalent of fw-cougarcub-a1-3.2.0.bin and fw-cougar-a1-3.2.0.bin? (Consider this another call for posting firmware revs on openib.org) thanks, grant From Tom.Duffy at Sun.COM Wed Jan 5 11:00:09 2005 From: Tom.Duffy at Sun.COM (Tom Duffy) Date: Wed, 05 Jan 2005 11:00:09 -0800 Subject: [openib-general] Creating .bin files from .mlx In-Reply-To: <20050105175038.GA17498@mellanox.co.il> References: <1104946312.18927.12.camel@duffman> <20050105175038.GA17498@mellanox.co.il> Message-ID: <1104951609.26324.16.camel@duffman> On Wed, 2005-01-05 at 19:50 +0200, Michael S. Tsirkin wrote: > So flash access works and you' shall be able to burn over /proc/bus/pci. > But why not the devices file parsing? > > Could you please re-run with the latest code from > gen2/userspace/mstflint? > I added a bunch of debug prints around that error messages you've seen. After an update of the code to rev 1479, things seem to be working better: [root at flopteron2 ~]# ./mstflint -d 06:00.0 q Image type: FailSafe Chip rev.: A0 GUIDs: 0002c9010a99e030 0002c9010a99e031 0002c9010a99e032 0002c9000100d050 Board ID: Thanks! -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From iod00d at hp.com Wed Jan 5 11:04:51 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 5 Jan 2005 11:04:51 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <41DC2291.1010604@pantasys.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <52vfad3pib.fsf@topspin.com> <527jmr3nfc.fsf@topspin.com> <41DC2291.1010604@pantasys.com> Message-ID: <20050105190451.GB19360@esmail.cup.hp.com> On Wed, Jan 05, 2005 at 09:23:29AM -0800, Peter Buckingham wrote: > stupid question: why are we limited to a 2K MTU for IPoIB? Reminder: The MTU size is not as important for "server" type applications if the NIC supports "Large Send Offload" (LSO). Reducing the number of interrupts to one per send instead of one per MTU is a big win (along with TX Cksum offloading). We just happen to be using a benchmark that doesn't support that. ia64 uses 16K pages by default and many folks would like to bump that up the 64K. So a 4K MTU is less than optimal but not a disaster if we can do something like LSO. grant From halr at voltaire.com Wed Jan 5 11:03:49 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 05 Jan 2005 14:03:49 -0500 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <20050105181902.GE12719@aon.at> References: <1104781717.21424.27.camel@duffman> <1104786202.4662.2480.camel@localhost.localdomain> <1104786850.21424.31.camel@duffman> <1104865104.4645.57.camel@localhost.localdomain> <1104867191.17416.28.camel@duffman> <20050105181902.GE12719@aon.at> Message-ID: <1104951829.4645.51.camel@localhost.localdomain> On Wed, 2005-01-05 at 13:19, Bernhard Fischer wrote: > Hi, > > Sorry for nitpicking.. opensm -h doesn't exit as advertised. Nitpick away :-) (I know I'll regret saying this). Please include a signed off line in the future. Thanks. -- Hal From tduffy at sun.com Wed Jan 5 11:14:17 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 05 Jan 2005 11:14:17 -0800 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <1104951829.4645.51.camel@localhost.localdomain> References: <1104781717.21424.27.camel@duffman> <1104786202.4662.2480.camel@localhost.localdomain> <1104786850.21424.31.camel@duffman> <1104865104.4645.57.camel@localhost.localdomain> <1104867191.17416.28.camel@duffman> <20050105181902.GE12719@aon.at> <1104951829.4645.51.camel@localhost.localdomain> Message-ID: <1104952457.26324.27.camel@duffman> On Wed, 2005-01-05 at 14:03 -0500, Hal Rosenstock wrote: > Please include a signed off line in the future. This is true for Linux kernel code as Linus requires it, but do we require such things for the userland stuff? I see that it says so on openib.org. Just making sure. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From iod00d at hp.com Wed Jan 5 11:28:06 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 5 Jan 2005 11:28:06 -0800 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <1104952457.26324.27.camel@duffman> References: <1104781717.21424.27.camel@duffman> <1104786202.4662.2480.camel@localhost.localdomain> <1104786850.21424.31.camel@duffman> <1104865104.4645.57.camel@localhost.localdomain> <1104867191.17416.28.camel@duffman> <20050105181902.GE12719@aon.at> <1104951829.4645.51.camel@localhost.localdomain> <1104952457.26324.27.camel@duffman> Message-ID: <20050105192806.GE19360@esmail.cup.hp.com> On Wed, Jan 05, 2005 at 11:14:17AM -0800, Tom Duffy wrote: > This is true for Linux kernel code as Linus requires it, Linus in fact does not _require_ it. He just wants a name and email address associated with each patch and who has reviewed it. It's all based on trust. He strongly *prefers* a "Signed-off-by" line and will get cranky if folks submit too many patches without the S-O-B line. Been there, done that. > but do we require such things for the userland stuff? > I see that it says so on openib.org. Just making sure. It's probably overkill for userspace stuff. But I think it's good practice to track who submitted a patch in the SVN logs as well as archiving the email. Tracking this stuff down after the fact is just a PITA and if someone else wants to adopt the code, they may in fact need to have such a list of submitters. grant From blist at aon.at Wed Jan 5 11:53:33 2005 From: blist at aon.at (Bernhard Fischer) Date: Wed, 5 Jan 2005 20:53:33 +0100 Subject: [openib-general] progress...but opensm crashed In-Reply-To: <20050105192806.GE19360@esmail.cup.hp.com> References: <1104781717.21424.27.camel@duffman> <1104786202.4662.2480.camel@localhost.localdomain> <1104786850.21424.31.camel@duffman> <1104865104.4645.57.camel@localhost.localdomain> <1104867191.17416.28.camel@duffman> <20050105181902.GE12719@aon.at> <1104951829.4645.51.camel@localhost.localdomain> <1104952457.26324.27.camel@duffman> <20050105192806.GE19360@esmail.cup.hp.com> Message-ID: <20050105195333.GF12719@aon.at> On Wed, Jan 05, 2005 at 11:28:06AM -0800, Grant Grundler wrote: >On Wed, Jan 05, 2005 at 11:14:17AM -0800, Tom Duffy wrote: >> This is true for Linux kernel code as Linus requires it, > >Linus in fact does not _require_ it. He just wants a name and >email address associated with each patch and who has reviewed it. >It's all based on trust. > >He strongly *prefers* a "Signed-off-by" line and will get cranky if >folks submit too many patches without the S-O-B line. >Been there, done that. Rusty Trivial Russell, OTOH, told me he would no longer take patches without S-O-B > >> but do we require such things for the userland stuff? >> I see that it says so on openib.org. Just making sure. > >It's probably overkill for userspace stuff. > >But I think it's good practice to track who submitted a patch >in the SVN logs as well as archiving the email. If mentioning the submitter's name is needed at all, putting it in the log should really suffice for userspace. ymmv Thank you, From Diego at Mellanox.com Wed Jan 5 12:11:07 2005 From: Diego at Mellanox.com (Diego Crupnicoff) Date: Wed, 5 Jan 2005 12:11:07 -0800 Subject: [openib-general] ip over ib throughtput Message-ID: <25AE7F432672D511B8DC00B0D0DF11DA043F196E@MTIEX01> > -----Original Message----- > From: Woodruff, Robert J [mailto:robert.j.woodruff at intel.com] > Sent: Wednesday, January 05, 2005 3:53 PM > To: Diego Crupnicoff; Hal Rosenstock; Peter Buckingham > Cc: openib-general at openib.org > Subject: RE: [openib-general] ip over ib throughtput > > > The trade off is that a fully connected model requires each > node to burn a QP for every node in the cluster and thus does > not scale as well as the UD model. My guess is that if > people need really high performance > socket access, they will use SDP instead. > > woody > 1 QP for every node in the cluster does not sound that bad. SDP is a good alternative too. It has even further benefits as compared to IPoIB (built in HW reliability that eliminates the TCP/IP stack, potential for zero copy, etc). However, in terms of QP requirements, SDP would consume even more than what a connected mode IPoIB would (still not too bad given the IB HW capabilities). Diego -------------- next part -------------- An HTML attachment was scrubbed... URL: From tduffy at sun.com Wed Jan 5 13:17:09 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 05 Jan 2005 13:17:09 -0800 Subject: [openib-general] mstflint failing on sparc64 Message-ID: <1104959829.26324.38.camel@duffman> I have just tried running the mstflint utility on Linux/sparc64: tat:~# lspci 0000:80:00.0 Host bridge: Sun Microsystems Computer Corp. Psycho PCI Bus Module 0000:80:01.0 PCI bridge: Mellanox Technology MT23108 PCI Bridge (rev a1) 0000:81:00.0 InfiniBand: Mellanox Technology MT23108 InfiniHost (rev a1) tat:~# ./mstflint -d 0000:81:00.0 q Can not parse device 0000:81:00.0 *** ERROR *** Invalid argument tat:~# ./mstflint -d 81:00.0 q Bus error tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q *** ERROR *** cannot obtain GPIO semaphore (63) tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q *** ERROR *** Flash gateway timeout: CMD doesn't become zero Any ideas? -tduffy tat:/build1/tduffy/openib-work/gen2-sparc/src/bin# uname -a Linux tat 2.6.10openib #14 SMP Mon Jan 3 12:30:51 PST 2005 sparc64 GNU/Linux tat:/build1/tduffy/openib-work/gen2-sparc/src/bin# ./ibstat CA 'mthca0': CA type: MT23108 Number of ports: 2 Firmware version: 3.2.0 Hardware version: a1 Node GUID: 0x0002c90109765fd0 System image GUID: 0x0002c9000100d050 Port 1: State: Active Rate: 10 Base lid: 4 LMC: 0 SM lid: 1 Capability mask: 0x00500a68 Port GUID: 0x0002c90109765fd1 Port 2: State: Down Rate: 2 Base lid: 0 LMC: 0 SM lid: 0 Capability mask: 0x00500a68 Port GUID: 0x0002c90109765fd2 -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From halr at voltaire.com Wed Jan 5 13:19:13 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 05 Jan 2005 16:19:13 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access Message-ID: <1104959952.4645.375.camel@localhost.localdomain> Hi, These came up on the list a while ago which appear to have been lost: 1. The SM needs the ability to write (set/clear) the 'is_sm' PortInfo capability mask bit (from user space). 2. There are some additional fields which would be useful to support: per port PortInfo:PortPhysicalState NodeInfo:PortGUID per device NodeInfo:NodeType Can you add these in ? Thanks. -- Hal From mplee at sandia.gov Wed Jan 5 14:06:19 2005 From: mplee at sandia.gov (Michael Paichi Lee) Date: Wed, 05 Jan 2005 14:06:19 -0800 Subject: [openib-general] another shutdown reminder Message-ID: <1104962779.8311.0.camel@acheron.ca.sandia.gov> This is another reminder that the openib.org site will be down from 3:30pm to 4:30pm for a system move. All mail, http, and subversion subversions will be unavailable during this window. Michael From halr at voltaire.com Wed Jan 5 14:08:31 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 05 Jan 2005 17:08:31 -0500 Subject: [openib-general] another shutdown reminder In-Reply-To: <1104962779.8311.0.camel@acheron.ca.sandia.gov> References: <1104962779.8311.0.camel@acheron.ca.sandia.gov> Message-ID: <1104962739.4645.433.camel@localhost.localdomain> On Wed, 2005-01-05 at 17:06, Michael Paichi Lee wrote: > This is another reminder that the openib.org site will be down from > 3:30pm to 4:30pm for a system move. All mail, http, and subversion > subversions will be unavailable during this window. What TZ ? PST ? Thanks. -- Hal From tduffy at sun.com Wed Jan 5 14:21:39 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 05 Jan 2005 14:21:39 -0800 Subject: [openib-general] OpenSM died a horrible death Message-ID: <1104963701.26324.54.camel@duffman> I noticed this on the console of opensm *** glibc detected *** double free or corruption (!prev): 0x0000002a95901eb0 *** OpenSM[4593]: *** exception handler: died with signal 6 exception handler: entering tight loop ... pid 4593 I hit control-C here: OpenSM: Got signal 2 - exiting... ------- OpenSM Exiting (in 3 seconds) ------- There are still 72 mads out. Forcing exiting of application ... I had to kill -9 it... Here is the log: [1104915479:000433459][95876A80] -> OpenSM Rev:openib-1.0.0 [1104915479:000433742][95876A80] -> osm_opensm_init: Forcing single threaded dispatcher. [1104915479:000434231][95876A80] -> osm_report_notice: Reporting Generic Notice type:3 num:66 from LID:0x0000 GUID:0xfe80000000000000,0x0000000000000000 [1104915479:000434249][95876A80] -> osm_report_notice: Reporting Generic Notice type:3 num:66 from LID:0x0000 GUID:0xfe80000000000000,0x0000000000000000 [1104915479:000505446][95876A80] -> osm_vendor_get_all_port_attr: assign CA 0x55bd24ort 1 guid (0x2c9010a99e031) as the default port. [1104915479:000505478][95876A80] -> osm_sm_mad_ctrl_bind: Binding to port 0x2c9010a99e031. [1104915479:000505485][95876A80] -> osm_vendor_bind: Binding to port 0x2c9010a99e031. [1104915479:000686027][95876A80] -> osm_sa_mad_ctrl_bind: Binding to port GUID = 0x2c9010a99e031. [1104915479:000686043][95876A80] -> osm_vendor_bind: Binding to port 0x2c9010a99e031. [1104915479:000686086][95876A80] -> __osm_sm_state_mgr_discovering_msg: ****************************************************************** ******************** ENTERING SM DISCOVERING STATE *************** ****************************************************************** [1104915479:000686100][95876A80] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104915479:000686267][43005960] -> Received a SMP on a 0 hop path: Initial path = [0] Return path = [0] [1104915479:000686278][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c9010a99e030, TID = 0x1234. [1104915479:000686376][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c9010a99e030 Description = MT25208 InfiniHostEx Mellanox Technologies. [1104915479:000686431][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x1236. [1104915479:000686518][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x1237. [1104915479:000686567][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x1238. [1104915479:000686657][43005960] -> Received a SMP on a 1 hop path: Initial path = [0][1] Return path = [0][7] [1104915479:000686665][43005960] -> __osm_ni_rcv_process_new: Discovered new Switch node, GUID = 0x6170000000009, TID = 0x1239. [1104915479:000686739][43005960] -> __osm_nd_rcv_process_nd: Node 0x6170000000009 Description = Agilent and RedSwitch High Performance 8 Port 4x IBA Switch. [1104915479:000686837][43005960] -> __osm_si_rcv_process_new:Subnet max multicast lid is 0xC200 [1104915479:000686848][43005960] -> __osm_si_rcv_process_new:Subnet max unicast lid is 0x4000 [1104915479:000686912][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x123c. [1104915479:000686946][43005960] -> osm_pi_rcv_process: Initializing port number 0x0. [1104915479:000686991][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x123d. [1104915479:000687024][43005960] -> osm_pi_rcv_process: Initializing port number 0x1. [1104915479:000687068][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x123e. [1104915479:000687082][43005960] -> osm_pi_rcv_process: Initializing port number 0x2. [1104915479:000687140][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x123f. [1104915479:000687151][43005960] -> osm_pi_rcv_process: Initializing port number 0x3. [1104915479:000687184][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x1240. [1104915479:000687223][43005960] -> osm_pi_rcv_process: Initializing port number 0x4. [1104915479:000687242][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x1241. [1104915479:000687265][43005960] -> osm_pi_rcv_process: Initializing port number 0x5. [1104915479:000687284][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x1242. [1104915479:000687293][43005960] -> osm_pi_rcv_process: Initializing port number 0x6. [1104915479:000687325][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x1243. [1104915479:000687354][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x1244. [1104915479:000687362][43005960] -> osm_pi_rcv_process: Initializing port number 0x8. [1104915479:000687380][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x1246. [1104915479:000687472][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104915479:000687483][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x1247. [1104915479:000687529][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x1248. [1104915479:000687718][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][2] Return path = [0][7][1] [1104915479:000687735][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c90108cd8890, TID = 0x1249. [1104915479:000687770][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x124a. [1104915479:000687803][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x124b. [1104915479:000687837][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x124c. [1104915479:000687870][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x124d. [1104915479:000687908][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x124e. [1104915479:000687940][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x124f. [1104915479:000687981][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x1250. [1104915479:000688063][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104915479:000688151][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x1252. [1104915479:000688310][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c90108cd8890 Description = MT23108 InfiniHost Mellanox Technologies. [1104915479:000688473][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x1254. [1104915479:000688556][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x1255. [1104915479:000688730][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x1256. [1104915479:000688899][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x1257. [1104915479:000688920][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104915479:000688930][43005960] -> __osm_sm_state_mgr_master_msg: ****************************************************************** ******************** ENTERING SM MASTER STATE ********************** ****************************************************************** [1104915479:000688939][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104915479:000688953][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104915479:000689055][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104915479:000689084][43005960] -> __osm_lid_mgr_process_foreign: Fitting port 0x0006170000000009 LID [0x3,0x3]. [1104915479:000689101][43005960] -> __osm_lid_mgr_process_foreign: Fitting port 0x0002c90108cd8891 LID [0x4,0x4]. [1104915479:000689132][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104915479:000689146][43005960] -> __osm_lid_mgr_process_foreign: Fitting port 0x0002c901097651d1 LID [0x2,0x2]. [1104915479:000689175][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104915479:000689556][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104915479:000689712][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104915479:000689744][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104915479:000689752][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104915479:000689761][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104915479:000689783][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104915479:000689796][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104915479:000689826][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104915479:000689845][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104915479:000689865][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104915479:000689893][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104915479:000690057][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104915479:000690067][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104915479:000690803][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104915489:000435312][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915489:000435415][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915499:000437506][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915499:000437605][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915509:000438712][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915509:000438809][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915519:000439915][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915519:000440017][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915529:000442129][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915529:000442271][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915539:000444331][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915539:000444484][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915549:000445537][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915549:000445671][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915559:000446736][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915559:000446841][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915569:000448937][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915569:000449040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915579:000450145][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915579:000450248][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915589:000451346][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915589:000451437][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915599:000452551][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915599:000452645][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915609:000454755][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915609:000454858][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915619:000455958][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915619:000456048][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915629:000457162][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915629:000457258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915639:000459370][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915639:000459481][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915649:000460570][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915649:000460659][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915659:000461777][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915659:000461868][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915669:000462989][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915669:000463124][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915679:000465186][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915679:000465284][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915689:000466389][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915689:000466505][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915699:000467600][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915699:000467722][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915709:000469806][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915709:000469902][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915719:000472004][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915719:000472103][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915729:000473208][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915729:000473306][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915739:000474412][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915739:000474511][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915749:000476616][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915749:000476721][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915759:000477819][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915759:000477912][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915769:000479025][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915769:000479118][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915779:000480230][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915779:000480333][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915789:000482435][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915789:000482538][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915799:000483636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915799:000483728][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915809:000484840][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915809:000484931][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915819:000487045][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915819:000487149][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915829:000489248][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915829:000489337][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915839:000490452][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915839:000490545][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915849:000491662][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915849:000491759][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915859:000493863][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915859:000493958][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915869:000495067][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915869:000495160][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915879:000496272][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915879:000496365][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915889:000497474][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915889:000497563][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915899:000499680][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915899:000499775][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915909:000500883][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915909:000500991][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915919:000502088][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915919:000502178][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915929:000504293][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915929:000504389][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915939:000505499][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915939:000505595][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915949:000506700][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915949:000506794][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915959:000507905][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915959:000507993][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915969:000510110][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915969:000510200][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915979:000511314][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915979:000511405][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915989:000512521][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915989:000512616][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104915999:000513728][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104915999:000513848][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916009:000515929][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916009:000516025][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916019:000517133][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916019:000517233][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916029:000518337][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916029:000518434][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916039:000520539][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916039:000520638][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916049:000521744][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916049:000521838][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916059:000522949][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916059:000523059][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916069:000524155][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916069:000524252][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916079:000526356][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916079:000526449][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916089:000527564][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916089:000527664][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916099:000528766][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916099:000528858][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916109:000530979][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916109:000531070][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916119:000533176][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916119:000533271][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916129:000534379][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916129:000534489][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916139:000535585][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916139:000535680][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916149:000537789][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916149:000537887][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916159:000538992][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916159:000539081][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916169:000540196][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916169:000540287][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916179:000541402][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916179:000541497][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916189:000543604][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916189:000543694][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916199:000544809][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916199:000544901][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916209:000546014][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916209:000546108][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916219:000548218][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916219:000548311][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916229:000549422][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916229:000549512][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916239:000550627][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916239:000550719][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916249:000551831][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916249:000551916][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916259:000554035][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916259:000554126][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916269:000555241][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916269:000555330][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916279:000556444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916279:000556548][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916289:000557649][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916289:000557739][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916299:000559859][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916299:000559970][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916309:000561057][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916309:000561152][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916319:000562262][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916319:000562358][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916329:000564466][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916329:000564570][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916339:000565671][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916339:000565767][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916349:000566878][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916349:000566985][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916359:000568079][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916359:000568172][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916369:000570283][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916369:000570375][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916379:000571488][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916379:000571582][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916389:000572694][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916389:000572793][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916399:000573897][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916399:000573985][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916409:000576101][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916409:000576192][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916419:000577307][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916419:000577404][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916429:000578508][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916429:000578622][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916439:000580715][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916439:000580816][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916449:000581920][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916449:000582019][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916459:000583123][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916459:000583218][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916469:000584326][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916469:000584425][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916479:000586531][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916479:000586625][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916489:000587735][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916489:000587824][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916499:000588940][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916499:000589051][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916509:000591147][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916509:000591253][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916519:000593347][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916519:000593436][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916529:000594553][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916529:000594642][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916539:000595758][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916539:000595851][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916549:000597961][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916549:000598050][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916559:000599166][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916559:000599255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916569:000600372][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916569:000600468][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916579:000601575][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916579:000601669][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916589:000603778][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916589:000603870][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916599:000604983][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916599:000605079][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916609:000606191][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916609:000606302][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916619:000608393][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916619:000608495][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916629:000609599][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916629:000609691][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916639:000610801][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916639:000610895][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916649:000612005][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916649:000612116][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916659:000614211][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916659:000614307][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916669:000615415][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916669:000615512][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916679:000616619][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916679:000616715][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916689:000617824][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916689:000617923][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916699:000620027][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916699:000620117][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916709:000621230][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916709:000621322][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916719:000622436][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916719:000622530][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916729:000624639][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916729:000624738][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916739:000625844][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916739:000625936][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916749:000627051][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916749:000627149][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916759:000628252][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916759:000628344][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916769:000630457][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916769:000630545][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916779:000631662][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916779:000631755][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916789:000632864][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916789:000632953][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916799:000634080][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916799:000634174][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916809:000636275][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916809:000636368][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916819:000637477][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916819:000637568][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916829:000638682][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916829:000638772][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916839:000640887][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916839:000641002][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916849:000642091][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916849:000642180][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916859:000643296][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916859:000643384][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916869:000644501][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916869:000644607][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916879:000646706][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916879:000646799][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916889:000647909][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916889:000648003][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916899:000649114][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916899:000649205][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916909:000651322][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916909:000651440][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916919:000653524][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916919:000653622][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916929:000654727][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916929:000654821][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916939:000655932][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916939:000656025][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916949:000658137][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916949:000658232][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916959:000659340][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916959:000659439][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916969:000660545][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916969:000660631][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916979:000661749][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916979:000661843][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916989:000663954][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916989:000664050][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104916999:000665158][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104916999:000665249][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917009:000666363][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917009:000666453][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917019:000668566][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917019:000668678][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917029:000670769][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917029:000670856][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917039:000671974][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917039:000672063][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917049:000673181][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917049:000673277][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917059:000675382][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917059:000675472][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917069:000676587][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917069:000676678][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917079:000677792][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917079:000677884][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917089:000678995][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917089:000679099][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917099:000681201][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917099:000681294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917109:000682406][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917109:000682496][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917119:000683608][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917119:000683698][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917129:000685814][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917129:000685910][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917139:000687018][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917139:000687111][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917149:000688221][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917149:000688310][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917159:000689426][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917159:000689522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917169:000691631][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917169:000691724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917179:000692835][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917179:000692926][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917189:000694041][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917189:000694142][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917199:000696253][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917199:000696344][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917209:000698452][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917209:000698561][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917219:000699653][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917219:000699752][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917229:000700858][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917229:000700952][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917239:000703061][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917239:000703177][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917249:000704266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917249:000704361][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917259:000705473][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917259:000705574][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917269:000706676][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917269:000706770][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917279:000708879][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917279:000708975][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917289:000710084][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917289:000710184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917299:000711286][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917299:000711373][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917309:000713491][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917309:000713583][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917319:000715697][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917319:000715795][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917329:000716898][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917329:000716986][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917339:000718104][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917339:000718196][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917349:000720311][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917349:000720410][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917359:000721512][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917359:000721604][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917369:000722717][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917369:000722806][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917379:000723923][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917379:000724018][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917389:000726125][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917389:000726214][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917399:000727330][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917399:000727427][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917409:000728535][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917409:000728628][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917419:000730738][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917419:000730838][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917429:000731942][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917429:000732029][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917439:000733147][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917439:000733240][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917449:000734351][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917449:000734440][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917459:000736557][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917459:000736661][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917469:000737761][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917469:000737851][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917479:000738966][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917479:000739056][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917489:000740170][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917489:000740262][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917499:000742374][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917499:000742466][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917509:000743582][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917509:000743691][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917519:000744784][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917519:000744886][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917529:000746988][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917529:000747085][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917539:000748191][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917539:000748290][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917549:000749396][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917549:000749493][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917559:000750602][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917559:000750709][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917569:000752803][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917569:000752898][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917579:000754009][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917579:000754104][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917589:000755215][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917589:000755314][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917599:000757417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917599:000757516][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917609:000759623][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917609:000759738][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917619:000760827][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917619:000760927][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917629:000762033][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917629:000762129][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917639:000764235][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917639:000764327][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917649:000765442][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917649:000765541][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917659:000766642][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917659:000766734][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917669:000767848][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917669:000767944][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917679:000770052][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917679:000770159][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917689:000771256][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917689:000771347][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917699:000772460][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917699:000772553][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917709:000774668][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917709:000774776][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917719:000776868][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917719:000776957][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917729:000778073][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917729:000778169][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917739:000779279][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917739:000779376][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917749:000781482][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917749:000781573][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917759:000782688][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917759:000782780][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917769:000783891][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917769:000783983][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917779:000785095][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917779:000785187][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917789:000787301][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917789:000787396][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917799:000788505][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917799:000788598][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917809:000789713][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917809:000789826][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917819:000791914][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917819:000792022][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917829:000793118][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917829:000793231][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917839:000794322][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917839:000794424][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917849:000795525][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917849:000795618][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917859:000797731][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917859:000797830][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917869:000798937][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917869:000799035][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917879:000800140][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917879:000800239][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917889:000801353][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917889:000801454][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917899:000803547][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917899:000803637][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917909:000804751][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917909:000804842][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917919:000805957][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917919:000806055][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917929:000808160][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917929:000808258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917939:000809365][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917939:000809456][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917949:000810572][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917949:000810671][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917959:000811775][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917959:000811868][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917969:000813978][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917969:000814067][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917979:000815183][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917979:000815277][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917989:000816386][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917989:000816477][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104917999:000818591][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104917999:000818694][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918009:000820796][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918009:000820890][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918019:000821999][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918019:000822091][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918029:000823203][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918029:000823293][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918039:000825409][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918039:000825505][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918049:000826612][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918049:000826718][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918059:000827817][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918059:000827909][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918069:000829021][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918069:000829112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918079:000831226][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918079:000831319][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918089:000832430][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918089:000832524][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918099:000833634][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918099:000833728][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918109:000835843][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918109:000835958][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918119:000838044][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918119:000838144][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918129:000839248][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918129:000839346][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918139:000840452][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918139:000840546][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918149:000842656][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918149:000842750][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918159:000843861][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918159:000843958][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918169:000845063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918169:000845152][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918179:000846269][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918179:000846364][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918189:000848475][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918189:000848575][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918199:000849677][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918199:000849785][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918209:000850882][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918209:000850975][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918219:000853086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918219:000853191][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918229:000854289][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918229:000854379][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918239:000855494][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918239:000855586][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918249:000856700][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918249:000856796][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918259:000858903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918259:000858998][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918269:000860108][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918269:000860199][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918279:000861314][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918279:000861410][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918289:000863526][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918289:000863615][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918299:000865722][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918299:000865815][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918309:000866925][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918309:000867018][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918319:000868130][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918319:000868216][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918329:000870333][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918329:000870422][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918339:000871539][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918339:000871634][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918349:000872743][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918349:000872833][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918359:000873947][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918359:000874037][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918369:000876151][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918369:000876242][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918379:000877357][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918379:000877451][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918389:000878561][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918389:000878660][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918399:000880764][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918399:000880865][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918409:000882973][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918409:000883082][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918419:000884174][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918419:000884290][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918429:000885379][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918429:000885477][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918439:000887582][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918439:000887674][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918449:000888787][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918449:000888880][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918459:000889994][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918459:000890090][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918469:000891196][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918469:000891290][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918479:000893399][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918479:000893493][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918489:000894606][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918489:000894705][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918499:000895807][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918499:000895897][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918509:000898013][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918509:000898111][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918519:000899217][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918519:000899315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918529:000900420][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918529:000900509][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918539:000901625][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918539:000901716][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918549:000903832][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918549:000903931][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918559:000905033][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918559:000905127][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918569:000906238][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918569:000906345][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918579:000907444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918579:000907537][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918589:000909646][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918589:000909736][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918599:000910852][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918599:000910945][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918609:000912056][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918609:000912148][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918619:000914259][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918619:000914356][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918629:000915464][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918629:000915555][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918639:000916670][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918639:000916782][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918649:000917871][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918649:000917962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918659:000920078][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918659:000920170][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918669:000921281][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918669:000921373][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918679:000922487][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918679:000922580][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918689:000924699][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918689:000924793][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918699:000926895][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918699:000926988][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918709:000928105][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918709:000928213][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918719:000929304][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918719:000929402][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918729:000931510][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918729:000931617][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918739:000932711][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918739:000932801][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918749:000933918][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918749:000934014][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918759:000935122][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918759:000935224][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918769:000937325][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918769:000937415][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918779:000938529][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918779:000938621][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918789:000939736][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918789:000939859][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918799:000941938][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918799:000942036][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918809:000944144][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918809:000944239][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918819:000945347][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918819:000945441][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918829:000946551][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918829:000946642][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918839:000948756][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918839:000948850][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918849:000949962][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918849:000950062][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918859:000951165][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918859:000951255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918869:000952370][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918869:000952464][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918879:000954574][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918879:000954675][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918889:000955777][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918889:000955870][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918899:000956981][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918899:000957071][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918909:000959187][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918909:000959295][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918919:000960389][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918919:000960477][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918929:000961593][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918929:000961679][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918939:000962799][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918939:000962895][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918949:000965001][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918949:000965089][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918959:000966208][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918959:000966300][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918969:000967412][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918969:000967503][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918979:000968618][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918979:000968705][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918989:000970821][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918989:000970928][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104918999:000972025][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104918999:000972119][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919009:000973233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919009:000973362][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919019:000975435][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919019:000975538][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919029:000976640][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919029:000976739][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919039:000977841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919039:000977931][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919049:000979047][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919049:000979142][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919059:000981251][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919059:000981345][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919069:000982455][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919069:000982549][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919079:000983659][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919079:000983750][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919089:000985866][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919089:000985977][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919099:000988067][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919099:000988153][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919109:000989271][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919109:000989359][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919119:000990479][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919119:000990573][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919129:000992680][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919129:000992768][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919139:000993886][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919139:000993975][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919149:000995091][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919149:000995189][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919159:000996293][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919159:000996393][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919169:000998498][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919169:000998587][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919179:000999703][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919179:000999795][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919190:000000906][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919190:000000994][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919200:000003112][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919200:000003203][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919210:000004317][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919210:000004414][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919220:000005520][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919220:000005610][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919230:000006723][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919230:000006841][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919240:000008929][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919240:000009018][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919250:000010133][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919250:000010225][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919260:000011337][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919260:000011427][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919270:000012551][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919270:000012685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919280:000014746][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919280:000014837][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919290:000015956][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919290:000016058][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919300:000017157][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919300:000017258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919310:000019364][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919310:000019486][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919320:000020565][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919320:000020663][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919330:000021771][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919330:000021874][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919340:000022971][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919340:000023061][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919350:000025177][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919350:000025273][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919360:000026383][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919360:000026480][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919370:000027587][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919370:000027681][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919380:000029799][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919380:000029912][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919390:000031997][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919390:000032100][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919400:000033199][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919400:000033290][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919410:000034403][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919410:000034498][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919420:000036608][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919420:000036711][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919430:000037811][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919430:000037900][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919440:000039017][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919440:000039108][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919450:000040223][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919450:000040324][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919460:000042424][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919460:000042514][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919470:000043628][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919470:000043721][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919480:000044833][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919480:000044928][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919490:000047037][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919490:000047141][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919500:000049242][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919500:000049332][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919510:000050445][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919510:000050537][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919520:000051651][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919520:000051744][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919530:000053856][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919530:000053952][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919540:000055059][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919540:000055154][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919550:000056263][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919550:000056352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919560:000057467][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919560:000057557][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919570:000059673][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919570:000059771][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919580:000060875][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919580:000060965][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919590:000062082][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919590:000062181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919600:000064284][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919600:000064395][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919610:000065495][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919610:000065607][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919620:000066694][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919620:000066791][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919630:000067900][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919630:000067998][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919640:000070102][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919640:000070193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919650:000071308][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919650:000071405][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919660:000072512][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919660:000072609][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919670:000073716][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919670:000073809][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919680:000075921][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919680:000076018][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919690:000077126][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919690:000077227][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919700:000078329][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919700:000078420][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919710:000080532][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919710:000080627][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919720:000081738][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919720:000081832][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919730:000082941][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919730:000083033][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919740:000084146][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919740:000084237][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919750:000086352][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919750:000086469][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919760:000087554][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919760:000087643][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919770:000088759][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919770:000088856][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919780:000090971][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919780:000091060][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919790:000093165][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919790:000093251][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919800:000094370][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919800:000094458][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919810:000095576][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919810:000095671][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919820:000097778][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919820:000097865][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919830:000098984][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919830:000099075][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919840:000100188][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919840:000100276][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919850:000101393][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919850:000101483][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919860:000103595][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919860:000103685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919870:000104801][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919870:000104894][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919880:000106005][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919880:000106090][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919890:000108212][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919890:000108317][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919900:000110415][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919900:000110509][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919910:000111617][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919910:000111701][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919920:000112826][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919920:000112939][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919930:000115030][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919930:000115133][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919940:000116232][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919940:000116321][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919950:000117438][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919950:000117534][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919960:000118643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919960:000118739][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919970:000120844][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919970:000120961][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919980:000122050][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919980:000122142][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104919990:000123255][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104919990:000123354][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920000:000125457][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920000:000125555][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920010:000126663][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920010:000126761][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920020:000127868][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920020:000127968][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920030:000129070][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920030:000129158][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920040:000131275][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920040:000131365][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920050:000132482][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920050:000132583][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920060:000133683][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920060:000133772][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920070:000134888][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920070:000134978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920080:000137093][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920080:000137186][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920090:000138297][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920090:000138389][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920100:000139501][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920100:000139598][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920110:000141708][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920110:000141820][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920120:000142909][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920120:000143012][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920130:000144116][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920130:000144214][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920140:000145319][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920140:000145413][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920150:000147523][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920150:000147612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920160:000148726][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920160:000148817][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920170:000149933][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920170:000150028][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920180:000152135][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920180:000152234][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920190:000154341][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920190:000154451][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920200:000155544][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920200:000155636][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920210:000156749][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920210:000156842][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920220:000158958][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920220:000159076][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920230:000160160][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920230:000160259][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920240:000161362][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920240:000161451][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920250:000162567][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920250:000162663][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920260:000164772][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920260:000164865][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920270:000165977][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920270:000166077][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920280:000167180][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920280:000167273][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920290:000169385][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920290:000169490][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920300:000171588][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920300:000171677][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920310:000172791][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920310:000172881][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920320:000173998][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920320:000174090][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920330:000176200][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920330:000176289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920340:000177405][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920340:000177510][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920350:000178613][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920350:000178713][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920360:000179813][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920360:000179900][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920370:000182019][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920370:000182113][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920380:000183222][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920380:000183314][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920390:000184427][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920390:000184515][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920400:000186631][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920400:000186731][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920410:000187837][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920410:000187933][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920420:000189039][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920420:000189130][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920430:000190245][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920430:000190336][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920440:000192448][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920440:000192541][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920450:000193653][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920450:000193751][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920460:000194856][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920460:000194948][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920470:000196070][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920470:000196161][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920480:000198266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920480:000198352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920490:000199471][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920490:000199567][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920500:000200675][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920500:000200767][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920510:000202879][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920510:000202975][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920520:000204089][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920520:000204202][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920530:000205291][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920530:000205395][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920540:000206491][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920540:000206579][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920550:000208697][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920550:000208789][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920560:000209902][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920560:000210013][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920570:000211105][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920570:000211202][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920580:000213309][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920580:000213407][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920590:000215516][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920590:000215617][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920600:000216718][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920600:000216808][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920610:000217923][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920610:000218013][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920620:000220127][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920620:000220218][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920630:000221331][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920630:000221423][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920640:000222536][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920640:000222630][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920650:000223743][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920650:000223843][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920660:000225944][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920660:000226037][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920670:000227148][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920670:000227243][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920680:000228353][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920680:000228444][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920690:000230556][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920690:000230650][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920700:000231760][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920700:000231848][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920710:000232966][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920710:000233075][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920720:000234169][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920720:000234257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920730:000236374][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920730:000236459][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920740:000237579][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920740:000237669][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920750:000238782][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920750:000238872][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920760:000239987][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920760:000240073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920770:000242193][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920770:000242282][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920780:000243397][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920780:000243501][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920790:000244603][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920790:000244702][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920800:000246805][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920800:000246900][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920810:000248008][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920810:000248093][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920820:000249219][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920820:000249327][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920830:000250420][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920830:000250515][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920840:000252623][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920840:000252722][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920850:000253829][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920850:000253922][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920860:000255033][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920860:000255128][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920870:000257245][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920870:000257345][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920880:000259441][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920880:000259534][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920890:000260648][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920890:000260749][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920900:000261848][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920900:000261940][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920910:000264054][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920910:000264145][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920920:000265258][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920920:000265351][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920930:000266462][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920930:000266569][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920940:000267668][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920940:000267762][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920950:000269873][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920950:000269970][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920960:000271074][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920960:000271162][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920970:000272279][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920970:000272371][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920980:000274484][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920980:000274585][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104920990:000276687][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104920990:000276772][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921000:000277892][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921000:000277982][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921010:000279098][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921010:000279202][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921020:000281299][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921020:000281387][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921030:000282506][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921030:000282598][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921040:000283710][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921040:000283807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921050:000284913][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921050:000285004][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921060:000287119][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921060:000287215][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921070:000288323][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921070:000288415][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921080:000289526][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921080:000289614][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921090:000291731][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921090:000291833][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921100:000292936][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921100:000293027][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921110:000294139][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921110:000294227][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921120:000295349][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921120:000295460][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921130:000297551][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921130:000297653][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921140:000298753][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921140:000298845][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921150:000299959][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921150:000300075][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921160:000301162][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921160:000301259][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921170:000303367][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921170:000303465][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921180:000304571][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921180:000304667][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921190:000305776][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921190:000305874][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921200:000307978][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921200:000308075][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921210:000309183][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921210:000309274][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921220:000310390][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921220:000310488][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921230:000311592][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921230:000311687][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921240:000313797][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921240:000313903][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921250:000315002][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921250:000315095][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921260:000316205][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921260:000316292][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921270:000318409][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921270:000318510][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921280:000320616][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921280:000320715][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921290:000321818][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921290:000321907][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921300:000323023][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921300:000323129][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921310:000325227][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921310:000325323][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921320:000326431][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921320:000326519][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921330:000327635][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921330:000327724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921340:000328841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921340:000328931][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921350:000331043][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921350:000331136][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921360:000332248][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921360:000332338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921370:000333453][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921370:000333559][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921380:000335657][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921380:000335748][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921390:000336863][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921390:000336961][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921400:000338066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921400:000338159][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921410:000339270][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921410:000339360][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921420:000341479][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921420:000341590][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921430:000342680][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921430:000342781][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921440:000343883][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921440:000343972][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921450:000345089][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921450:000345184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921460:000347294][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921460:000347395][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921470:000348498][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921470:000348595][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921480:000349700][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921480:000349792][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921490:000351907][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921490:000352014][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921500:000353108][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921500:000353198][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921510:000354313][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921510:000354403][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921520:000355519][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921520:000355633][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921530:000357723][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921530:000357816][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921540:000358927][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921540:000359020][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921550:000360132][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921550:000360230][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921560:000361340][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921560:000361429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921570:000363539][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921570:000363631][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921580:000364744][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921580:000364836][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921590:000365948][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921590:000366036][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921600:000368153][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921600:000368252][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921610:000369358][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921610:000369455][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921620:000370560][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921620:000370648][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921630:000371765][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921630:000371855][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921640:000373971][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921640:000374064][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921650:000375175][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921650:000375268][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921660:000376379][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921660:000376469][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921670:000378583][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921670:000378700][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921680:000380787][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921680:000380875][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921690:000381994][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921690:000382092][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921700:000383196][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921700:000383289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921710:000385400][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921710:000385489][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921720:000386610][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921720:000386722][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921730:000387810][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921730:000387908][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921740:000389013][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921740:000389128][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921750:000391218][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921750:000391312][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921760:000392422][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921760:000392519][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921770:000393626][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921770:000393721][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921780:000395831][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921780:000395924][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921790:000397036][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921790:000397132][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921800:000398240][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921800:000398332][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921810:000399443][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921810:000399533][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921820:000401650][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921820:000401750][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921830:000402852][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921830:000402943][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921840:000404058][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921840:000404155][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921850:000405261][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921850:000405354][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921860:000407465][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921860:000407552][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921870:000408669][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921870:000408759][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921880:000409876][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921880:000409976][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921890:000412079][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921890:000412190][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921900:000413283][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921900:000413374][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921910:000414487][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921910:000414582][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921920:000415691][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921920:000415784][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921930:000417896][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921930:000417985][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921940:000419100][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921940:000419193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921950:000420306][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921950:000420396][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921960:000422517][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921960:000422612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921970:000424713][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921970:000424812][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921980:000425917][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921980:000426012][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104921990:000427123][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104921990:000427218][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922000:000429326][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922000:000429434][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922010:000430530][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922010:000430615][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922020:000431739][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922020:000431848][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922030:000432940][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922030:000433037][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922040:000435144][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922040:000435244][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922050:000436347][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922050:000436439][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922060:000437555][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922060:000437660][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922070:000439757][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922070:000439860][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922080:000441961][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922080:000442055][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922090:000443164][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922090:000443264][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922100:000444368][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922100:000444455][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922110:000446573][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922110:000446678][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922120:000447779][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922120:000447878][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922130:000448981][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922130:000449069][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922140:000450186][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922140:000450277][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922150:000452390][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922150:000452483][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922160:000453595][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922160:000453687][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922170:000454799][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922170:000454891][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922180:000457005][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922180:000457112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922190:000458208][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922190:000458300][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922200:000459413][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922200:000459513][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922210:000460616][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922210:000460711][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922220:000462820][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922220:000462910][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922230:000464026][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922230:000464116][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922240:000465229][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922240:000465321][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922250:000466434][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922250:000466524][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922260:000468638][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922260:000468744][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922270:000469842][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922270:000469933][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922280:000471047][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922280:000471139][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922290:000473252][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922290:000473353][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922300:000474456][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922300:000474544][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922310:000475659][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922310:000475745][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922320:000476870][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922320:000476982][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922330:000479069][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922330:000479189][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922340:000480274][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922340:000480367][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922350:000481477][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922350:000481565][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922360:000483692][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922360:000483790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922370:000485886][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922370:000485981][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922380:000487091][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922380:000487188][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922390:000488295][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922390:000488388][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922400:000490500][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922400:000490591][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922410:000491704][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922410:000491795][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922420:000492909][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922420:000493008][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922430:000494112][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922430:000494207][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922440:000496317][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922440:000496412][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922450:000497522][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922450:000497615][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922460:000498725][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922460:000498812][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922470:000500929][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922470:000501021][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922480:000503135][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922480:000503248][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922490:000504339][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922490:000504427][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922500:000505542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922500:000505632][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922510:000507748][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922510:000507842][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922520:000508951][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922520:000509043][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922530:000510156][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922530:000510252][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922540:000511360][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922540:000511452][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922550:000513564][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922550:000513653][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922560:000514769][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922560:000514862][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922570:000515973][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922570:000516067][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922580:000518177][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922580:000518272][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922590:000519384][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922590:000519482][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922600:000520588][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922600:000520682][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922610:000521791][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922610:000521880][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922620:000524001][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922620:000524114][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922630:000525200][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922630:000525297][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922640:000526405][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922640:000526503][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922650:000527609][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922650:000527704][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922660:000529815][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922660:000529920][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922670:000531017][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922670:000531114][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922680:000532221][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922680:000532312][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922690:000534425][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922690:000534527][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922700:000535629][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922700:000535736][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922710:000536834][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922710:000536926][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922720:000538041][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922720:000538138][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922730:000540243][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922730:000540331][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922740:000541448][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922740:000541543][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922750:000542654][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922750:000542752][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922760:000544855][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922760:000544958][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922770:000547060][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922770:000547149][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922780:000548266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922780:000548367][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922790:000549469][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922790:000549560][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922800:000551672][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922800:000551762][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922810:000552878][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922810:000552970][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922820:000554081][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922820:000554178][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922830:000555285][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922830:000555375][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922840:000557491][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922840:000557582][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922850:000558694][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922850:000558797][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922860:000559900][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922860:000559990][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922870:000562104][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922870:000562200][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922880:000563307][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922880:000563395][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922890:000564512][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922890:000564606][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922900:000565718][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922900:000565818][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922910:000567920][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922910:000568009][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922920:000569131][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922920:000569251][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922930:000570331][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922930:000570428][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922940:000571535][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922940:000571630][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922950:000573739][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922950:000573834][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922960:000574944][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922960:000575044][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922970:000576148][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922970:000576241][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922980:000578351][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922980:000578449][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104922990:000579557][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104922990:000579665][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923000:000580760][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923000:000580854][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923010:000581965][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923010:000582054][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923020:000584170][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923020:000584269][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923030:000585373][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923030:000585468][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923040:000586577][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923040:000586672][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923050:000587790][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923050:000587886][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923060:000589985][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923060:000590078][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923070:000591189][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923070:000591293][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923080:000592396][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923080:000592496][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923090:000594598][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923090:000594697][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923100:000595804][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923100:000595892][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923110:000597008][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923110:000597101][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923120:000598212][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923120:000598303][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923130:000600416][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923130:000600506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923140:000601621][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923140:000601712][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923150:000602824][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923150:000602914][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923160:000605030][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923160:000605129][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923170:000607234][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923170:000607334][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923180:000608437][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923180:000608526][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923190:000609643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923190:000609738][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923200:000611848][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923200:000611941][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923210:000613049][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923210:000613135][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923220:000614255][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923220:000614345][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923230:000615464][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923230:000615579][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923240:000617665][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923240:000617765][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923250:000618869][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923250:000618959][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923260:000620075][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923260:000620178][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923270:000622278][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923270:000622378][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923280:000623483][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923280:000623577][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923290:000624686][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923290:000624795][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923300:000625891][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923300:000625985][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923310:000628094][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923310:000628184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923320:000629299][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923320:000629395][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923330:000630502][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923330:000630589][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923340:000631707][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923340:000631800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923350:000633912][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923350:000634012][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923360:000635116][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923360:000635205][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923370:000636320][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923370:000636409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923380:000638527][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923380:000638634][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923390:000639729][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923390:000639820][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923400:000640933][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923400:000641023][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923410:000642138][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923410:000642233][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923420:000644343][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923420:000644441][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923430:000645545][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923430:000645635][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923440:000646751][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923440:000646857][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923450:000648964][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923450:000649053][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923460:000651159][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923460:000651252][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923470:000652364][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923470:000652456][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923480:000653567][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923480:000653656][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923490:000655772][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923490:000655865][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923500:000656977][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923500:000657073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923510:000658180][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923510:000658265][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923520:000659385][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923520:000659477][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923530:000661594][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923530:000661705][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923540:000662795][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923540:000662893][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923550:000664000][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923550:000664095][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923560:000666204][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923560:000666311][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923570:000668408][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923570:000668500][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923580:000669612][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923580:000669705][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923590:000670817][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923590:000670909][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923600:000673020][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923600:000673111][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923610:000674226][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923610:000674314][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923620:000675430][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923620:000675527][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923630:000676633][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923630:000676722][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923640:000678839][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923640:000678935][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923650:000680042][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923650:000680133][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923660:000681245][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923660:000681353][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923670:000683450][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923670:000683548][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923680:000684657][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923680:000684765][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923690:000685858][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923690:000685947][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923700:000687063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923700:000687150][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923710:000689267][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923710:000689358][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923720:000690471][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923720:000690566][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923730:000691676][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923730:000691763][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923740:000692881][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923740:000692974][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923750:000695083][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923750:000695172][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923760:000696289][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923760:000696381][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923770:000697494][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923770:000697586][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923780:000699697][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923780:000699794][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923790:000700903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923790:000700997][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923800:000702107][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923800:000702204][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923810:000703309][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923810:000703412][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923820:000705515][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923820:000705602][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923830:000706724][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923830:000706838][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923840:000707924][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923840:000708023][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923850:000710128][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923850:000710229][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923860:000712335][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923860:000712439][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923870:000713536][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923870:000713629][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923880:000714741][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923880:000714853][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923890:000716946][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923890:000717041][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923900:000718150][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923900:000718240][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923910:000719354][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923910:000719442][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923920:000720561][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923920:000720659][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923930:000722763][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923930:000722850][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923940:000723970][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923940:000724064][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923950:000725172][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923950:000725264][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923960:000727375][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923960:000727467][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923970:000728579][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923970:000728667][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923980:000729787][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923980:000729883][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104923990:000730987][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104923990:000731072][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924000:000733193][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924000:000733282][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924010:000734397][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924010:000734487][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924020:000735601][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924020:000735692][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924030:000736806][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924030:000736917][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924040:000739010][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924040:000739098][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924050:000740215][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924050:000740302][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924060:000741419][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924060:000741513][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924070:000743625][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924070:000743725][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924080:000744826][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924080:000744911][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924090:000746034][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924090:000746127][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924100:000747236][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924100:000747325][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924110:000749440][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924110:000749527][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924120:000750645][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924120:000750737][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924130:000751854][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924130:000751964][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924140:000753062][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924140:000753165][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924150:000755257][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924150:000755344][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924160:000756464][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924160:000756560][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924170:000757666][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924170:000757756][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924180:000759872][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924180:000759978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924190:000761076][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924190:000761171][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924200:000762279][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924200:000762372][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924210:000763483][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924210:000763577][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924220:000765689][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924220:000765786][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924230:000766891][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924230:000766978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924240:000768097][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924240:000768192][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924250:000770303][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924250:000770423][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924260:000772506][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924260:000772598][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924270:000773709][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924270:000773801][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924280:000774916][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924280:000775017][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924290:000777119][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924290:000777211][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924300:000778324][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924300:000778414][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924310:000779529][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924310:000779625][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924320:000780732][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924320:000780823][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924330:000782936][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924330:000783026][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924340:000784141][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924340:000784233][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924350:000785344][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924350:000785433][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924360:000787549][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924360:000787644][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924370:000788755][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924370:000788849][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924380:000789957][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924380:000790044][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924390:000791165][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924390:000791265][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924400:000793367][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924400:000793475][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924410:000794570][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924410:000794660][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924420:000795776][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924420:000795867][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924430:000796986][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924430:000797099][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924440:000799185][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924440:000799283][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924450:000800387][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924450:000800481][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924460:000801595][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924460:000801699][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924470:000803796][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924470:000803913][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924480:000805002][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924480:000805097][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924490:000806206][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924490:000806301][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924500:000807409][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924500:000807502][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924510:000809614][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924510:000809706][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924520:000810819][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924520:000810916][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924530:000812023][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924530:000812112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924540:000814235][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924540:000814331][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924550:000816433][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924550:000816533][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924560:000817636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924560:000817729][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924570:000818840][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924570:000818930][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924580:000821046][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924580:000821155][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924590:000822248][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924590:000822338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924600:000823453][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924600:000823543][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924610:000824657][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924610:000824750][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924620:000826862][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924620:000826970][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924630:000828066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924630:000828158][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924640:000829270][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924640:000829363][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924650:000831474][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924650:000831570][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924660:000833679][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924660:000833773][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924670:000834885][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924670:000834979][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924680:000836087][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924680:000836176][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924690:000838293][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924690:000838389][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924700:000839498][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924700:000839595][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924710:000840702][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924710:000840797][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924720:000841906][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924720:000841998][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924730:000844116][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924730:000844231][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924740:000845316][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924740:000845413][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924750:000846519][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924750:000846614][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924760:000848724][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924760:000848824][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924770:000849927][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924770:000850022][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924780:000851132][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924780:000851227][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924790:000852335][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924790:000852432][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924800:000854540][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924800:000854630][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924810:000855745][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924810:000855839][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924820:000856950][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924820:000857048][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924830:000858153][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924830:000858242][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924840:000860357][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924840:000860464][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924850:000861562][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924850:000861659][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924860:000862765][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924860:000862854][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924870:000864970][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924870:000865067][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924880:000866176][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924880:000866276][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924890:000867379][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924890:000867472][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924900:000868585][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924900:000868675][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924910:000870788][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924910:000870882][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924920:000871993][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924920:000872083][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924930:000873197][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924930:000873292][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924940:000875409][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924940:000875502][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924950:000877605][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924950:000877699][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924960:000878809][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924960:000878898][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924970:000880013][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924970:000880108][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924980:000882218][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924980:000882304][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104924990:000883424][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104924990:000883530][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925000:000884627][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925000:000884718][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925010:000885832][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925010:000885925][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925020:000888036][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925020:000888126][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925030:000889244][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925030:000889352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925040:000890444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925040:000890529][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925050:000892649][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925050:000892750][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925060:000894857][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925060:000894971][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925070:000896058][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925070:000896150][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925080:000897263][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925080:000897358][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925090:000899467][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925090:000899563][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925100:000900671][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925100:000900762][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925110:000901878][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925110:000901974][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925120:000903081][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925120:000903177][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925130:000905282][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925130:000905367][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925140:000906488][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925140:000906582][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925150:000907692][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925150:000907786][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925160:000909895][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925160:000909991][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925170:000911101][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925170:000911190][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925180:000912306][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925180:000912404][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925190:000913509][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925190:000913599][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925200:000915713][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925200:000915802][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925210:000916918][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925210:000917025][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925220:000918123][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925220:000918214][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925230:000919329][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925230:000919415][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925240:000921531][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925240:000921620][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925250:000922735][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925250:000922822][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925260:000923940][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925260:000924033][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925270:000926144][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925270:000926244][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925280:000927348][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925280:000927436][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925290:000928554][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925290:000928648][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925300:000929758][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925300:000929852][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925310:000931961][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925310:000932049][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925320:000933165][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925320:000933255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925330:000934375][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925330:000934484][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925340:000936575][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925340:000936678][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925350:000938779][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925350:000938875][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925360:000939983][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925360:000940091][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925370:000941188][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925370:000941278][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925380:000943392][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925380:000943495][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925390:000944597][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925390:000944691][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925400:000945800][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925400:000945892][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925410:000947005][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925410:000947094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925420:000949211][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925420:000949308][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925430:000950413][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925430:000950516][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925440:000951618][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925440:000951715][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925450:000953823][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925450:000953919][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925460:000955025][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925460:000955112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925470:000956231][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925470:000956322][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925480:000957437][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925480:000957534][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925490:000959639][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925490:000959724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925500:000960845][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925500:000960934][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925510:000962048][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925510:000962142][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925520:000963253][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925520:000963343][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925530:000965456][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925530:000965545][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925540:000966662][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925540:000966754][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925550:000967865][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925550:000967953][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925560:000970072][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925560:000970174][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925570:000971274][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925570:000971367][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925580:000972478][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925580:000972580][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925590:000973684][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925590:000973777][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925600:000975887][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925600:000975979][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925610:000977092][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925610:000977181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925620:000978295][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925620:000978382][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925630:000980513][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925630:000980622][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925640:000982706][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925640:000982798][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925650:000983910][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925650:000984007][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925660:000985115][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925660:000985215][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925670:000987318][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925670:000987420][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925680:000988523][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925680:000988622][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925690:000989728][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925690:000989822][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925700:000990931][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925700:000991026][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925710:000993135][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925710:000993230][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925720:000994340][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925720:000994438][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925730:000995544][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925730:000995632][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925740:000997749][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925740:000997851][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925750:000999953][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925751:000000054][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925761:000001156][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925761:000001240][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925771:000002361][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925771:000002449][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925781:000004568][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925781:000004665][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925791:000005769][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925791:000005856][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925801:000006974][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925801:000007076][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925811:000008179][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925811:000008269][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925821:000010384][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925821:000010479][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925831:000011587][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925831:000011677][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925841:000012792][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925841:000012885][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925851:000014996][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925851:000015090][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925861:000016201][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925861:000016295][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925871:000017404][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925871:000017496][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925881:000018608][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925881:000018698][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925891:000020815][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925891:000020910][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925901:000022018][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925901:000022112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925911:000023222][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925911:000023315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925921:000024427][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925921:000024518][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925931:000026636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925931:000026753][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925941:000027836][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925941:000027934][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925951:000029041][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925951:000029156][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925961:000031244][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925961:000031348][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925971:000032448][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925971:000032542][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925981:000033652][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925981:000033748][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104925991:000034857][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104925991:000034951][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926001:000037061][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926001:000037150][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926011:000038265][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926011:000038355][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926021:000039472][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926021:000039587][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926031:000041683][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926031:000041775][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926041:000043881][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926041:000043975][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926051:000045083][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926051:000045178][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926061:000046288][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926061:000046384][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926071:000048491][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926071:000048585][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926081:000049697][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926081:000049791][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926091:000050900][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926091:000050990][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926101:000052107][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926101:000052204][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926111:000054310][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926111:000054404][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926121:000055513][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926121:000055601][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926131:000056716][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926131:000056807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926141:000058923][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926141:000059027][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926151:000061126][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926151:000061215][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926161:000062331][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926161:000062422][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926171:000063535][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926171:000063641][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926181:000065739][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926181:000065832][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926191:000066947][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926191:000067046][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926201:000068148][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926201:000068242][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926211:000069353][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926211:000069442][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926221:000071557][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926221:000071653][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926231:000072765][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926231:000072874][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926241:000073965][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926241:000074061][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926251:000076170][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926251:000076278][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926261:000077376][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926261:000077477][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926271:000078580][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926271:000078675][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926281:000079783][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926281:000079880][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926291:000081988][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926291:000082085][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926301:000083192][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926301:000083286][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926311:000084397][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926311:000084494][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926321:000085601][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926321:000085699][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926331:000087803][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926331:000087892][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926341:000089009][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926341:000089104][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926351:000090213][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926351:000090308][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926361:000092417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926361:000092513][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926371:000093622][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926371:000093718][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926381:000094826][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926381:000094921][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926391:000096029][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926391:000096133][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926401:000098235][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926401:000098325][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926411:000099440][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926411:000099536][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926421:000100643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926421:000100735][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926431:000102848][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926431:000102946][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926441:000105053][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926441:000105144][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926451:000106257][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926451:000106348][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926461:000107461][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926461:000107554][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926471:000109667][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926471:000109783][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926481:000110869][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926481:000110957][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926491:000112075][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926491:000112168][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926501:000113279][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926501:000113376][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926511:000115482][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926511:000115571][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926521:000116687][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926521:000116778][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926531:000117908][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926531:000118070][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926541:000119996][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926541:000120154][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926551:000121199][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926551:000121340][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926561:000122405][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926561:000122548][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926571:000123609][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926571:000123756][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926581:000125813][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926581:000125951][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926591:000127017][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926591:000127155][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926601:000128222][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926601:000128365][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926611:000130424][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926611:000130585][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926621:000131629][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926621:000131768][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926631:000132834][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926631:000132973][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926641:000134038][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926641:000134181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926651:000136242][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926651:000136391][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926661:000137448][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926661:000137593][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926671:000138652][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926671:000138796][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926681:000140857][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926681:000140995][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926691:000143059][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926691:000143205][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926701:000144263][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926701:000144405][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926711:000145468][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926711:000145610][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926721:000147673][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926721:000147828][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926731:000148876][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926731:000149017][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926741:000150081][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926741:000150222][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926751:000151286][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926751:000151427][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926761:000153490][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926761:000153646][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926771:000154694][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926771:000154836][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926781:000155899][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926781:000156041][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926791:000158100][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926791:000158236][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926801:000160299][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926801:000160418][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926811:000161504][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926811:000161624][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926821:000162707][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926821:000162822][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926831:000164912][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926831:000165023][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926841:000166117][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926841:000166237][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926851:000167318][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926851:000167421][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926861:000168523][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926861:000168628][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926871:000170726][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926871:000170821][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926881:000171931][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926881:000172029][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926891:000173135][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926891:000173231][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926901:000175338][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926901:000175436][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926911:000176542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926911:000176636][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926921:000177748][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926921:000177841][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926931:000178952][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926931:000179040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926941:000181155][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926941:000181244][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926951:000182361][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926951:000182462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926961:000183563][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926961:000183654][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926971:000184769][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926971:000184854][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926981:000186973][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926981:000187087][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104926991:000188177][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104926991:000188272][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927001:000189390][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927001:000189477][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927011:000191586][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927011:000191682][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927021:000192788][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927021:000192874][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927031:000193995][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927031:000194084][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927041:000195198][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927041:000195286][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927051:000197401][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927051:000197485][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927061:000198606][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927061:000198694][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927071:000199814][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927071:000199916][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927081:000202017][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927081:000202120][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927091:000204221][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927091:000204311][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927101:000205426][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927101:000205520][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927111:000206629][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927111:000206727][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927121:000208834][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927121:000208920][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927131:000210038][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927131:000210149][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927141:000211247][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927141:000211360][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927151:000212448][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927151:000212550][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927161:000214650][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927161:000214744][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927171:000215855][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927171:000215951][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927181:000217061][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927181:000217157][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927191:000219263][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927191:000219362][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927201:000220468][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927201:000220559][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927211:000221672][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927211:000221769][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927221:000222879][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927221:000222973][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927231:000225081][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927231:000225171][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927241:000226286][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927241:000226378][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927251:000227490][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927251:000227585][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927261:000228693][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927261:000228782][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927271:000230897][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927271:000230983][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927281:000232104][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927281:000232197][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927291:000233306][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927291:000233396][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927301:000235511][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927301:000235614][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927311:000236716][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927311:000236806][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927321:000237918][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927321:000238004][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927331:000239125][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927331:000239217][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927341:000241329][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927341:000241418][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927351:000242532][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927351:000242632][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927361:000243738][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927361:000243827][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927371:000245944][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927371:000246035][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927381:000248146][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927381:000248232][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927391:000249352][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927391:000249447][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927401:000250555][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927401:000250642][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927411:000252759][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927411:000252846][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927421:000253963][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927421:000254053][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927431:000255168][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927431:000255263][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927441:000256378][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927441:000256493][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927451:000258578][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927451:000258676][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927461:000259783][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927461:000259884][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927471:000260985][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927471:000261078][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927481:000263191][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927481:000263293][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927491:000265395][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927491:000265498][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927501:000266597][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927501:000266704][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927511:000267802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927511:000267892][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927521:000270008][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927521:000270105][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927531:000271212][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927531:000271301][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927541:000272416][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927541:000272512][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927551:000273621][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927551:000273715][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927561:000275823][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927561:000275912][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927571:000277028][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927571:000277138][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927581:000278235][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927581:000278336][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927591:000280436][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927591:000280533][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927601:000281642][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927601:000281739][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927611:000282847][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927611:000282944][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927621:000284048][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927621:000284138][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927631:000286255][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927631:000286352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927641:000287459][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927641:000287551][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927651:000288663][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927651:000288754][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927661:000289868][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927661:000289962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927671:000292071][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927671:000292162][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927681:000293276][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927681:000293365][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927691:000294482][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927691:000294580][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927701:000296684][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927701:000296777][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927711:000297888][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927711:000297977][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927721:000299095][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927721:000299207][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927731:000300298][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927731:000300395][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927741:000302508][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927741:000302623][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927751:000303709][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927751:000303812][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927761:000304911][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927761:000305003][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927771:000307119][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927771:000307217][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927781:000309321][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927781:000309421][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927791:000310525][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927791:000310620][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927801:000311728][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927801:000311817][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927811:000313937][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927811:000314046][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927821:000315138][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927821:000315234][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927831:000316342][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927831:000316434][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927841:000317546][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927841:000317643][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927851:000319750][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927851:000319848][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927861:000320952][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927861:000321043][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927871:000322159][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927871:000322253][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927881:000324362][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927881:000324468][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927891:000326567][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927891:000326889][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927901:000327772][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927901:000327869][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927911:000328976][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927911:000329070][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927921:000331189][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927921:000331277][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927931:000332385][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927931:000332481][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927941:000333590][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927941:000333698][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927951:000334793][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927951:000334883][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927961:000336998][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927961:000337091][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927971:000338202][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927971:000338296][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927981:000339407][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927981:000339497][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104927991:000341611][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104927991:000341719][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928001:000342814][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928001:000342904][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928011:000344018][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928011:000344117][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928021:000345224][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928021:000345317][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928031:000347428][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928031:000347522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928041:000348638][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928041:000348750][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928051:000349840][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928051:000349944][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928061:000351043][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928061:000351147][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928071:000353245][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928071:000353341][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928081:000354451][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928081:000354551][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928091:000355656][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928091:000355773][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928101:000357859][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928101:000357961][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928111:000359063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928111:000359159][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928121:000360269][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928121:000360365][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928131:000361472][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928131:000361566][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928141:000363676][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928141:000363772][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928151:000364881][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928151:000364974][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928161:000366085][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928161:000366192][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928171:000368290][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928171:000368390][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928181:000370494][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928181:000370591][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928191:000371698][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928191:000371789][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928201:000372902][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928201:000372996][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928211:000375109][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928211:000375220][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928221:000376310][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928221:000376399][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928231:000377515][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928231:000377608][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928241:000378720][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928241:000378812][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928251:000380924][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928251:000381020][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928261:000382129][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928261:000382226][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928271:000383335][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928271:000383435][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928281:000385537][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928281:000385635][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928291:000386743][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928291:000386845][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928301:000387946][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928301:000388037][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928311:000389150][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928311:000389257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928321:000391355][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928321:000391450][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928331:000392560][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928331:000392664][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928341:000393767][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928341:000393883][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928351:000394969][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928351:000395067][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928361:000397171][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928361:000397270][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928371:000398376][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928371:000398475][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928381:000399581][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928381:000399684][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928391:000401786][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928391:000401897][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928401:000402989][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928401:000403081][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928411:000404193][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928411:000404294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928421:000405399][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928421:000405500][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928431:000407602][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928431:000407694][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928441:000408807][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928441:000408904][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928451:000410011][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928451:000410110][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928461:000412215][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928461:000412309][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928471:000414419][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928471:000414516][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928481:000415626][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928481:000415724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928491:000416827][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928491:000416923][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928501:000419032][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928501:000419131][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928511:000420237][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928511:000420332][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928521:000421441][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928521:000421532][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928531:000422646][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928531:000422765][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928541:000424850][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928541:000424943][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928551:000426053][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928551:000426143][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928561:000427258][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928561:000427353][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928571:000429463][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928571:000429565][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928581:000431666][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928581:000431757][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928591:000432873][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928591:000432975][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928601:000434076][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928601:000434167][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928611:000436281][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928611:000436378][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928621:000437484][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928621:000437579][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928631:000438689][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928631:000438784][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928641:000439898][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928641:000440012][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928651:000442099][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928651:000442201][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928661:000443303][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928661:000443406][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928671:000444507][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928671:000444603][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928681:000446712][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928681:000446835][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928691:000448916][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928691:000449017][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928701:000450119][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928701:000450212][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928711:000451324][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928711:000451426][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928721:000453529][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928721:000453628][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928731:000454733][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928731:000454824][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928741:000455937][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928741:000456032][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928751:000457141][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928751:000457239][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928761:000459345][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928761:000459438][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928771:000460550][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928771:000460645][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928781:000461757][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928781:000461855][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928791:000463959][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928791:000464067][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928801:000465163][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928801:000465258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928811:000466367][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928811:000466462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928821:000467571][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928821:000467660][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928831:000469776][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928831:000469881][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928841:000470980][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928841:000471073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928851:000472183][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928851:000472273][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928861:000474391][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928861:000474486][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928871:000476594][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928871:000476691][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928881:000477796][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928881:000477884][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928891:000479003][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928891:000479099][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928901:000481206][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928901:000481315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928911:000482411][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928911:000482506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928921:000483614][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928921:000483706][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928931:000484820][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928931:000484912][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928941:000487029][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928941:000487142][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928951:000488231][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928951:000488333][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928961:000489432][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928961:000489528][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928971:000491636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928971:000491735][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928981:000493842][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928981:000493943][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104928991:000495047][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104928991:000495147][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929001:000496249][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929001:000496338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929011:000498455][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929011:000498551][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929021:000499659][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929021:000499757][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929031:000500862][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929031:000500954][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929041:000502066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929041:000502159][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929051:000504271][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929051:000504381][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929061:000505477][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929061:000505572][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929071:000506679][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929071:000506772][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929081:000508886][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929081:000508985][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929091:000510088][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929091:000510181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929101:000511294][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929101:000511399][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929111:000512497][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929111:000512588][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929121:000514700][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929121:000514800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929131:000515905][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929131:000515998][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929141:000517110][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929141:000517204][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929151:000518313][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929151:000518400][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929161:000520519][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929161:000520612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929171:000521723][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929171:000521814][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929181:000522928][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929181:000523023][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929191:000525133][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929191:000525240][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929201:000526335][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929201:000526427][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929211:000527540][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929211:000527624][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929221:000528746][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929221:000528847][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929231:000530949][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929231:000531038][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929241:000532159][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929241:000532270][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929251:000533360][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929251:000533466][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929261:000535570][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929261:000535674][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929271:000537765][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929271:000537873][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929281:000538973][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929281:000539076][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929291:000540176][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929291:000540272][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929301:000542380][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929301:000542473][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929311:000543585][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929311:000543679][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929321:000544791][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929321:000544891][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929331:000545993][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929331:000546081][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929341:000548199][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929341:000548291][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929351:000549402][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929351:000549497][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929361:000550606][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929361:000550696][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929371:000552809][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929371:000552917][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929381:000554016][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929381:000554112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929391:000555218][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929391:000555307][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929401:000556424][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929401:000556525][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929411:000558628][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929411:000558718][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929421:000559831][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929421:000559919][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929431:000561037][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929431:000561125][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929441:000562242][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929441:000562341][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929451:000564445][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929451:000564537][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929461:000565650][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929461:000565745][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929471:000566855][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929471:000566961][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929481:000569056][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929481:000569167][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929491:000570264][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929491:000570380][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929501:000571465][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929501:000571557][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929511:000572670][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929511:000572759][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929521:000574875][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929521:000574979][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929531:000576082][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929531:000576184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929541:000577289][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929541:000577398][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929551:000579489][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929551:000579588][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929561:000581692][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929561:000581786][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929571:000582895][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929571:000582989][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929581:000584103][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929581:000584202][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929591:000586305][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929591:000586404][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929601:000587509][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929601:000587600][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929611:000588714][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929611:000588805][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929621:000589920][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929621:000590019][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929631:000592122][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929631:000592206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929641:000593327][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929641:000593434][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929651:000594530][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929651:000594619][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929661:000596735][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929661:000596832][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929671:000598940][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929671:000599038][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929681:000600145][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929681:000600240][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929691:000601348][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929691:000601435][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929701:000603553][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929701:000603647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929711:000604757][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929711:000604868][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929721:000605960][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929721:000606049][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929731:000607167][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929731:000607256][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929741:000609370][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929741:000609459][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929751:000610575][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929751:000610659][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929761:000611779][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929761:000611872][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929771:000613983][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929771:000614080][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929781:000615187][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929781:000615275][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929791:000616394][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929791:000616503][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929801:000617596][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929801:000617682][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929811:000619799][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929811:000619883][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929821:000621005][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929821:000621104][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929831:000622210][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929831:000622300][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929841:000623413][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929841:000623497][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929851:000625622][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929851:000625742][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929861:000626825][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929861:000626945][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929871:000628026][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929871:000628117][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929881:000630233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929881:000630341][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929891:000631435][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929891:000631534][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929901:000632639][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929901:000632729][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929911:000633844][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929911:000633937][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929921:000636048][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929921:000636146][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929931:000637251][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929931:000637339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929941:000638456][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929941:000638550][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929951:000640663][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929951:000640760][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929961:000642865][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929961:000642959][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929971:000644069][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929971:000644163][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929981:000645275][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929981:000645373][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104929991:000647478][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104929991:000647567][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930001:000648683][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930001:000648779][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930011:000649887][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930011:000649982][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930021:000651091][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930021:000651179][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930031:000653296][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930031:000653388][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930041:000654500][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930041:000654599][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930051:000655704][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930051:000655792][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930061:000657918][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930061:000658060][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930071:000660114][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930071:000660222][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930081:000661317][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930081:000661437][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930091:000662524][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930091:000662623][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930101:000664727][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930101:000664827][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930111:000665930][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930111:000666019][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930121:000667135][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930121:000667234][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930131:000668340][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930131:000668438][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930141:000670542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930141:000670632][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930151:000671753][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930151:000671872][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930161:000672954][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930161:000673054][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930171:000675158][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930171:000675252][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930181:000676362][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930181:000676462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930191:000677566][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930191:000677663][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930201:000678769][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930201:000678857][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930211:000680975][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930211:000681067][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930221:000682181][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930221:000682277][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930231:000683383][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930231:000683490][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930241:000684588][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930241:000684682][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930251:000686792][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930251:000686889][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930261:000687995][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930261:000688086][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930271:000689201][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930271:000689289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930281:000691405][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930281:000691512][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930291:000692609][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930291:000692701][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930301:000693813][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930301:000693922][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930311:000695018][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930311:000695112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930321:000697221][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930321:000697307][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930331:000698428][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930331:000698521][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930341:000699630][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930341:000699718][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930351:000701840][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930351:000701930][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930361:000704039][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930361:000704140][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930371:000705244][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930371:000705339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930381:000706448][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930381:000706535][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930391:000708654][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930391:000708758][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930401:000709856][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930401:000709941][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930411:000711060][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930411:000711149][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930421:000712267][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930421:000712359][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930431:000714470][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930431:000714563][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930441:000715673][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930441:000715760][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930451:000716883][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930451:000717017][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930461:000719086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930461:000719195][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930471:000721288][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930471:000721378][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930481:000722493][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930481:000722594][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930491:000723697][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930491:000723794][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930501:000725901][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930501:000725989][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930511:000727105][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930511:000727193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930521:000728310][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930521:000728409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930531:000729513][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930531:000729599][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930541:000731718][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930541:000731810][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930551:000732922][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930551:000733011][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930561:000734125][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930561:000734215][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930571:000736331][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930571:000736429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930581:000737536][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930581:000737635][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930591:000738739][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930591:000738826][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930601:000739943][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930601:000740063][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930611:000742149][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930611:000742244][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930621:000743351][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930621:000743436][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930631:000744557][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930631:000744647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930641:000745761][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930641:000745865][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930651:000747965][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930651:000748057][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930661:000749170][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930661:000749258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930671:000750376][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930671:000750490][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930681:000752579][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930681:000752673][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930691:000753782][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930691:000753877][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930701:000754987][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930701:000755075][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930711:000756190][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930711:000756278][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930721:000758396][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930721:000758499][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930731:000759602][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930731:000759703][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930741:000760804][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930741:000760890][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930751:000763021][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930751:000763136][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930761:000765214][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930761:000765312][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930771:000766416][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930771:000766509][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930781:000767623][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930781:000767721][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930791:000769827][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930791:000769924][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930801:000771030][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930801:000771125][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930811:000772235][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930811:000772340][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930821:000773440][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930821:000773557][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930831:000775643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930831:000775734][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930841:000776848][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930841:000776943][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930851:000778052][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930851:000778146][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930861:000780256][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930861:000780361][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930871:000781461][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930871:000781553][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930881:000782666][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930881:000782767][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930891:000783869][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930891:000783956][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930901:000786074][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930901:000786173][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930911:000787278][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930911:000787371][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930921:000788482][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930921:000788572][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930931:000789687][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930931:000789780][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930941:000791891][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930941:000791985][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930951:000793095][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930951:000793185][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930961:000794301][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930961:000794395][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930971:000796504][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930971:000796606][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930981:000797709][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930981:000797805][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104930991:000798915][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104930991:000799017][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931001:000800117][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931001:000800208][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931011:000802320][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931011:000802409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931021:000803526][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931021:000803623][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931031:000804730][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931031:000804824][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931041:000806935][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931041:000807047][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931051:000809143][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931051:000809258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931061:000810345][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931061:000810453][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931071:000811548][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931071:000811638][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931081:000813753][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931081:000813862][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931091:000814958][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931091:000815063][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931101:000816160][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931101:000816257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931111:000817365][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931111:000817461][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931121:000819570][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931121:000819670][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931131:000820774][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931131:000820862][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931141:000821978][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931141:000822071][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931151:000824184][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931151:000824280][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931161:000826386][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931161:000826477][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931171:000827591][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931171:000827682][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931181:000828797][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931181:000828897][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931191:000830999][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931191:000831126][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931201:000832204][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931201:000832305][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931211:000833408][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931211:000833500][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931221:000834612][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931221:000834699][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931231:000836816][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931231:000836906][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931241:000838022][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931241:000838119][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931251:000839225][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931251:000839312][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931261:000841430][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931261:000841552][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931271:000843635][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931271:000843724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931281:000844839][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931281:000844930][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931291:000846044][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931291:000846143][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931301:000848246][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931301:000848332][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931311:000849451][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931311:000849535][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931321:000850656][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931321:000850750][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931331:000851860][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931331:000851953][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931341:000854063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931341:000854154][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931351:000855274][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931351:000855389][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931361:000856475][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931361:000856579][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931371:000858677][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931371:000858770][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931381:000859882][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931381:000859984][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931391:000861087][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931391:000861184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931401:000862289][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931401:000862385][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931411:000864496][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931411:000864606][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931421:000865700][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931421:000865798][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931431:000866903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931431:000866989][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931441:000869110][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931441:000869210][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931451:000871313][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931451:000871407][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931461:000872516][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931461:000872611][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931471:000873721][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931471:000873812][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931481:000875927][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931481:000876029][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931491:000877129][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931491:000877224][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931501:000878335][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931501:000878443][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931511:000879538][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931511:000879631][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931521:000881742][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931521:000881828][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931531:000882946][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931531:000883035][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931541:000884152][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931541:000884245][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931551:000886354][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931551:000886448][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931561:000888570][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931561:000888667][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931571:000889764][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931571:000889856][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931581:000890969][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931581:000891060][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931591:000893174][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931591:000893274][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931601:000894377][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931601:000894469][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931611:000895581][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931611:000895673][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931621:000896786][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931621:000896882][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931631:000898990][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931631:000899099][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931641:000900194][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931641:000900280][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931651:000901403][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931651:000901517][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931661:000903606][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931661:000903720][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931671:000904808][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931671:000904905][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931681:000906013][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931681:000906108][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931691:000907218][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931691:000907317][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931701:000909421][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931701:000909518][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931711:000910625][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931711:000910720][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931721:000911830][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931721:000911929][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931731:000913034][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931731:000913126][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931741:000915238][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931741:000915341][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931751:000916444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931751:000916537][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931761:000917646][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931761:000917738][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931771:000919851][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931771:000919947][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931781:000921057][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931781:000921180][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931791:000922259][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931791:000922351][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931801:000923466][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931801:000923567][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931811:000925669][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931811:000925766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931821:000926872][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931821:000926960][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931831:000928076][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931831:000928176][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931841:000930291][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931841:000930388][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931851:000932485][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931851:000932585][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931861:000933691][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931861:000933785][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931871:000934894][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931871:000934985][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931881:000937098][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931881:000937193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931891:000938304][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931891:000938403][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931901:000939509][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931901:000939613][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931911:000940710][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931911:000940800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931921:000942916][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931921:000943014][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931931:000944121][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931931:000944221][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931941:000945324][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931941:000945413][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931951:000947535][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931951:000947650][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931961:000949734][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931961:000949834][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931971:000950939][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931971:000951035][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931981:000952141][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931981:000952239][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104931991:000954349][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104931991:000954451][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932001:000955551][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932001:000955665][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932011:000956755][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932011:000956855][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932021:000957959][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932021:000958051][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932031:000960164][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932031:000960256][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932041:000961368][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932041:000961463][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932051:000962574][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932051:000962674][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932061:000964775][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932061:000964876][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932071:000965981][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932071:000966075][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932081:000967185][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932081:000967283][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932091:000968389][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932091:000968482][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932101:000970594][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932101:000970691][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932111:000971800][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932111:000971899][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932121:000973002][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932121:000973099][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932131:000975207][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932131:000975298][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932141:000977412][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932141:000977502][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932151:000978615][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932151:000978701][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932161:000979821][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932161:000979920][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932171:000982024][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932171:000982118][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932181:000983229][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932181:000983316][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932191:000984435][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932191:000984534][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932201:000985638][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932201:000985734][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932211:000987840][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932211:000987931][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932221:000989045][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932221:000989155][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932231:000990251][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932231:000990351][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932241:000992455][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932241:000992548][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932251:000994665][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932251:000994780][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932261:000995865][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932261:000995968][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932271:000997070][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932271:000997164][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932281:000999273][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932281:000999380][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932292:000000478][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932292:000000576][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932302:000001682][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932302:000001780][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932312:000002886][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932312:000002980][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932322:000005089][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932322:000005185][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932332:000006295][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932332:000006387][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932342:000007498][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932342:000007594][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932352:000009705][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932352:000009813][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932362:000010907][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932362:000010997][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932372:000012113][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932372:000012227][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932382:000013316][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932382:000013409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932392:000015520][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932392:000015608][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932402:000016725][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932402:000016820][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932412:000017931][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932412:000018030][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932422:000019133][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932422:000019218][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932432:000021337][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932432:000021428][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932442:000022542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932442:000022628][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932452:000023746][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932452:000023840][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932462:000025951][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932462:000026054][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932472:000027154][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932472:000027247][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932482:000028359][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932482:000028444][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932492:000029566][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932492:000029669][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932502:000031767][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932502:000031861][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932512:000032972][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932512:000033061][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932522:000034176][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932522:000034273][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932532:000036384][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932532:000036483][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932542:000038585][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932542:000038677][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932552:000039795][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932552:000039909][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932562:000040994][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932562:000041089][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932572:000043199][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932572:000043301][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932582:000044404][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932582:000044506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932592:000045608][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932592:000045724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932602:000046812][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932602:000046909][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932612:000049016][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932612:000049115][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932622:000050220][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932622:000050315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932632:000051423][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932632:000051515][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932642:000053630][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932642:000053724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932652:000055835][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932652:000055935][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932662:000057038][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932662:000057127][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932672:000058242][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932672:000058339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932682:000060447][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932682:000060540][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932692:000061649][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932692:000061735][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932702:000062855][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932702:000062948][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932712:000064061][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932712:000064162][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932722:000066262][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932722:000066349][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932732:000067467][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932732:000067560][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932742:000068672][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932742:000068784][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932752:000070876][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932752:000070972][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932762:000072081][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932762:000072175][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932772:000073284][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932772:000073376][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932782:000074489][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932782:000074577][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932792:000076696][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932792:000076799][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932802:000077897][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932802:000077988][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932812:000079102][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932812:000079206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932822:000080308][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932822:000080399][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932832:000082513][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932832:000082608][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932842:000083715][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932842:000083803][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932852:000084924][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932852:000085037][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932862:000087125][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932862:000087237][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932872:000088330][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932872:000088429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932882:000089533][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932882:000089625][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932892:000090738][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932892:000090840][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932902:000092942][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932902:000093033][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932912:000094147][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932912:000094241][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932922:000095350][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932922:000095440][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932932:000097560][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932932:000097647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932942:000099760][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932942:000099855][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932952:000100965][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932952:000101067][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932962:000102167][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932962:000102284][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932972:000104373][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932972:000104479][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932982:000105577][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932982:000105679][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104932992:000106779][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104932992:000106868][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933002:000107987][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933002:000108086][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933012:000110190][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933012:000110293][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933022:000111393][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933022:000111485][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933032:000112597][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933032:000112690][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933042:000114803][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933042:000114907][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933052:000117007][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933052:000117099][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933062:000118212][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933062:000118309][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933072:000119417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933072:000119519][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933082:000121618][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933082:000121705][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933092:000122826][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933092:000122928][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933102:000124027][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933102:000124114][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933112:000125232][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933112:000125321][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933122:000127438][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933122:000127535][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933132:000128642][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933132:000128739][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933142:000129845][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933142:000129931][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933152:000132050][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933152:000132154][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933162:000133258][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933162:000133371][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933172:000134460][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933172:000134555][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933182:000135662][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933182:000135776][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933192:000137869][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933192:000137968][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933202:000139073][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933202:000139165][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933212:000140277][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933212:000140369][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933222:000141480][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933222:000141574][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933232:000143685][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933232:000143786][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933242:000144889][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933242:000144984][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933252:000146094][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933252:000146193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933262:000148296][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933262:000148388][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933272:000149502][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933272:000149595][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933282:000150706][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933282:000150796][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933292:000151910][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933292:000151996][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933302:000154116][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933302:000154207][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933312:000155320][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933312:000155419][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933322:000156523][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933322:000156611][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933332:000158728][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933332:000158846][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933342:000160933][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933342:000161022][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933352:000162137][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933352:000162225][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933362:000163341][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933362:000163444][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933372:000165546][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933372:000165639][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933382:000166751][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933382:000166855][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933392:000167955][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933392:000168053][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933402:000169158][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933402:000169266][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933412:000171362][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933412:000171449][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933422:000172567][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933422:000172661][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933432:000173771][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933432:000173866][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933442:000175974][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933442:000176071][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933452:000177180][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933452:000177270][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933462:000178390][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933462:000178513][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933472:000179589][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933472:000179685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933482:000181794][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933482:000181891][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933492:000182998][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933492:000183100][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933502:000184204][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933502:000184299][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933512:000185406][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933512:000185504][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933522:000187610][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933522:000187701][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933532:000188814][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933532:000188907][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933542:000190020][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933542:000190116][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933552:000192225][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933552:000192342][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933562:000193426][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933562:000193515][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933572:000194633][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933572:000194730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933582:000195836][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933582:000195925][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933592:000198040][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933592:000198124][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933602:000199245][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933602:000199335][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933612:000200450][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933612:000200544][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933622:000202654][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933622:000202740][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933632:000204859][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933632:000204951][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933642:000206061][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933642:000206152][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933652:000207266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933652:000207355][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933662:000209480][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933662:000209627][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933672:000210677][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933672:000210785][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933682:000211878][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933682:000211967][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933692:000213086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933692:000213187][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933702:000215288][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933702:000215387][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933712:000216492][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933712:000216580][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933722:000217697][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933722:000217794][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933732:000219902][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933732:000220001][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933742:000222105][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933742:000222193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933752:000223310][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933752:000223408][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933762:000224520][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933762:000224641][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933772:000226719][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933772:000226841][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933782:000227925][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933782:000228022][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933792:000229129][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933792:000229230][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933802:000230332][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933802:000230425][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933812:000232537][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933812:000232635][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933822:000233740][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933822:000233833][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933832:000234945][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933832:000235039][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933842:000237150][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933842:000237257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933852:000238355][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933852:000238455][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933862:000239557][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933862:000239656][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933872:000240762][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933872:000240861][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933882:000242966][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933882:000243061][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933892:000244170][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933892:000244258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933902:000245374][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933902:000245468][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933912:000246581][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933912:000246681][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933922:000248782][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933922:000248885][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933932:000249989][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933932:000250085][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933942:000251192][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933942:000251285][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933952:000253396][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933952:000253491][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933962:000254600][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933962:000254696][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933972:000255805][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933972:000255897][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933982:000257009][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933982:000257097][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104933992:000259215][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104933992:000259312][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934002:000260419][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934002:000260510][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934012:000261621][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934012:000261716][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934022:000263830][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934022:000263923][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934032:000266032][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934032:000266125][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934042:000267235][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934042:000267320][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934052:000268441][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934052:000268529][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934062:000270650][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934062:000270770][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934072:000271849][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934072:000271947][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934082:000273054][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934082:000273151][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934092:000274258][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934092:000274352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934102:000276462][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934102:000276551][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934112:000277666][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934112:000277764][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934122:000278870][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934122:000278963][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934132:000281075][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934132:000281177][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934142:000283279][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934142:000283405][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934152:000284484][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934152:000284585][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934162:000285687][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934162:000285782][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934172:000287891][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934172:000287983][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934182:000289097][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934182:000289194][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934192:000290300][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934192:000290400][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934202:000291505][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934202:000291598][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934212:000293709][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934212:000293803][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934222:000294913][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934222:000295003][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934232:000296119][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934232:000296212][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934242:000298323][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934242:000298427][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934252:000299526][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934252:000299617][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934262:000300731][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934262:000300825][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934272:000301935][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934272:000302032][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934282:000304138][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934282:000304229][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934292:000305345][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934292:000305459][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934302:000306547][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934302:000306638][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934312:000307752][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934312:000307845][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934322:000309956][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934322:000310049][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934332:000311160][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934332:000311254][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934342:000312364][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934342:000312456][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934352:000314570][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934352:000314668][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934362:000315779][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934362:000315909][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934372:000316978][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934372:000317075][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934382:000318184][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934382:000318279][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934392:000320389][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934392:000320487][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934402:000321591][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934402:000321684][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934412:000322797][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934412:000322894][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934422:000324999][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934422:000325092][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934432:000327206][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934432:000327302][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934442:000328409][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934442:000328501][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934452:000329614][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934452:000329713][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934462:000331818][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934462:000331909][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934472:000333023][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934472:000333130][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934482:000334225][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934482:000334316][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934492:000335429][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934492:000335520][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934502:000337634][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934502:000337728][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934512:000338841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934512:000338960][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934522:000340041][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934522:000340131][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934532:000342247][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934532:000342348][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934542:000343453][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934542:000343551][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934552:000344657][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934552:000344760][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934562:000345861][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934562:000345953][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934572:000348064][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934572:000348158][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934582:000349271][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934582:000349362][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934592:000350475][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934592:000350578][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934602:000351677][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934602:000351766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934612:000353880][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934612:000353969][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934622:000355086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934622:000355178][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934632:000356291][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934632:000356387][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934642:000358495][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934642:000358602][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934652:000359700][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934652:000359797][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934662:000360909][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934662:000361027][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934672:000362111][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934672:000362215][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934682:000364314][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934682:000364409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934692:000365517][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934692:000365613][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934702:000366721][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934702:000366813][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934712:000368928][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934712:000369033][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934722:000371130][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934722:000371220][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934732:000372335][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934732:000372448][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934742:000373540][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934742:000373641][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934752:000375745][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934752:000375854][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934762:000376947][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934762:000377040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934772:000378152][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934772:000378245][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934782:000379356][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934782:000379450][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934792:000381560][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934792:000381652][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934802:000382766][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934802:000382857][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934812:000383971][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934812:000384072][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934822:000386173][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934822:000386264][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934832:000388378][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934832:000388475][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934842:000389583][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934842:000389675][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934852:000390786][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934852:000390880][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934862:000392992][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934862:000393083][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934872:000394196][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934872:000394298][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934882:000395399][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934882:000395505][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934892:000396605][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934892:000396706][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934902:000398808][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934902:000398897][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934912:000400011][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934912:000400104][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934922:000401217][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934922:000401308][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934932:000403421][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934932:000403522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934942:000404625][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934942:000404713][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934952:000405831][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934952:000405945][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934962:000407040][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934962:000407154][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934972:000409239][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934972:000409332][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934982:000410444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934982:000410543][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104934992:000411648][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104934992:000411745][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935002:000412852][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935002:000412945][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935012:000415059][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935012:000415158][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935022:000416260][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935022:000416352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935032:000417464][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935032:000417561][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935042:000419669][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935042:000419773][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935052:000420875][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935052:000420976][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935062:000422078][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935062:000422170][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935072:000423283][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935072:000423382][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935082:000425486][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935082:000425578][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935092:000426690][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935092:000426782][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935102:000427895][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935102:000428007][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935112:000430103][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935112:000430206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935122:000432304][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935122:000432394][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935132:000433508][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935132:000433601][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935142:000434713][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935142:000434807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935152:000436916][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935152:000437017][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935162:000438120][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935162:000438214][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935172:000439325][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935172:000439419][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935182:000440531][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935182:000440634][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935192:000442735][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935192:000442833][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935202:000443938][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935202:000444027][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935212:000445143][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935212:000445233][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935222:000447347][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935222:000447446][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935232:000449551][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935232:000449647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935242:000450756][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935242:000450844][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935252:000451960][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935252:000452054][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935262:000454170][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935262:000454293][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935272:000455370][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935272:000455473][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935282:000456576][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935282:000456677][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935292:000457779][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935292:000457872][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935302:000459982][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935302:000460079][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935312:000461189][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935312:000461290][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935322:000462390][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935322:000462509][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935332:000464594][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935332:000464695][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935342:000465800][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935342:000465893][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935352:000467005][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935352:000467104][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935362:000468208][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935362:000468301][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935372:000470412][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935372:000470503][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935382:000471618][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935382:000471712][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935392:000472821][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935392:000472915][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935402:000474026][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935402:000474119][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935412:000476230][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935412:000476326][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935422:000477434][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935422:000477522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935432:000478638][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935432:000478732][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935442:000480844][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935442:000480936][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935452:000482046][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935452:000482135][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935462:000483251][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935462:000483345][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935472:000484457][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935472:000484569][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935482:000486660][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935482:000486746][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935492:000487866][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935492:000487963][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935502:000489068][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935502:000489155][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935512:000491281][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935512:000491375][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935522:000493478][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935522:000493575][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935532:000494682][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935532:000494771][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935542:000495885][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935542:000495989][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935552:000498091][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935552:000498186][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935562:000499299][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935562:000499411][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935572:000500500][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935572:000500593][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935582:000501705][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935582:000501807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935592:000503909][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935592:000504004][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935602:000505112][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935602:000505208][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935612:000506319][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935612:000506424][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935622:000508523][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935622:000508634][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935632:000510727][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935632:000510828][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935642:000511930][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935642:000512034][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935652:000513136][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935652:000513236][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935662:000515339][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935662:000515428][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935672:000516543][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935672:000516646][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935682:000517747][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935682:000517838][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935692:000518952][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935692:000519058][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935702:000521156][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935702:000521248][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935712:000522361][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935712:000522461][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935722:000523564][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935722:000523653][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935732:000525768][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935732:000525871][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935742:000526974][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935742:000527064][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935752:000528177][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935752:000528270][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935762:000529381][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935762:000529471][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935772:000531587][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935772:000531681][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935782:000532790][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935782:000532880][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935792:000533996][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935792:000534099][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935802:000535199][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935802:000535286][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935812:000537403][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935812:000537493][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935822:000538607][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935822:000538702][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935832:000539813][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935832:000539910][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935842:000542016][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935842:000542133][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935852:000543221][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935852:000543316][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935862:000544430][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935862:000544544][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935872:000545630][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935872:000545731][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935882:000547837][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935882:000547940][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935892:000549039][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935892:000549139][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935902:000550244][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935902:000550339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935912:000552447][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935912:000552571][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935922:000554652][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935922:000554743][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935932:000555855][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935932:000555948][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935942:000557060][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935942:000557155][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935952:000559266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935952:000559368][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935962:000560467][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935962:000560558][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935972:000561674][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935972:000561767][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935982:000562878][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935982:000562970][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104935992:000565081][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104935992:000565173][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936002:000566286][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936002:000566380][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936012:000567491][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936012:000567589][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936022:000569695][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936022:000569799][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936032:000570901][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936032:000570996][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936042:000572102][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936042:000572197][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936052:000573307][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936052:000573393][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936062:000575512][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936062:000575620][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936072:000576718][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936072:000576814][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936082:000577919][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936082:000578009][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936092:000579126][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936092:000579223][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936102:000581329][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936102:000581420][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936112:000582534][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936112:000582628][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936122:000583738][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936122:000583832][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936132:000585942][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936132:000586045][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936142:000587146][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936142:000587241][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936152:000588351][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936152:000588453][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936162:000589560][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936162:000589671][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936172:000591760][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936172:000591856][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936182:000592967][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936182:000593069][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936192:000594169][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936192:000594267][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936202:000596376][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936202:000596467][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936212:000598579][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936212:000598678][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936222:000599782][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936222:000599872][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936232:000600986][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936232:000601084][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936242:000603191][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936242:000603293][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936252:000604395][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936252:000604497][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936262:000605598][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936262:000605688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936272:000606803][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936272:000606908][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936282:000609008][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936282:000609120][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936292:000610211][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936292:000610298][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936302:000611417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936302:000611510][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936312:000613622][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936312:000613727][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936322:000615824][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936322:000615915][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936332:000617029][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936332:000617125][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936342:000618233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936342:000618325][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936352:000620439][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936352:000620534][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936362:000621643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936362:000621739][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936372:000622847][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936372:000622943][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936382:000624050][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936382:000624140][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936392:000626257][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936392:000626361][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936402:000627459][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936402:000627553][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936412:000628664][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936412:000628754][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936422:000630868][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936422:000630962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936432:000632073][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936432:000632189][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936442:000633277][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936442:000633362][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936452:000634481][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936452:000634572][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936462:000636686][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936462:000636782][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936472:000637893][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936472:000638005][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936482:000639097][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936482:000639200][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936492:000640299][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936492:000640397][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936502:000642503][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936502:000642621][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936512:000643709][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936512:000643811][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936522:000644913][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936522:000645009][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936532:000647116][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936532:000647224][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936542:000648322][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936542:000648420][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936552:000649526][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936552:000649627][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936562:000650728][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936562:000650820][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936572:000652935][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936572:000653028][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936582:000654137][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936582:000654238][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936592:000655342][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936592:000655431][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936602:000657549][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936602:000657645][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936612:000659753][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936612:000659854][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936622:000660954][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936622:000661046][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936632:000662160][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936632:000662251][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936642:000664363][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936642:000664456][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936652:000665569][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936652:000665684][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936662:000666773][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936662:000666872][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936672:000667977][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936672:000668071][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936682:000670180][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936682:000670269][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936692:000671387][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936692:000671488][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936702:000672589][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936702:000672683][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936712:000674792][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936712:000674888][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936722:000676000][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936722:000676094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936732:000677202][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936732:000677297][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936742:000678407][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936742:000678500][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936752:000680610][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936752:000680705][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936762:000681815][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936762:000681907][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936772:000683024][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936772:000683139][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936782:000684228][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936782:000684332][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936792:000686428][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936792:000686522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936802:000687634][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936802:000687730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936812:000688839][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936812:000688935][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936822:000691042][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936822:000691146][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936832:000692246][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936832:000692341][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936842:000693452][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936842:000693553][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936852:000694656][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936852:000694755][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936862:000696859][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936862:000696945][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936872:000698064][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936872:000698176][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936882:000699268][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936882:000699365][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936892:000700473][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936892:000700561][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936902:000702677][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936902:000702780][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936912:000703881][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936912:000703976][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936922:000705086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936922:000705185][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936932:000707289][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936932:000707391][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936942:000708494][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936942:000708583][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936952:000709696][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936952:000709782][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936962:000710903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936962:000711000][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936972:000713106][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936972:000713195][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936982:000714312][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936982:000714407][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104936992:000715517][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104936992:000715614][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937002:000717719][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937002:000717814][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937012:000719923][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937012:000720007][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937022:000721130][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937022:000721242][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937032:000722334][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937032:000722429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937042:000724537][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937042:000724625][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937052:000725742][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937052:000725833][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937062:000726946][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937062:000727041][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937072:000728156][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937072:000728274][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937082:000730356][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937082:000730458][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937092:000731559][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937092:000731672][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937102:000732765][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937102:000732858][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937112:000734968][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937112:000735066][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937122:000736172][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937122:000736268][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937132:000737377][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937132:000737470][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937142:000738583][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937142:000738687][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937152:000740788][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937152:000740889][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937162:000741989][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937162:000742081][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937172:000743195][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937172:000743289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937182:000744399][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937182:000744494][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937192:000746602][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937192:000746693][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937202:000747807][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937202:000747901][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937212:000749012][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937212:000749107][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937222:000751216][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937222:000751320][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937232:000752420][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937232:000752514][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937242:000753624][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937242:000753734][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937252:000754828][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937252:000754918][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937262:000757043][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937262:000757181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937272:000758238][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937272:000758334][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937282:000759443][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937282:000759539][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937292:000761651][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937292:000761758][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937302:000763851][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937302:000763945][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937312:000765054][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937312:000765144][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937322:000766260][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937322:000766355][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937332:000768463][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937332:000768572][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937342:000769668][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937342:000769761][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937352:000770872][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937352:000770966][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937362:000772076][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937362:000772160][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937372:000774286][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937372:000774402][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937382:000775487][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937382:000775588][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937392:000776690][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937392:000776785][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937402:000778894][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937402:000778999][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937412:000781100][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937412:000781196][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937422:000782302][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937422:000782390][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937432:000783508][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937432:000783604][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937442:000785710][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937442:000785807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937452:000786917][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937452:000787012][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937462:000788118][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937462:000788226][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937472:000789324][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937472:000789413][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937482:000791529][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937482:000791623][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937492:000792732][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937492:000792823][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937502:000793937][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937502:000794028][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937512:000796141][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937512:000796248][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937522:000797346][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937522:000797440][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937532:000798550][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937532:000798647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937542:000799754][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937542:000799850][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937552:000801958][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937552:000802048][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937562:000803164][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937562:000803259][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937572:000804367][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937572:000804460][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937582:000805571][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937582:000805659][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937592:000807778][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937592:000807879][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937602:000808980][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937602:000809073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937612:000810185][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937612:000810293][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937622:000812390][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937622:000812491][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937632:000813593][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937632:000813685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937642:000814796][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937642:000814885][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937652:000816003][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937652:000816095][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937662:000818208][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937662:000818306][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937672:000819417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937672:000819539][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937682:000820616][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937682:000820714][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937692:000822822][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937692:000822921][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937702:000825024][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937702:000825120][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937712:000826228][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937712:000826322][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937722:000827432][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937722:000827536][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937732:000829636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937732:000829739][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937742:000830842][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937742:000830940][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937752:000832046][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937752:000832143][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937762:000833250][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937762:000833341][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937772:000835454][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937772:000835549][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937782:000836658][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937782:000836754][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937792:000837861][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937792:000837952][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937802:000840069][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937802:000840171][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937812:000842271][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937812:000842366][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937822:000843474][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937822:000843568][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937832:000844680][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937832:000844792][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937842:000846883][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937842:000846981][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937852:000848086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937852:000848175][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937862:000849292][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937862:000849386][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937872:000850496][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937872:000850587][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937882:000852701][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937882:000852790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937892:000853907][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937892:000854002][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937902:000855109][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937902:000855203][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937912:000857314][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937912:000857415][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937922:000858519][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937922:000858611][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937932:000859722][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937932:000859813][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937942:000860926][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937942:000861020][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937952:000863133][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937952:000863227][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937962:000864334][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937962:000864424][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937972:000865545][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937972:000865658][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937982:000866746][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937982:000866866][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104937992:000868950][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104937992:000869043][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938002:000870154][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938002:000870247][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938012:000871358][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938012:000871454][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938022:000873562][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938022:000873661][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938032:000874766][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938032:000874854][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938042:000875973][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938042:000876077][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938052:000877175][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938052:000877289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938062:000879378][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938062:000879470][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938072:000880583][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938072:000880683][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938082:000881787][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938082:000881890][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938092:000883991][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938092:000884082][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938102:000886198][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938102:000886303][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938112:000887401][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938112:000887494][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938122:000888605][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938122:000888700][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938132:000890809][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938132:000890904][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938142:000892014][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938142:000892107][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938152:000893218][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938152:000893308][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938162:000894424][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938162:000894522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938172:000896628][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938172:000896718][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938182:000897832][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938182:000897923][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938192:000899037][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938192:000899135][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938202:000901240][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938202:000901356][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938212:000903444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938212:000903534][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938222:000904649][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938222:000904742][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938232:000905853][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938232:000905945][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938242:000908056][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938242:000908150][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938252:000909262][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938252:000909355][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938262:000910466][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938262:000910563][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938272:000911675][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938272:000911789][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938282:000913876][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938282:000913975][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938292:000915080][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938292:000915180][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938302:000916283][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938302:000916376][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938312:000918490][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938312:000918604][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938322:000919693][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938322:000919790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938332:000920896][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938332:000920991][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938342:000922104][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938342:000922205][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938352:000924306][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938352:000924403][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938362:000925509][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938362:000925604][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938372:000926714][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938372:000926807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938382:000928918][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938382:000929011][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938392:000931121][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938392:000931208][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938402:000932330][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938402:000932431][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938412:000933531][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938412:000933623][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938422:000935735][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938422:000935845][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938432:000936939][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938432:000937031][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938442:000938144][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938442:000938241][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938452:000939348][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938452:000939436][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938462:000941553][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938462:000941644][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938472:000942757][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938472:000942847][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938482:000943961][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938482:000944055][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938492:000946167][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938492:000946270][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938502:000948370][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938502:000948461][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938512:000949575][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938512:000949665][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938522:000950780][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938522:000950875][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938532:000952983][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938532:000953073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938542:000954187][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938542:000954276][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938552:000955394][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938552:000955484][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938562:000956596][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938562:000956687][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938572:000958805][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938572:000958935][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938582:000960005][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938582:000960102][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938592:000961212][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938592:000961308][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938602:000963414][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938602:000963516][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938612:000964619][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938612:000964715][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938622:000965824][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938622:000965918][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938632:000967027][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938632:000967118][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938642:000969233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938642:000969353][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938652:000970434][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938652:000970527][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938662:000971639][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938662:000971730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938672:000972844][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938672:000972939][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938682:000975049][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938682:000975144][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938692:000976251][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938692:000976340][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938702:000977457][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938702:000977554][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938712:000979663][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938712:000979764][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938722:000980866][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938722:000980968][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938732:000982070][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938732:000982164][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938742:000983274][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938742:000983367][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938752:000985478][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938752:000985566][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938762:000986682][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938762:000986776][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938772:000987887][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938772:000987978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938782:000990093][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938782:000990188][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938792:000992300][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938792:000992417][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938802:000993501][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938802:000993596][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938812:000994703][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938812:000994792][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938822:000996908][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938822:000997007][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938832:000998113][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938832:000998206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938842:000999317][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938842:000999411][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938853:000000522][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938853:000000614][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938863:000002728][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938863:000002823][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938873:000003936][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938873:000004051][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938883:000005136][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938883:000005243][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938893:000007341][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938893:000007442][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938903:000009545][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938903:000009639][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938913:000010749][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938913:000010843][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938923:000011954][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938923:000012053][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938933:000014156][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938933:000014245][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938943:000015363][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938943:000015463][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938953:000016566][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938953:000016662][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938963:000017770][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938963:000017869][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938973:000019974][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938973:000020066][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938983:000021178][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938983:000021270][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104938993:000022381][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104938993:000022471][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939003:000024588][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939003:000024698][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939013:000025793][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939013:000025901][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939023:000026995][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939023:000027092][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939033:000028200][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939033:000028292][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939043:000030404][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939043:000030500][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939053:000031609][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939053:000031699][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939063:000032812][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939063:000032902][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939073:000034017][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939073:000034108][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939083:000036221][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939083:000036314][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939093:000037427][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939093:000037524][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939103:000038630][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939103:000038722][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939113:000040834][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939113:000040928][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939123:000042040][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939123:000042136][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939133:000043243][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939133:000043335][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939143:000044448][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939143:000044540][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939153:000046653][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939153:000046745][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939163:000047857][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939163:000047964][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939173:000049066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939173:000049179][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939183:000051271][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939183:000051368][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939193:000053471][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939193:000053569][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939203:000054675][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939203:000054779][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939213:000055879][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939213:000055976][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939223:000058083][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939223:000058178][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939233:000059286][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939233:000059394][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939243:000060494][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939243:000060598][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939253:000061696][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939253:000061790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939263:000063900][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939263:000063994][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939273:000065105][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939273:000065198][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939283:000066309][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939283:000066402][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939293:000068513][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939293:000068608][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939303:000069719][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939303:000069819][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939313:000070922][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939313:000071017][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939323:000072125][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939323:000072218][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939333:000074331][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939333:000074425][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939343:000075534][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939343:000075628][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939353:000076739][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939353:000076828][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939363:000077943][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939363:000078039][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939373:000080147][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939373:000080239][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939383:000081353][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939383:000081461][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939393:000082557][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939393:000082656][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939403:000084760][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939403:000084866][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939413:000085964][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939413:000086061][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939423:000087170][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939423:000087266][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939433:000088373][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939433:000088465][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939443:000090577][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939443:000090673][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939453:000091783][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939453:000091879][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939463:000092988][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939463:000093087][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939473:000094196][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939473:000094307][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939483:000096397][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939483:000096499][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939493:000097600][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939493:000097700][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939503:000098804][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939503:000098895][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939513:000101010][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939513:000101108][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939523:000102214][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939523:000102311][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939533:000103417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939533:000103525][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939543:000104623][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939543:000104723][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939553:000106827][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939553:000106922][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939563:000108030][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939563:000108125][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939573:000109235][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939573:000109331][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939583:000111438][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939583:000111539][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939593:000113642][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939593:000113733][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939603:000114848][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939603:000114962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939613:000116052][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939613:000116146][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939623:000118255][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939623:000118350][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939633:000119461][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939633:000119555][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939643:000120665][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939643:000120759][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939653:000121868][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939653:000121955][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939663:000124074][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939663:000124171][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939673:000125277][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939673:000125371][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939683:000126481][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939683:000126574][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939693:000128687][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939693:000128792][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939703:000129890][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939703:000129986][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939713:000131094][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939713:000131197][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939723:000132300][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939723:000132395][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939733:000134503][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939733:000134594][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939743:000135707][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939743:000135802][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939753:000136913][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939753:000137021][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939763:000138116][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939763:000138206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939773:000140321][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939773:000140409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939783:000141531][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939783:000141647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939793:000142732][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939793:000142830][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939803:000144934][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939803:000145040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939813:000146140][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939813:000146238][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939823:000147344][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939823:000147443][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939833:000148548][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939833:000148640][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939843:000150754][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939843:000150855][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939853:000151956][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939853:000152055][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939863:000153159][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939863:000153255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939873:000155368][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939873:000155462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939883:000157568][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939883:000157662][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939893:000158772][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939893:000158862][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939903:000159979][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939903:000160076][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939913:000162182][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939913:000162279][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939923:000163386][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939923:000163477][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939933:000164591][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939933:000164686][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939943:000165795][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939943:000165888][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939953:000167998][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939953:000168087][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939963:000169204][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939963:000169298][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939973:000170407][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939973:000170514][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939983:000172612][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939983:000172706][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104939993:000174818][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104939993:000174914][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940003:000176022][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940003:000176116][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940013:000177224][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940013:000177312][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940023:000179430][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940023:000179523][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940033:000180633][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940033:000180724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940043:000181837][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940043:000181930][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940053:000183043][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940053:000183138][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940063:000185248][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940063:000185344][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940073:000186450][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940073:000186534][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940083:000187661][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940083:000187784][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940093:000189862][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940093:000189973][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940103:000191064][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940103:000191163][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940113:000192270][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940113:000192367][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940123:000193473][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940123:000193586][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940133:000195677][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940133:000195769][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940143:000196883][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940143:000196982][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940153:000198086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940153:000198181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940163:000199289][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940163:000199382][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940173:000201495][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940173:000201587][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940183:000202699][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940183:000202795][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940193:000203903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940193:000204010][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940203:000206110][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940203:000206220][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940213:000207312][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940213:000207405][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940223:000208516][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940223:000208609][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940233:000209721][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940233:000209814][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940243:000211925][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940243:000212024][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940253:000213129][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940253:000213217][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940263:000214334][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940263:000214428][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940273:000216539][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940273:000216630][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940283:000218742][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940283:000218838][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940293:000219948][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940293:000220045][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940303:000221152][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940303:000221244][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940313:000223354][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940313:000223459][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940323:000224560][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940323:000224652][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940333:000225764][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940333:000225863][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940343:000226968][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940343:000227075][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940353:000229174][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940353:000229267][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940363:000230377][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940363:000230467][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940373:000231581][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940373:000231670][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940383:000233791][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940383:000233908][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940393:000235993][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940393:000236090][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940403:000237195][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940403:000237285][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940413:000238402][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940413:000238503][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940423:000240604][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940423:000240702][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940433:000241809][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940433:000241903][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940443:000243014][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940443:000243114][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940453:000244217][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940453:000244310][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940463:000246420][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940463:000246514][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940473:000247626][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940473:000247720][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940483:000248829][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940483:000248919][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940493:000251032][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940493:000251130][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940503:000252240][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940503:000252342][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940513:000253442][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940513:000253535][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940523:000254646][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940523:000254736][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940533:000256852][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940533:000256944][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940543:000258055][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940543:000258151][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940553:000259259][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940553:000259347][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940563:000260465][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940563:000260577][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940573:000262667][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940573:000262760][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940583:000263874][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940583:000263977][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940593:000265080][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940593:000265180][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940603:000267281][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940603:000267378][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940613:000268485][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940613:000268574][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940623:000269690][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940623:000269788][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940633:000270895][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940633:000270987][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940643:000273098][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940643:000273189][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940653:000274304][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940653:000274399][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940663:000275509][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940663:000275610][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940673:000277711][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940673:000277803][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940683:000279921][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940683:000280037][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940693:000281122][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940693:000281219][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940703:000282324][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940703:000282417][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940713:000284531][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940713:000284872][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940723:000285735][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940723:000285830][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940733:000286940][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940733:000287028][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940743:000288145][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940743:000288239][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940753:000290347][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940753:000290451][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940763:000291552][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940763:000291643][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940773:000292755][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940773:000292848][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940783:000294959][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940783:000295070][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940793:000297164][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940793:000297260][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940803:000298370][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940803:000298470][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940813:000299573][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940813:000299667][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940823:000301777][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940823:000301868][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940833:000302982][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940833:000303080][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940843:000304185][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940843:000304278][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940853:000305390][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940853:000305479][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940863:000307604][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940863:000307742][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940873:000308801][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940873:000308902][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940883:000310004][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940883:000310099][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940893:000312212][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940893:000312323][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940903:000313411][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940903:000313505][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940913:000314617][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940913:000314713][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940923:000315822][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940923:000315925][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940933:000318026][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940933:000318140][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940943:000319228][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940943:000319323][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940953:000320436][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940953:000320536][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940963:000322638][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940963:000322730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940973:000324841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940973:000324932][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940983:000326052][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940983:000326172][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104940993:000327253][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104940993:000327358][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941003:000329455][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941003:000329557][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941013:000330662][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941013:000330767][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941023:000331865][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941023:000331958][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941033:000333070][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941033:000333171][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941043:000335275][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941043:000335375][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941053:000336477][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941053:000336578][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941063:000337682][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941063:000337777][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941073:000339887][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941073:000339997][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941083:000342090][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941083:000342181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941093:000343294][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941093:000343389][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941103:000344501][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941103:000344603][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941113:000346702][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941113:000346798][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941123:000347906][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941123:000347995][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941133:000349114][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941133:000349219][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941143:000350316][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941143:000350409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941153:000352520][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941153:000352626][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941163:000353726][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941163:000353823][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941173:000354929][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941173:000355024][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941183:000357132][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941183:000357228][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941193:000358340][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941193:000358445][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941203:000359541][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941203:000359630][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941213:000360746][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941213:000360842][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941223:000362952][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941223:000363054][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941233:000364156][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941233:000364252][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941243:000365358][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941243:000365457][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941253:000366566][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941253:000366668][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941263:000368769][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941263:000368873][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941273:000369971][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941273:000370063][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941283:000371183][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941283:000371301][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941293:000373383][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941293:000373497][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941303:000374586][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941303:000374695][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941313:000375793][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941313:000375905][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941323:000376994][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941323:000377094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941333:000379199][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941333:000379297][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941343:000380404][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941343:000380506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941353:000381607][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941353:000381700][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941363:000383813][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941363:000383904][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941373:000386017][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941373:000386117][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941383:000387220][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941383:000387315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941393:000388424][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941393:000388519][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941403:000390630][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941403:000390732][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941413:000391833][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941413:000391927][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941423:000393037][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941423:000393126][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941433:000394244][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941433:000394347][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941443:000396446][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941443:000396541][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941453:000397650][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941453:000397742][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941463:000398857][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941463:000398956][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941473:000401060][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941473:000401159][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941483:000403262][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941483:000403355][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941493:000404470][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941493:000404571][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941503:000405671][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941503:000405759][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941513:000407877][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941513:000407969][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941523:000409082][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941523:000409198][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941533:000410286][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941533:000410380][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941543:000411489][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941543:000411580][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941553:000413696][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941553:000413801][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941563:000414898][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941563:000414990][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941573:000416102][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941573:000416194][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941583:000418313][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941583:000418443][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941593:000419512][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941593:000419614][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941603:000420716][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941603:000420813][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941613:000421923][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941613:000422026][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941623:000424125][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941623:000424220][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941633:000425330][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941633:000425430][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941643:000426535][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941643:000426636][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941653:000427738][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941653:000427837][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941663:000429942][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941663:000430035][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941673:000431149][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941673:000431270][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941683:000432350][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941683:000432445][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941693:000434556][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941693:000434664][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941703:000435760][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941703:000435862][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941713:000436964][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941713:000437061][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941723:000438167][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941723:000438260][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941733:000440374][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941733:000440479][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941743:000441576][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941743:000441683][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941753:000442780][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941753:000442875][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941763:000444991][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941763:000445089][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941773:000447190][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941773:000447289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941783:000448393][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941783:000448486][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941793:000449600][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941793:000449702][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941803:000451802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941803:000451892][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941813:000453007][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941813:000453104][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941823:000454213][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941823:000454316][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941833:000455416][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941833:000455510][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941843:000457620][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941843:000457710][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941853:000458825][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941853:000458928][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941863:000460030][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941863:000460130][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941873:000462233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941873:000462331][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941883:000463444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941883:000463570][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941893:000464642][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941893:000464761][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941903:000465847][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941903:000465944][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941913:000468052][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941913:000468155][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941923:000469255][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941923:000469349][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941933:000470459][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941933:000470558][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941943:000471665][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941943:000471768][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941953:000473868][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941953:000473967][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941963:000475071][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941963:000475162][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941973:000476278][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941973:000476382][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941983:000478479][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941983:000478578][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104941993:000479685][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104941993:000479782][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942003:000480891][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942003:000480991][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942013:000482095][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942013:000482191][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942023:000484297][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942023:000484388][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942033:000485505][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942033:000485610][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942043:000486707][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942043:000486802][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942053:000487910][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942053:000488002][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942063:000490116][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942063:000490213][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942073:000491320][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942073:000491427][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942083:000492524][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942083:000492614][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942093:000494729][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942093:000494833][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942103:000495932][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942103:000496020][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942113:000497137][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942113:000497244][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942123:000498344][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942123:000498442][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942133:000500545][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942133:000500647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942143:000501750][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942143:000501838][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942153:000502954][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942153:000503048][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942163:000505158][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942163:000505250][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942173:000507362][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942173:000507449][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942183:000508573][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942183:000508689][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942193:000509773][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942193:000509871][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942203:000511977][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942203:000512074][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942213:000513181][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942213:000513283][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942223:000514385][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942223:000514474][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942233:000515591][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942233:000515688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942243:000517794][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942243:000517892][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942253:000518999][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942253:000519093][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942263:000520201][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942263:000520307][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942273:000522409][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942273:000522524][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942283:000524610][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942283:000524703][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942293:000525814][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942293:000525906][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942303:000527021][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942303:000527117][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942313:000529224][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942313:000529320][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942323:000530428][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942323:000530520][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942333:000531634][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942333:000531749][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942343:000532836][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942343:000532928][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942353:000535040][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942353:000535130][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942363:000536246][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942363:000536341][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942373:000537450][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942373:000537544][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942383:000539656][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942383:000539761][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942393:000540860][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942393:000540970][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942403:000542063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942403:000542150][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942413:000543266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942413:000543358][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942423:000545473][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942423:000545573][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942433:000546676][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942433:000546776][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942443:000547881][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942443:000547976][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942453:000550089][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942453:000550192][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942463:000552290][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942463:000552388][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942473:000553493][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942473:000553590][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942483:000554703][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942483:000554841][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942493:000556903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942493:000557005][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942503:000558107][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942503:000558202][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942513:000559312][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942513:000559415][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942523:000560516][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942523:000560614][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942533:000562719][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942533:000562816][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942543:000563924][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942543:000564020][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942553:000565129][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942553:000565223][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942563:000567332][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942563:000567428][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942573:000569539][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942573:000569643][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942583:000570740][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942583:000570830][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942593:000571944][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942593:000572032][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942603:000574151][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942603:000574251][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942613:000575355][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942613:000575446][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942623:000576557][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942623:000576643][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942633:000577764][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942633:000577863][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942643:000579966][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942643:000580058][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942653:000581171][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942653:000581258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942663:000582377][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942663:000582471][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942673:000584580][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942673:000584684][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942683:000585784][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942683:000585876][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942693:000586990][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942693:000587091][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942703:000588194][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942703:000588302][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942713:000590396][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942713:000590487][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942723:000591602][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942723:000591698][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942733:000592806][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942733:000592894][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942743:000594011][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942743:000594102][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942753:000596214][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942753:000596307][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942763:000597420][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942763:000597510][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942773:000598622][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942773:000598707][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942783:000600833][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942783:000600959][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942793:000602034][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942793:000602132][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942803:000603238][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942803:000603338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942813:000604441][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942813:000604549][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942823:000606645][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942823:000606738][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942833:000607850][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942833:000607946][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942843:000609055][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942843:000609157][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942853:000611260][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942853:000611365][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942863:000613461][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942863:000613550][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942873:000614669][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942873:000614768][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942883:000615870][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942883:000615962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942893:000618074][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942893:000618161][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942903:000619279][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942903:000619371][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942913:000620484][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942913:000620577][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942923:000621688][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942923:000621779][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942933:000623894][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942933:000623995][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942943:000625097][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942943:000625185][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942953:000626301][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942953:000626390][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942963:000628506][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942963:000628609][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942973:000630710][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942973:000630800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942983:000631915][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942983:000632002][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104942993:000633120][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104942993:000633218][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943003:000635322][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943003:000635418][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943013:000636526][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943013:000636617][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943023:000637732][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943023:000637825][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943033:000638935][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943033:000639028][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943043:000641141][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943043:000641233][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943053:000642344][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943053:000642438][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943063:000643551][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943063:000643646][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943073:000645752][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943073:000645862][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943083:000646959][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943083:000647061][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943093:000648166][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943093:000648279][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943103:000649366][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943103:000649461][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943113:000651572][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943113:000651669][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943123:000652775][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943123:000652871][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943133:000653980][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943133:000654077][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943143:000655185][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943143:000655283][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943153:000657387][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943153:000657483][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943163:000658592][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943163:000658688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943173:000659798][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943173:000659899][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943183:000662000][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943183:000662090][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943193:000663205][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943193:000663295][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943203:000664412][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943203:000664511][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943213:000665613][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943213:000665706][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943223:000667819][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943223:000667924][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943233:000669024][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943233:000669123][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943243:000670227][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943243:000670320][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943253:000672430][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943253:000672520][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943263:000674636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943263:000674738][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943273:000675840][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943273:000675932][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943283:000677044][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943283:000677135][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943293:000679250][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943293:000679376][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943303:000680452][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943303:000680541][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943313:000681656][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943313:000681742][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943323:000682863][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943323:000682962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943333:000685066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943333:000685155][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943343:000686269][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943343:000686358][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943353:000687477][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943353:000687570][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943363:000689678][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943363:000689775][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943373:000690883][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943373:000690972][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943383:000692088][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943383:000692183][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943393:000693298][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943393:000693413][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943403:000695497][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943403:000695601][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943413:000696702][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943413:000696796][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943423:000697904][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943423:000697998][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943433:000699110][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943433:000699211][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943443:000701315][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943443:000701434][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943453:000702518][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943453:000702612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943463:000703722][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943463:000703814][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943473:000705929][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943473:000706039][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943483:000707131][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943483:000707226][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943493:000708335][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943493:000708433][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943503:000709543][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943503:000709645][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943513:000711744][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943513:000711835][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943523:000712949][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943523:000713040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943533:000714155][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943533:000714253][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943543:000716359][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943543:000716449][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943553:000718560][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943553:000718650][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943563:000719768][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943563:000719866][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943573:000720970][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943573:000721063][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943583:000723175][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943583:000723276][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943593:000724380][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943593:000724488][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943603:000725584][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943603:000725678][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943613:000726789][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943613:000726883][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943623:000728995][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943623:000729096][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943633:000730197][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943633:000730290][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943643:000731401][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943643:000731494][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943653:000733607][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943653:000733706][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943663:000735810][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943663:000735923][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943673:000737013][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943673:000737106][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943683:000738221][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943683:000738324][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943693:000740428][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943693:000740550][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943703:000741628][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943703:000741729][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943713:000742834][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943713:000742930][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943723:000744036][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943723:000744131][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943733:000746241][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943733:000746336][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943743:000747447][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943743:000747542][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943753:000748649][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943753:000748742][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943763:000750854][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943763:000750957][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943773:000752061][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943773:000752162][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943783:000753262][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943783:000753352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943793:000754465][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943793:000754554][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943803:000756672][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943803:000756769][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943813:000757874][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943813:000757982][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943823:000759078][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943823:000759168][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943833:000760287][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943833:000760389][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943843:000762488][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943843:000762589][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943853:000763691][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943853:000763782][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943863:000764897][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943863:000764991][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943873:000767100][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943873:000767200][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943883:000768305][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943883:000768412][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943893:000769511][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943893:000769608][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943903:000770712][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943903:000770800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943913:000772917][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943913:000773004][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943923:000774123][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943923:000774220][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943933:000775327][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943933:000775424][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943943:000777531][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943943:000777621][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943953:000779735][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943953:000779827][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943963:000780940][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943963:000781035][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943973:000782142][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943973:000782237][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943983:000784349][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943983:000784449][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104943993:000785556][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104943993:000785670][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944003:000786757][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944003:000786856][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944013:000787962][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944013:000788069][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944023:000790166][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944023:000790258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944033:000791371][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944033:000791483][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944043:000792578][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944043:000792680][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944053:000794778][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944053:000794879][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944063:000796983][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944063:000797071][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944073:000798189][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944073:000798291][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944083:000799391][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944083:000799484][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944093:000801594][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944093:000801688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944103:000802801][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944103:000802900][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944113:000804004][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944113:000804098][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944123:000805208][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944123:000805300][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944133:000807414][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944133:000807513][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944143:000808617][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944143:000808711][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944153:000809821][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944153:000809913][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944163:000812027][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944163:000812125][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944173:000813231][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944173:000813325][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944183:000814436][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944183:000814536][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944193:000815641][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944193:000815739][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944203:000817841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944203:000817930][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944213:000819048][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944213:000819142][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944223:000820253][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944223:000820351][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944233:000821456][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944233:000821547][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944243:000823659][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944243:000823753][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944253:000824866][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944253:000824975][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944263:000826070][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944263:000826168][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944273:000828272][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944273:000828369][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944283:000829479][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944283:000829575][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944293:000830687][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944293:000830801][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944303:000831888][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944303:000831992][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944313:000834092][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944313:000834186][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944323:000835295][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944323:000835389][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944333:000836509][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944333:000836606][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944343:000838712][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944343:000838820][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944353:000840908][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944353:000841000][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944363:000842114][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944363:000842208][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944373:000843319][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944373:000843418][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944383:000845521][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944383:000845612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944393:000846724][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944393:000846814][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944403:000847931][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944403:000848047][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944413:000849134][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944413:000849228][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944423:000851339][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944423:000851434][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944433:000852545][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944433:000852647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944443:000853747][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944443:000853841][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944453:000855951][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944453:000856046][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944463:000857166][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944463:000857302][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944473:000858362][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944473:000858478][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944483:000859565][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944483:000859667][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944493:000861771][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944493:000861872][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944503:000862975][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944503:000863072][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944513:000864178][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944513:000864269][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944523:000865383][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944523:000865484][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944533:000867586][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944533:000867680][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944543:000868791][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944543:000868884][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944553:000869995][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944553:000870086][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944563:000872201][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944563:000872307][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944573:000873404][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944573:000873493][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944583:000874609][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944583:000874701][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944593:000875817][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944593:000875934][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944603:000878020][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944603:000878130][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944613:000879221][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944613:000879317][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944623:000880426][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944623:000880539][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944633:000881631][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944633:000881724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944643:000883836][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944643:000883937][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944653:000885039][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944653:000885127][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944663:000886244][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944663:000886339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944673:000888449][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944673:000888553][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944683:000889651][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944683:000889744][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944693:000890855][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944693:000890942][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944703:000892061][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944703:000892158][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944713:000894265][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944713:000894358][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944723:000895468][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944723:000895559][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944733:000896675][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944733:000896775][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944743:000898877][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944743:000898980][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944753:000901081][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944753:000901172][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944763:000902285][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944763:000902379][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944773:000903491][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944773:000903612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944783:000905697][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944783:000905796][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944793:000906902][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944793:000907008][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944803:000908104][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944803:000908193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944813:000909308][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944813:000909395][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944823:000911515][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944823:000911616][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944833:000912718][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944833:000912811][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944843:000913921][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944843:000914032][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944853:000916125][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944853:000916228][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944863:000917331][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944863:000917435][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944873:000918534][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944873:000918625][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944883:000919740][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944883:000919839][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944893:000921948][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944893:000922064][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944903:000923147][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944903:000923246][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944913:000924353][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944913:000924450][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944923:000925555][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944923:000925651][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944933:000927761][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944933:000927853][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944943:000928965][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944943:000929063][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944953:000930169][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944953:000930260][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944963:000932372][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944963:000932478][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944973:000933580][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944973:000933681][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944983:000934780][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944983:000934870][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104944993:000935986][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104944993:000936093][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945003:000938190][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945003:000938286][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945013:000939395][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945013:000939489][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945023:000940599][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945023:000940691][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945033:000942809][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945033:000942907][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945043:000945008][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945043:000945102][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945053:000946211][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945053:000946299][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945063:000947417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945063:000947510][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945073:000949621][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945073:000949719][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945083:000950826][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945083:000950923][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945093:000952031][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945093:000952130][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945103:000953233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945103:000953324][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945113:000955437][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945113:000955525][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945123:000956643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945123:000956737][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945133:000957845][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945133:000957937][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945143:000960051][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945143:000960152][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945153:000962255][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945153:000962347][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945163:000963460][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945163:000963554][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945173:000964663][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945173:000964752][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945183:000966868][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945183:000966961][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945193:000968077][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945193:000968194][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945203:000969278][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945203:000969376][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945213:000970483][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945213:000970598][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945223:000972686][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945223:000972782][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945233:000973892][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945233:000973987][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945243:000975096][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945243:000975196][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945253:000977299][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945253:000977397][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945263:000978504][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945263:000978601][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945273:000979710][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945273:000979812][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945283:000980911][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945283:000981000][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945293:000983116][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945293:000983205][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945303:000984320][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945303:000984416][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945313:000985525][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945313:000985618][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945323:000986729][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945323:000986821][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945333:000988936][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945333:000989035][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945343:000990139][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945343:000990243][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945353:000991342][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945353:000991433][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945363:000993547][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945363:000993667][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945373:000994751][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945373:000994846][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945383:000995956][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945383:000996052][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945393:000997161][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945393:000997259][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945403:000999363][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945403:000999451][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945414:000000567][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945414:000000655][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945424:000001772][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945424:000001876][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945434:000003981][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945434:000004086][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945444:000006181][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945444:000006272][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945454:000007386][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945454:000007485][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945464:000008593][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945464:000008690][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945474:000010795][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945474:000010887][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945484:000011999][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945484:000012090][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945494:000013209][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945494:000013320][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945504:000014410][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945504:000014509][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945514:000016615][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945514:000016715][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945524:000017816][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945524:000017906][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945534:000019022][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945534:000019118][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945544:000021226][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945544:000021329][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945554:000023430][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945554:000023521][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945564:000024633][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945564:000024728][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945574:000025841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945574:000025941][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945584:000028041][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945584:000028149][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945594:000029246][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945594:000029337][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945604:000030451][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945604:000030546][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945614:000031657][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945614:000031754][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945624:000033860][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945624:000033951][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945634:000035066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945634:000035164][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945644:000036268][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945644:000036358][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945654:000038473][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945654:000038576][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945664:000039678][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945664:000039770][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945674:000040882][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945674:000040974][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945684:000042085][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945684:000042175][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945694:000044292][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945694:000044389][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945704:000045493][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945704:000045582][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945714:000046698][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945714:000046782][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945724:000047902][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945724:000047997][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945734:000050109][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945734:000050205][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945744:000051310][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945744:000051403][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945754:000052516][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945754:000052608][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945764:000054720][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945764:000054808][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945774:000055925][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945774:000056017][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945784:000057129][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945784:000057220][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945794:000058339][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945794:000058452][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945804:000060538][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945804:000060653][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945814:000061744][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945814:000061846][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945824:000062946][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945824:000063037][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945834:000065152][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945834:000065250][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945844:000067356][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945844:000067452][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945854:000068561][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945854:000068665][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945864:000069764][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945864:000069859][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945874:000071970][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945874:000072070][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945884:000073174][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945884:000073267][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945894:000074377][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945894:000074471][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945904:000075582][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945904:000075675][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945914:000077785][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945914:000077880][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945924:000078991][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945924:000079084][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945934:000080195][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945934:000080296][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945944:000082399][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945944:000082501][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945954:000083602][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945954:000083717][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945964:000084807][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945964:000084901][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945974:000086012][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945974:000086112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945984:000088219][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945984:000088325][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104945994:000089423][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104945994:000089526][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946004:000090625][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946004:000090715][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946014:000091829][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946014:000091922][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946024:000094034][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946024:000094145][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946034:000095238][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946034:000095330][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946044:000096442][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946044:000096535][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946054:000098648][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946054:000098756][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946064:000099853][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946064:000099949][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946074:000101054][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946074:000101144][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946084:000102260][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946084:000102356][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946094:000104469][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946094:000104584][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946104:000105671][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946104:000105771][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946114:000106874][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946114:000106974][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946124:000109078][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946124:000109167][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946134:000111282][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946134:000111378][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946144:000112487][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946144:000112584][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946154:000113691][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946154:000113783][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946164:000115897][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946164:000115995][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946174:000117101][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946174:000117220][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946184:000118302][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946184:000118391][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946194:000119506][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946194:000119594][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946204:000121711][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946204:000121802][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946214:000122916][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946214:000123008][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946224:000124120][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946224:000124212][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946234:000126325][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946234:000126428][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946244:000128529][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946244:000128623][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946254:000129733][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946254:000129826][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946264:000130939][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946264:000131033][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946274:000133143][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946274:000133238][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946284:000134346][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946284:000134439][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946294:000135553][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946294:000135653][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946304:000136755][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946304:000136842][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946314:000138959][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946314:000139047][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946324:000140164][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946324:000140257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946334:000141369][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946334:000141472][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946344:000143572][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946344:000143675][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946354:000144777][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946354:000144871][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946364:000145981][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946364:000146070][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946374:000147186][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946374:000147278][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946384:000149389][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946384:000149480][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946394:000150594][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946394:000150707][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946404:000151803][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946404:000151916][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946414:000153004][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946414:000153106][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946424:000155207][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946424:000155299][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946434:000156412][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946434:000156510][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946444:000157617][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946444:000157719][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946454:000159822][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946454:000159929][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946464:000161025][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946464:000161121][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946474:000162229][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946474:000162327][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946484:000163434][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946484:000163528][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946494:000165637][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946494:000165730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946504:000166841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946504:000166941][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946514:000168047][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946514:000168140][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946524:000170252][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946524:000170342][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946534:000172457][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946534:000172558][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946544:000173659][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946544:000173769][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946554:000174864][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946554:000174953][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946564:000177068][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946564:000177169][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946574:000178275][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946574:000178371][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946584:000179477][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946584:000179572][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946594:000180683][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946594:000180779][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946604:000182885][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946604:000182978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946614:000184090][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946614:000184183][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946624:000185292][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946624:000185387][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946634:000187498][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946634:000187593][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946644:000189702][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946644:000189794][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946654:000190907][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946654:000191010][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946664:000192114][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946664:000192218][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946674:000194315][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946674:000194403][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946684:000195520][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946684:000195613][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946694:000196724][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946694:000196819][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946704:000197934][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946704:000198050][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946714:000200134][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946714:000200232][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946724:000201338][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946724:000201441][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946734:000202542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946734:000202645][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946744:000204747][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946744:000204848][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946754:000205950][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946754:000206039][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946764:000207155][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946764:000207266][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946774:000208359][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946774:000208457][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946784:000210563][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946784:000210652][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946794:000211766][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946794:000211851][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946804:000212972][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946804:000213062][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946814:000214177][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946814:000214267][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946824:000216380][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946824:000216467][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946834:000217586][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946834:000217688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946844:000218789][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946844:000218876][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946854:000220994][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946854:000221092][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946864:000222198][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946864:000222291][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946874:000223402][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946874:000223491][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946884:000224606][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946884:000224697][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946894:000226812][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946894:000226909][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946904:000228015][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946904:000228100][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946914:000229219][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946914:000229322][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946924:000231431][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946924:000231529][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946934:000233630][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946934:000233724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946944:000234832][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946944:000234922][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946954:000236038][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946954:000236130][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946964:000238241][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946964:000238325][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946974:000239446][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946974:000239538][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946984:000240650][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946984:000240766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104946994:000241855][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104946994:000241946][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947004:000244065][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947004:000244185][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947014:000245264][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947014:000245368][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947024:000246467][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947024:000246558][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947034:000248672][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947034:000248769][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947044:000249878][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947044:000249973][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947054:000251081][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947054:000251181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947064:000252284][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947064:000252376][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947074:000254499][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947074:000254598][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947084:000255692][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947084:000255782][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947094:000256898][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947094:000256993][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947104:000258100][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947104:000258191][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947114:000260307][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947114:000260406][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947124:000261511][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947124:000261601][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947134:000262716][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947134:000262842][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947144:000264919][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947144:000265023][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947154:000266124][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947154:000266214][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947164:000267327][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947164:000267418][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947174:000268533][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947174:000268631][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947184:000270738][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947184:000270844][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947194:000271944][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947194:000272047][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947204:000273145][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947204:000273235][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947214:000275351][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947214:000275453][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947224:000277555][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947224:000277649][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947234:000278758][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947234:000278853][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947244:000279963][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947244:000280052][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947254:000282167][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947254:000282272][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947264:000283373][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947264:000283469][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947274:000284575][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947274:000284666][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947284:000285779][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947284:000285867][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947294:000287983][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947294:000288073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947304:000289193][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947304:000289303][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947314:000290393][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947314:000290491][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947324:000292596][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947324:000292692][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947334:000294802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947334:000294897][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947344:000296007][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947344:000296100][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947354:000297210][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947354:000297321][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947364:000299415][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947364:000299506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947374:000300621][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947374:000300723][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947384:000301822][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947384:000301911][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947394:000303027][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947394:000303116][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947404:000305232][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947404:000305329][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947414:000306437][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947414:000306528][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947424:000307640][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947424:000307728][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947434:000309846][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947434:000309953][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947444:000311048][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947444:000311133][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947454:000312253][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947454:000312341][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947464:000313457][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947464:000313548][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947474:000315662][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947474:000315750][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947484:000316866][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947484:000316952][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947494:000318072][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947494:000318171][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947504:000319274][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947504:000319373][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947514:000321478][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947514:000321564][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947524:000322684][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947524:000322771][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947534:000323888][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947534:000323992][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947544:000326093][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947544:000326200][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947554:000327296][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947554:000327386][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947564:000328500][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947564:000328584][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947574:000329704][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947574:000329808][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947584:000331910][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947584:000331996][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947594:000333114][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947594:000333205][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947604:000334323][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947604:000334436][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947614:000336527][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947614:000336630][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947624:000338727][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947624:000338814][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947634:000339932][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947634:000340029][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947644:000341137][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947644:000341233][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947654:000343342][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947654:000343439][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947664:000344544][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947664:000344632][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947674:000345751][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947674:000345852][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947684:000346953][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947684:000347040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947694:000349157][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947694:000349245][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947704:000350362][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947704:000350452][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947714:000351567][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947714:000351664][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947724:000353770][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947724:000353875][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947734:000355977][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947734:000356079][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947744:000357178][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947744:000357274][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947754:000358383][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947754:000358469][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947764:000360587][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947764:000360674][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947774:000361793][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947774:000361896][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947784:000362998][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947784:000363093][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947794:000364202][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947794:000364298][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947804:000366404][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947804:000366491][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947814:000367610][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947814:000367701][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947824:000368814][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947824:000368907][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947834:000371018][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947834:000371110][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947844:000372222][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947844:000372308][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947854:000373427][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947854:000373523][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947864:000374633][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947864:000374730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947874:000376835][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947874:000376922][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947884:000378040][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947884:000378127][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947894:000379245][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947894:000379343][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947904:000380453][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947904:000380568][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947914:000382655][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947914:000382755][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947924:000383857][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947924:000383950][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947934:000385062][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947934:000385158][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947944:000387267][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947944:000387387][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947954:000388472][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947954:000388568][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947964:000389674][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947964:000389761][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947974:000390881][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947974:000390984][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947984:000393082][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947984:000393166][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104947994:000394288][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104947994:000394385][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948004:000395492][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948004:000395585][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948014:000397702][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948014:000397804][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948024:000399900][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948024:000399988][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948034:000401106][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948034:000401212][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948044:000402310][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948044:000402395][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948054:000404512][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948054:000404606][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948064:000405719][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948064:000405811][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948074:000406921][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948074:000407010][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948084:000408126][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948084:000408216][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948094:000410332][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948094:000410447][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948104:000411536][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948104:000411633][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948114:000412739][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948114:000412829][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948124:000414944][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948124:000415042][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948134:000417149][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948134:000417251][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948144:000418351][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948144:000418441][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948154:000419556][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948154:000419648][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948164:000421760][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948164:000421860][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948174:000422965][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948174:000423058][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948184:000424170][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948184:000424260][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948194:000425375][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948194:000425465][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948204:000427584][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948204:000427698][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948214:000428785][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948214:000428884][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948224:000429988][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948224:000430083][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948234:000432193][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948234:000432296][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948244:000433397][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948244:000433496][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948254:000434602][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948254:000434701][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948264:000435804][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948264:000435895][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948274:000438011][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948274:000438114][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948284:000439213][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948284:000439302][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948294:000440417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948294:000440503][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948304:000441622][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948304:000441712][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948314:000443827][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948314:000443953][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948324:000445031][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948324:000445119][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948334:000446237][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948334:000446336][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948344:000448440][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948344:000448533][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948354:000449645][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948354:000449744][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948364:000450849][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948364:000450945][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948374:000452053][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948374:000452147][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948384:000454258][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948384:000454347][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948394:000455463][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948394:000455567][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948404:000456666][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948404:000456757][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948414:000458870][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948414:000458966][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948424:000461075][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948424:000461167][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948434:000462279][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948434:000462381][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948444:000463482][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948444:000463570][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948454:000465689][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948454:000465786][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948464:000466894][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948464:000467005][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948474:000468096][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948474:000468192][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948484:000469300][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948484:000469392][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948494:000471506][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948494:000471607][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948504:000472715][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948504:000472829][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948514:000473915][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948514:000474014][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948524:000476118][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948524:000476221][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948534:000477321][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948534:000477431][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948544:000478527][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948544:000478624][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948554:000479732][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948554:000479830][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948564:000481935][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948564:000482026][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948574:000483140][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948574:000483244][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948584:000484345][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948584:000484437][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948594:000485546][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948594:000485632][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948604:000487753][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948604:000487844][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948614:000488956][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948614:000489051][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948624:000490162][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948624:000490258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948634:000492366][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948634:000492476][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948644:000493570][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948644:000493660][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948654:000494773][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948654:000494864][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948664:000495979][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948664:000496073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948674:000498183][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948674:000498278][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948684:000499387][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948684:000499490][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948694:000500592][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948694:000500687][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948704:000502798][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948704:000502889][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948714:000505000][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948714:000505086][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948724:000506205][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948724:000506297][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948734:000507409][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948734:000507500][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948744:000509612][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948744:000509711][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948754:000510818][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948754:000510912][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948764:000512021][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948764:000512110][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948774:000513226][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948774:000513312][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948784:000515431][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948784:000515525][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948794:000516634][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948794:000516724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948804:000517843][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948804:000517957][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948814:000520045][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948814:000520154][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948824:000522249][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948824:000522345][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948834:000523451][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948834:000523544][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948844:000524657][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948844:000524754][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948854:000526861][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948854:000526959][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948864:000528066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948864:000528163][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948874:000529272][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948874:000529374][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948884:000530474][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948884:000530568][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948894:000532677][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948894:000532763][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948904:000533884][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948904:000533995][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948914:000535086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948914:000535174][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948924:000537292][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948924:000537388][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948934:000538497][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948934:000538599][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948944:000539699][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948944:000539790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948954:000540902][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948954:000540987][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948964:000543108][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948964:000543208][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948974:000544313][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948974:000544406][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948984:000545518][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948984:000545612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104948994:000546722][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104948994:000546818][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949004:000548926][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949004:000549020][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949014:000550129][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949014:000550224][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949024:000551335][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949024:000551429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949034:000553538][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949034:000553631][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949044:000554742][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949044:000554838][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949054:000555947][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949054:000556057][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949064:000557154][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949064:000557251][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949074:000559355][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949074:000559445][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949084:000560561][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949084:000560655][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949094:000561765][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949094:000561857][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949104:000563975][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949104:000564090][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949114:000566175][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949114:000566278][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949124:000567380][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949124:000567500][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949134:000568583][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949134:000568676][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949144:000570787][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949144:000570889][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949154:000571992][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949154:000572093][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949164:000573195][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949164:000573289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949174:000574401][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949174:000574504][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949184:000576603][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949184:000576696][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949194:000577807][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949194:000577898][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949204:000579013][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949204:000579108][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949214:000581217][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949214:000581319][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949224:000583422][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949224:000583525][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949234:000584626][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949234:000584728][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949244:000585830][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949244:000585920][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949254:000588034][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949254:000588129][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949264:000589239][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949264:000589334][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949274:000590443][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949274:000590554][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949284:000591647][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949284:000591742][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949294:000593853][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949294:000593952][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949304:000595055][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949304:000595149][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949314:000596260][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949314:000596350][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949324:000598465][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949324:000598569][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949334:000599669][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949334:000599762][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949344:000600872][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949344:000600968][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949354:000602077][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949354:000602172][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949364:000604280][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949364:000604369][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949374:000605485][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949374:000605576][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949384:000606692][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949384:000606789][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949394:000607895][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949394:000607986][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949404:000610105][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949404:000610217][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949414:000611304][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949414:000611405][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949424:000612509][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949424:000612608][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949434:000614711][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949434:000614811][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949444:000615917][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949444:000616015][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949454:000617121][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949454:000617218][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949464:000618326][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949464:000618422][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949474:000620530][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949474:000620637][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949484:000621734][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949484:000621826][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949494:000622938][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949494:000623056][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949504:000625153][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949504:000625255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949514:000627348][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949514:000627450][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949524:000628552][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949524:000628649][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949534:000629758][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949534:000629860][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949544:000631959][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949544:000632050][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949554:000633165][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949554:000633260][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949564:000634369][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949564:000634460][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949574:000635574][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949574:000635669][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949584:000637779][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949584:000637880][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949594:000638985][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949594:000639094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949604:000640185][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949604:000640274][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949614:000642389][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949614:000642487][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949624:000643595][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949624:000643689][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949634:000644800][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949634:000644899][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949644:000646003][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949644:000646112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949654:000648208][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949654:000648302][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949664:000649413][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949664:000649517][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949674:000650616][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949674:000650711][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949684:000651822][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949684:000651921][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949694:000654025][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949694:000654124][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949704:000655229][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949704:000655321][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949714:000656438][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949714:000656568][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949724:000658640][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949724:000658747][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949734:000659842][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949734:000659936][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949744:000661048][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949744:000661148][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949754:000662252][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949754:000662354][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949764:000664455][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949764:000664549][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949774:000665663][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949774:000665766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949784:000666864][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949784:000666957][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949794:000669069][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949794:000669161][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949804:000671273][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949804:000671367][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949814:000672485][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949814:000672580][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949824:000673681][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949824:000673781][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949834:000675888][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949834:000675992][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949844:000677089][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949844:000677181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949854:000678294][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949854:000678388][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949864:000679500][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949864:000679619][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949874:000681703][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949874:000681800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949884:000682907][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949884:000683002][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949894:000684114][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949894:000684213][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949904:000686316][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949904:000686412][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949914:000688520][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949914:000688614][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949924:000689725][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949924:000689828][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949934:000690929][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949934:000691024][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949944:000693135][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949944:000693233][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949954:000694338][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949954:000694440][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949964:000695541][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949964:000695630][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949974:000696744][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949974:000696836][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949984:000698952][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949984:000699048][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104949994:000700154][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104949994:000700247][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950004:000701359][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950004:000701454][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950014:000703569][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950014:000703700][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950024:000705770][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950024:000705869][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950034:000706972][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950034:000707065][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950044:000708178][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950044:000708278][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950054:000710382][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950054:000710478][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950064:000711587][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950064:000711685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950074:000712789][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950074:000712884][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950084:000713995][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950084:000714106][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950094:000716198][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950094:000716294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950104:000717404][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950104:000717503][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950114:000718607][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950114:000718700][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950124:000720812][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950124:000720902][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950134:000722016][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950134:000722110][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950144:000723220][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950144:000723309][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950154:000724424][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950154:000724510][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950164:000726631][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950164:000726730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950174:000727833][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950174:000727923][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950184:000729038][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950184:000729132][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950194:000731244][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950194:000731347][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950204:000733445][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950204:000733532][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950214:000734650][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950214:000734742][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950224:000735854][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950224:000735958][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950234:000738059][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950234:000738176][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950244:000739264][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950244:000739351][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950254:000740469][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950254:000740558][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950264:000741674][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950264:000741771][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950274:000743877][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950274:000743965][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950284:000745082][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950284:000745173][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950294:000746286][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950294:000746379][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950304:000748490][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950304:000748586][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950314:000750699][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950314:000750815][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950324:000751901][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950324:000751996][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950334:000753104][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950334:000753196][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950344:000755309][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950344:000755410][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950354:000756512][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950354:000756605][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950364:000757717][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950364:000757811][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950374:000758919][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950374:000759019][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950384:000761126][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950384:000761229][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950394:000762329][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950394:000762421][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950404:000763536][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950404:000763635][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950414:000765739][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950414:000765834][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950424:000766943][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950424:000767038][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950434:000768147][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950434:000768238][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950444:000769351][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950444:000769442][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950454:000771555][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950454:000771663][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950464:000772762][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950464:000772863][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950474:000773964][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950474:000774054][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950484:000775168][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950484:000775257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950494:000777373][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950494:000777469][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950504:000778578][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950504:000778670][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950514:000779781][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950514:000779873][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950524:000781987][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950524:000782081][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950534:000783190][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950534:000783288][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950544:000784396][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950544:000784490][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950554:000785598][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950554:000785691][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950564:000787802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950564:000787892][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950574:000789006][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950574:000789094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950584:000790213][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950584:000790307][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950594:000792422][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950594:000792512][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950604:000794621][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950604:000794727][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950614:000795829][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950614:000795944][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950624:000797031][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950624:000797129][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950634:000799233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950634:000799328][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950644:000800439][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950644:000800541][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950654:000801643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950654:000801737][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950664:000802847][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950664:000802945][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950674:000805051][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950674:000805171][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950684:000806254][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950684:000806346][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950694:000807458][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950694:000807547][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950704:000809665][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950704:000809769][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950714:000811869][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950714:000811968][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950724:000813074][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950724:000813165][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950734:000814278][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950734:000814377][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950744:000816481][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950744:000816571][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950754:000817685][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950754:000817771][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950764:000818890][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950764:000818985][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950774:000820093][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950774:000820184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950784:000822299][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950784:000822397][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950794:000823506][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950794:000823609][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950804:000824707][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950804:000824796][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950814:000826910][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950814:000827007][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950824:000828117][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950824:000828229][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950834:000829320][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950834:000829414][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950844:000830525][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950844:000830618][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950854:000832728][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950854:000832823][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950864:000833935][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950864:000834033][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950874:000835136][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950874:000835224][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950884:000836342][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950884:000836434][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950894:000838545][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950894:000838644][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950904:000839752][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950904:000839843][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950914:000840961][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950914:000841078][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950924:000843160][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950924:000843266][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950934:000844364][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950934:000844456][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950944:000845570][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950944:000845675][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950954:000846773][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950954:000846864][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950964:000848977][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950964:000849073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950974:000850182][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950974:000850274][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950984:000851385][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950984:000851474][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104950994:000853589][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104950994:000853685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951004:000855795][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951004:000855896][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951014:000856999][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951014:000857094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951024:000858202][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951024:000858294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951034:000860407][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951034:000860497][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951044:000861610][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951044:000861721][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951054:000862815][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951054:000862901][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951064:000864022][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951064:000864124][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951074:000866223][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951074:000866310][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951084:000867428][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951084:000867522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951094:000868634][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951094:000868729][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951104:000870837][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951104:000870934][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951114:000872040][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951114:000872128][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951124:000873246][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951124:000873339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951134:000874450][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951134:000874540][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951144:000876655][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951144:000876752][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951154:000877859][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951154:000877949][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951164:000879062][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951164:000879151][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951174:000880267][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951174:000880357][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951184:000882472][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951184:000882565][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951194:000883676][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951194:000883791][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951204:000884880][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951204:000884980][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951214:000887089][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951214:000887208][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951224:000888289][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951224:000888392][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951234:000889493][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951234:000889587][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951244:000890699][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951244:000890800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951254:000892902][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951254:000892998][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951264:000894106][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951264:000894223][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951274:000895311][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951274:000895407][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951284:000897516][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951284:000897608][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951294:000899719][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951294:000899807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951304:000900924][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951304:000901027][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951314:000902127][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951314:000902219][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951324:000904333][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951324:000904429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951334:000905536][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951334:000905628][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951344:000906741][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951344:000906836][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951354:000907943][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951354:000908032][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951364:000910152][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951364:000910249][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951374:000911353][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951374:000911444][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951384:000912560][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951384:000912661][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951394:000914763][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951394:000914867][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951404:000916966][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951404:000917060][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951414:000918170][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951414:000918279][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951424:000919377][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951424:000919475][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951434:000921579][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951434:000921674][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951444:000922784][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951444:000922875][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951454:000923989][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951454:000924082][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951464:000925194][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951464:000925290][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951474:000927397][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951474:000927490][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951484:000928601][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951484:000928695][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951494:000929806][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951494:000929899][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951504:000932010][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951504:000932103][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951514:000933222][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951514:000933342][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951524:000934418][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951524:000934512][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951534:000935624][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951534:000935718][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951544:000937830][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951544:000937938][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951554:000939033][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951554:000939131][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951564:000940237][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951564:000940338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951574:000941442][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951574:000941533][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951584:000943647][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951584:000943741][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951594:000944850][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951594:000944944][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951604:000946056][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951604:000946157][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951614:000948259][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951614:000948363][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951624:000949471][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951624:000949565][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951634:000950668][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951634:000950780][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951644:000951871][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951644:000951965][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951654:000954075][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951654:000954166][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951664:000955282][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951664:000955382][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951674:000956484][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951674:000956578][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951684:000958692][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951684:000958781][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951694:000960893][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951694:000960989][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951704:000962098][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951704:000962191][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951714:000963301][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951714:000963392][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951724:000965506][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951724:000965611][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951734:000966710][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951734:000966800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951744:000967914][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951744:000968003][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951754:000969120][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951754:000969212][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951764:000971322][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951764:000971409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951774:000972527][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951774:000972616][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951784:000973731][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951784:000973846][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951794:000975937][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951794:000976038][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951804:000978140][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951804:000978232][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951814:000979350][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951814:000979462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951824:000980549][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951824:000980641][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951834:000982756][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951834:000982855][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951844:000983958][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951844:000984050][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951854:000985163][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951854:000985263][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951864:000986367][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951864:000986464][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951874:000988572][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951874:000988668][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951884:000989777][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951884:000989874][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951894:000990980][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951894:000991072][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951904:000993187][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951904:000993288][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951914:000994388][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951914:000994479][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951924:000995592][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951924:000995682][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951934:000996797][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951934:000996895][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951944:000999001][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951944:000999094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951955:000000205][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951955:000000292][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951965:000001412][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951965:000001509][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951975:000002614][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951975:000002708][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951985:000004819][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951985:000004910][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104951995:000006024][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104951995:000006118][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952005:000007227][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952005:000007333][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952015:000009432][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952015:000009522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952025:000010636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952025:000010728][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952035:000011840][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952035:000011929][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952045:000013044][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952045:000013129][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952055:000015249][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952055:000015334][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952065:000016453][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952065:000016547][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952075:000017657][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952075:000017743][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952085:000019861][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952085:000019951][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952095:000022066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952095:000022152][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952105:000023271][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952105:000023357][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952115:000024480][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952115:000024593][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952125:000026680][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952125:000026772][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952135:000027885][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952135:000027978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952145:000029089][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952145:000029181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952155:000030293][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952155:000030407][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952165:000032499][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952165:000032595][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952175:000033701][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952175:000033792][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952185:000034905][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952185:000034997][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952195:000037109][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952195:000037207][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952205:000038316][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952205:000038415][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952215:000039519][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952215:000039608][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952225:000040724][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952225:000040842][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952235:000042927][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952235:000043021][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952245:000044132][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952245:000044222][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952255:000045336][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952255:000045424][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952265:000046542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952265:000046642][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952275:000048744][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952275:000048835][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952285:000049949][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952285:000050041][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952295:000051154][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952295:000051250][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952305:000053358][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952305:000053464][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952315:000054562][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952315:000054649][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952325:000055766][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952325:000055858][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952335:000056971][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952335:000057060][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952345:000059174][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952345:000059269][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952355:000060378][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952355:000060469][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952365:000061584][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952365:000061669][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952375:000063790][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952375:000063895][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952385:000065992][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952385:000066088][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952395:000067197][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952395:000067288][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952405:000068401][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952405:000068495][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952415:000070611][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952415:000070736][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952425:000071810][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952425:000071907][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952435:000073015][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952435:000073111][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952445:000074219][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952445:000074315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952455:000076423][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952455:000076517][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952465:000077628][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952465:000077727][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952475:000078831][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952475:000078923][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952485:000081035][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952485:000081131][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952495:000083239][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952495:000083331][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952505:000084446][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952505:000084544][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952515:000085648][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952515:000085740][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952525:000087854][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952525:000087953][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952535:000089066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952535:000089160][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952545:000090262][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952545:000090354][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952555:000091465][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952555:000091556][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952565:000093672][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952565:000093773][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952575:000094875][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952575:000094968][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952585:000096080][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952585:000096173][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952595:000098285][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952595:000098407][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952605:000100488][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952605:000100583][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952615:000101692][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952615:000101784][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952625:000102897][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952625:000102995][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952635:000105101][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952635:000105193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952645:000106304][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952645:000106392][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952655:000107510][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952655:000107605][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952665:000108715][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952665:000108812][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952675:000110917][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952675:000111007][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952685:000112121][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952685:000112213][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952695:000113327][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952695:000113421][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952705:000115533][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952705:000115637][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952715:000116741][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952715:000116855][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952725:000117940][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952725:000118035][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952735:000119145][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952735:000119240][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952745:000121349][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952745:000121467][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952755:000122553][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952755:000122648][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952765:000123758][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952765:000123853][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952775:000125963][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952775:000126055][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952785:000128166][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952785:000128263][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952795:000129369][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952795:000129460][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952805:000130577][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952805:000130677][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952815:000132779][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952815:000132893][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952825:000133983][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952825:000134080][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952835:000135187][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952835:000135280][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952845:000136392][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952845:000136483][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952855:000138596][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952855:000138685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952865:000139802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952865:000139904][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952875:000141005][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952875:000141096][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952885:000143208][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952885:000143306][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952895:000145416][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952895:000145515][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952905:000146618][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952905:000146712][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952915:000147822][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952915:000147912][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952925:000150027][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952925:000150123][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952935:000151231][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952935:000151322][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952945:000152435][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952945:000152527][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952955:000153640][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952955:000153731][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952965:000155843][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952965:000155953][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952975:000157048][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952975:000157137][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952985:000158252][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952985:000158344][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104952995:000160457][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104952995:000160556][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953005:000161662][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953005:000161758][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953015:000162866][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953015:000162958][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953025:000164073][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953025:000164189][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953035:000166275][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953035:000166380][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953045:000167481][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953045:000167585][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953055:000168683][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953055:000168780][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953065:000169889][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953065:000169987][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953075:000172092][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953075:000172189][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953085:000173295][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953085:000173386][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953095:000174499][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953095:000174589][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953105:000176707][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953105:000176816][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953115:000177910][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953115:000178006][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953125:000179112][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953125:000179205][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953135:000180319][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953135:000180414][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953145:000182520][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953145:000182612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953155:000183727][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953155:000183821][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953165:000184932][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953165:000185032][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953175:000187142][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953175:000187233][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953185:000189341][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953185:000189454][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953195:000190546][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953195:000190646][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953205:000191748][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953205:000191839][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953215:000193951][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953215:000194040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953225:000195157][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953225:000195249][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953235:000196361][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953235:000196453][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953245:000197565][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953245:000197656][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953255:000199770][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953255:000199860][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953265:000200975][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953265:000201069][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953275:000202178][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953275:000202268][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953285:000204384][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953285:000204486][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953295:000206587][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953295:000206677][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953305:000207791][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953305:000207876][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953315:000208996][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953315:000209283][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953325:000211205][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953325:000211319][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953335:000212407][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953335:000212521][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953345:000213611][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953345:000213706][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953355:000214816][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953355:000214915][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953365:000217018][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953365:000217110][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953375:000218223][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953375:000218318][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953385:000219427][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953385:000219518][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953395:000221630][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953395:000221733][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953405:000222836][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953405:000222949][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953415:000224040][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953415:000224136][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953425:000225243][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953425:000225331][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953435:000227448][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953435:000227539][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953445:000228658][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953445:000228744][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953455:000229856][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953455:000229943][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953465:000231063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953465:000231164][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953475:000233266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953475:000233356][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953485:000234468][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953485:000234559][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953495:000235676][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953495:000235773][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953505:000237877][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953505:000237967][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953515:000239082][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953515:000239173][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953525:000240288][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953525:000240383][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953535:000241492][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953535:000241584][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953545:000243695][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953545:000243784][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953555:000244900][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953555:000245009][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953565:000246104][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953565:000246197][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953575:000248307][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953575:000248394][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953585:000250513][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953585:000250605][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953595:000251716][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953595:000251800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953605:000252922][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953605:000253016][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953615:000255125][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953615:000255214][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953625:000256335][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953625:000256449][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953635:000257536][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953635:000257632][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953645:000258740][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953645:000258837][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953655:000260943][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953655:000261037][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953665:000262148][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953665:000262242][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953675:000263354][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953675:000263447][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953685:000265556][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953685:000265654][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953695:000266760][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953695:000266849][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953705:000267967][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953705:000268081][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953715:000269170][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953715:000269261][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953725:000271374][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953725:000271469][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953735:000272579][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953735:000272670][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953745:000273781][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953745:000273868][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953755:000274986][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953755:000275073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953765:000277193][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953765:000277293][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953775:000278395][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953775:000278505][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953785:000279601][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953785:000279697][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953795:000281806][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953795:000281914][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953805:000283008][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953805:000283101][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953815:000284211][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953815:000284299][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953825:000285418][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953825:000285514][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953835:000287621][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953835:000287711][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953845:000288826][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953845:000288914][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953855:000290032][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953855:000290130][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953865:000292237][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953865:000292332][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953875:000294438][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953875:000294527][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953885:000295643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953885:000295732][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953895:000296847][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953895:000296935][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953905:000299052][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953905:000299150][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953915:000300256][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953915:000300353][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953925:000301464][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953925:000301594][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953935:000302667][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953935:000302764][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953945:000304870][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953945:000304969][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953955:000306075][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953955:000306171][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953965:000307277][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953965:000307369][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953975:000309483][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953975:000309581][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953985:000311687][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953985:000311778][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104953995:000312890][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104953995:000312981][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954005:000314097][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954005:000314196][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954015:000316299][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954015:000316392][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954025:000317504][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954025:000317601][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954035:000318709][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954035:000318803][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954045:000319913][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954045:000320005][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954055:000322116][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954055:000322204][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954065:000323322][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954065:000323425][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954075:000324526][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954075:000324618][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954085:000326730][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954085:000326823][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954095:000327936][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954095:000328034][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954105:000329140][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954105:000329233][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954115:000330342][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954115:000330433][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954125:000332548][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954125:000332642][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954135:000333752][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954135:000333849][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954145:000334956][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954145:000335061][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954155:000336160][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954155:000336253][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954165:000338365][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954165:000338452][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954175:000339569][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954175:000339666][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954185:000340774][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954185:000340863][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954195:000342978][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954195:000343069][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954205:000344183][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954205:000344269][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954215:000345387][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954215:000345484][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954225:000346596][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954225:000346711][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954235:000348797][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954235:000348897][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954245:000350001][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954245:000350096][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954255:000351205][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954255:000351302][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954265:000353412][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954265:000353506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954275:000355614][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954275:000355712][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954285:000356816][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954285:000356910][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954295:000358022][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954295:000358134][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954305:000360227][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954305:000360333][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954315:000361431][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954315:000361522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954325:000362633][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954325:000362725][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954335:000363840][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954335:000363937][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954345:000366043][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954345:000366133][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954355:000367247][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954355:000367335][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954365:000368454][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954365:000368569][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954375:000370657][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954375:000370754][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954385:000372862][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954385:000372957][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954395:000374066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954395:000374164][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954405:000375268][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954405:000375353][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954415:000377473][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954415:000377567][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954425:000378678][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954425:000378773][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954435:000379881][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954435:000379971][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954445:000381086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954445:000381177][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954455:000383292][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954455:000383394][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954465:000384494][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954465:000384582][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954475:000385697][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954475:000385783][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954485:000387904][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954485:000388005][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954495:000389108][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954495:000389202][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954505:000390311][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954505:000390404][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954515:000391517][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954515:000391624][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954525:000393725][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954525:000393839][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954535:000394928][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954535:000395030][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954545:000396130][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954545:000396230][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954555:000397334][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954555:000397428][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954565:000399538][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954565:000399631][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954575:000400744][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954575:000400841][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954585:000401946][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954585:000402030][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954595:000404150][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954595:000404243][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954605:000405358][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954605:000405458][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954615:000406560][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954615:000406655][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954625:000407765][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954625:000407857][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954635:000409968][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954635:000410062][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954645:000411172][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954645:000411260][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954655:000412377][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954655:000412471][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954665:000414584][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954665:000414685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954675:000416786][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954675:000416879][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954685:000417990][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954685:000418080][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954695:000419197][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954695:000419298][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954705:000421398][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954705:000421492][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954715:000422602][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954715:000422691][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954725:000423808][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954725:000423901][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954735:000425012][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954735:000425121][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954745:000427215][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954745:000427315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954755:000428421][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954755:000428514][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954765:000429624][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954765:000429713][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954775:000431831][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954775:000431929][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954785:000433035][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954785:000433128][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954795:000434239][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954795:000434332][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954805:000435442][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954805:000435532][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954815:000437649][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954815:000437747][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954825:000438855][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954825:000438970][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954835:000440056][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954835:000440149][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954845:000441261][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954845:000441358][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954855:000443466][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954855:000443563][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954865:000444670][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954865:000444774][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954875:000445875][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954875:000445974][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954885:000448077][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954885:000448191][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954895:000449282][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954895:000449379][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954905:000450488][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954905:000450589][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954915:000451690][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954915:000451784][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954925:000453895][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954925:000453990][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954935:000455100][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954935:000455201][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954945:000456302][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954945:000456396][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954955:000458508][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954955:000458615][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954965:000460714][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954965:000460814][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954975:000461916][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954975:000462012][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954985:000463123][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954985:000463224][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104954995:000465327][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104954995:000465435][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955005:000466529][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955005:000466621][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955015:000467734][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955015:000467829][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955025:000468938][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955025:000469033][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955035:000471143][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955035:000471237][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955045:000472347][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955045:000472440][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955055:000473553][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955055:000473658][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955065:000475754][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955065:000475849][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955075:000477959][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955075:000478050][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955085:000479164][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955085:000479258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955095:000480369][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955095:000480466][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955105:000482572][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955105:000482682][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955115:000483777][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955115:000483871][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955125:000484984][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955125:000485105][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955135:000486186][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955135:000486285][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955145:000488390][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955145:000488490][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955155:000489596][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955155:000489693][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955165:000490800][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955165:000490898][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955175:000493005][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955175:000493115][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955185:000494207][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955185:000494300][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955195:000495412][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955195:000495506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955205:000496618][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955205:000496717][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955215:000498821][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955215:000498919][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955225:000500026][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955225:000500120][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955235:000501230][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955235:000501326][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955245:000502433][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955245:000502521][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955255:000504637][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955255:000504730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955265:000505851][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955265:000505988][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955275:000507048][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955275:000507149][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955285:000509251][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955285:000509359][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955295:000510460][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955295:000510572][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955305:000511659][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955305:000511756][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955315:000512863][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955315:000512955][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955325:000515069][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955325:000515185][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955335:000516273][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955335:000516371][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955345:000517477][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955345:000517571][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955355:000519683][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955355:000519777][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955365:000521885][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955365:000521977][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955375:000523090][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955375:000523184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955385:000524294][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955385:000524387][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955395:000526498][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955395:000526601][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955405:000527702][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955405:000527796][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955415:000528910][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955415:000529012][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955425:000530119][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955425:000530239][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955435:000532317][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955435:000532412][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955445:000533522][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955445:000533620][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955455:000534725][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955455:000534821][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955465:000536931][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955465:000537031][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955475:000539134][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955475:000539251][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955485:000540337][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955485:000540429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955495:000541542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955495:000541640][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955505:000543748][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955505:000543848][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955515:000544950][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955515:000545044][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955525:000546155][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955525:000546247][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955535:000547360][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955535:000547458][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955545:000549563][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955545:000549654][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955555:000550768][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955555:000550862][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955565:000551974][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955565:000552072][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955575:000554178][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955575:000554274][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955585:000555381][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955585:000555477][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955595:000556588][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955595:000556690][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955605:000557789][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955605:000557878][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955615:000559994][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955615:000560085][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955625:000561199][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955625:000561293][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955635:000562403][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955635:000562493][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955645:000563607][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955645:000563699][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955655:000565814][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955655:000565914][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955665:000567014][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955665:000567105][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955675:000568220][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955675:000568311][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955685:000570425][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955685:000570522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955695:000571629][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955695:000571740][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955705:000572833][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955705:000572927][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955715:000574038][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955715:000574129][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955725:000576247][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955725:000576365][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955735:000577446][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955735:000577544][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955745:000578652][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955745:000578753][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955755:000580863][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955755:000580966][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955765:000583060][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955765:000583162][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955775:000584265][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955775:000584368][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955785:000585467][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955785:000585558][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955795:000587672][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955795:000587770][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955805:000588880][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955805:000588983][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955815:000590080][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955815:000590177][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955825:000591285][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955825:000591379][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955835:000593491][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955835:000593586][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955845:000594693][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955845:000594802][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955855:000595898][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955855:000595997][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955865:000598104][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955865:000598213][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955875:000600308][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955875:000600402][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955885:000601511][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955885:000601606][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955895:000602718][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955895:000602821][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955905:000604919][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955905:000605008][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955915:000606123][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955915:000606229][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955925:000607330][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955925:000607423][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955935:000608533][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955935:000608630][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955945:000610736][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955945:000610828][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955955:000611942][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955955:000612032][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955965:000613145][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955965:000613235][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955975:000615349][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955975:000615450][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955985:000616555][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955985:000616647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104955995:000617758][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104955995:000617851][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956005:000618963][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956005:000619052][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956015:000621168][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956015:000621264][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956025:000622377][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956025:000622491][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956035:000623577][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956035:000623681][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956045:000625785][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956045:000625886][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956055:000627986][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956055:000628086][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956065:000629192][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956065:000629310][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956075:000630395][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956075:000630492][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956085:000632598][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956085:000632693][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956095:000633802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956095:000633895][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956105:000635010][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956105:000635112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956115:000636210][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956115:000636301][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956125:000638415][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956125:000638523][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956135:000639620][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956135:000639718][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956145:000640832][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956145:000640928][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956155:000643028][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956155:000643126][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956165:000645233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956165:000645331][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956175:000646437][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956175:000646524][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956185:000647642][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956185:000647742][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956195:000649846][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956195:000649945][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956205:000651049][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956205:000651140][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956215:000652254][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956215:000652344][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956225:000653458][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956225:000653560][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956235:000655663][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956235:000655752][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956245:000656866][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956245:000656958][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956255:000658073][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956255:000658170][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956265:000660275][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956265:000660369][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956275:000661479][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956275:000661574][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956285:000662684][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956285:000662793][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956295:000663888][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956295:000663978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956305:000666093][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956305:000666187][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956315:000667298][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956315:000667396][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956325:000668501][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956325:000668591][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956335:000669710][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956335:000669821][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956345:000671912][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956345:000672013][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956355:000673114][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956355:000673207][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956365:000674319][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956365:000674417][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956375:000676524][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956375:000676634][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956385:000677728][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956385:000677819][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956395:000678933][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956395:000679024][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956405:000680138][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956405:000680240][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956415:000682340][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956415:000682424][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956425:000683545][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956425:000683640][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956435:000684751][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956435:000684862][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956445:000686956][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956445:000687046][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956455:000689158][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956455:000689246][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956465:000690364][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956465:000690461][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956475:000691567][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956475:000691658][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956485:000693771][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956485:000693871][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956495:000694978][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956495:000695075][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956505:000696178][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956505:000696282][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956515:000697384][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956515:000697468][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956525:000699589][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956525:000699681][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956535:000700793][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956535:000700883][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956545:000701998][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956545:000702091][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956555:000704201][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956555:000704294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956565:000706405][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956565:000706496][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956575:000707610][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956575:000707702][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956585:000708815][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956585:000708909][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956595:000711019][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956595:000711108][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956605:000712224][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956605:000712313][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956615:000713429][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956615:000713528][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956625:000714632][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956625:000714727][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956635:000716842][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956635:000716961][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956645:000718043][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956645:000718143][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956655:000719244][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956655:000719361][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956665:000721451][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956665:000721549][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956675:000722655][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956675:000722752][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956685:000723858][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956685:000723951][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956695:000725062][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956695:000725158][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956705:000727269][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956705:000727369][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956715:000728470][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956715:000728560][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956725:000729674][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956725:000729763][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956735:000730881][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956735:000730977][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956745:000733083][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956745:000733175][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956755:000734288][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956755:000734379][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956765:000735495][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956765:000735594][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956775:000737696][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956775:000737785][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956785:000738903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956785:000739007][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956795:000740108][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956795:000740213][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956805:000741310][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956805:000741400][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956815:000743514][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956815:000743606][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956825:000744720][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956825:000744816][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956835:000745922][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956835:000746016][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956845:000748133][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956845:000748227][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956855:000750334][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956855:000750435][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956865:000751536][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956865:000751627][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956875:000752739][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956875:000752846][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956885:000754945][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956885:000755036][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956895:000756149][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956895:000756237][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956905:000757354][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956905:000757446][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956915:000758558][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956915:000758654][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956925:000760761][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956925:000760846][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956935:000761971][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956935:000762085][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956945:000763173][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956945:000763280][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956955:000765375][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956955:000765480][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956965:000767581][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956965:000767681][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956975:000768785][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956975:000768882][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956985:000769988][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956985:000770075][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104956995:000772192][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104956995:000772284][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957005:000773399][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957005:000773496][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957015:000774600][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957015:000774691][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957025:000775804][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957025:000775912][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957035:000778011][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957035:000778105][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957045:000779213][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957045:000779299][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957055:000780425][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957055:000780509][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957065:000782625][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957065:000782730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957075:000783826][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957075:000783922][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957085:000785031][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957085:000785123][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957095:000786236][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957095:000786352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957105:000788440][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957105:000788528][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957115:000789644][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957115:000789734][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957125:000790850][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957125:000790942][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957135:000792052][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957135:000792142][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957145:000794258][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957145:000794349][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957155:000795462][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957155:000795554][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957165:000796665][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957165:000796749][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957175:000798870][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957175:000798962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957185:000800075][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957185:000800170][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957195:000801279][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957195:000801366][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957205:000802483][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957205:000802573][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957215:000804688][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957215:000804784][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957225:000805891][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957225:000805977][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957235:000807103][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957235:000807220][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957245:000809302][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957245:000809425][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957255:000811505][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957255:000811600][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957265:000812711][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957265:000812815][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957275:000813916][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957275:000814020][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957285:000816118][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957285:000816209][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957295:000817323][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957295:000817416][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957305:000818529][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957305:000818629][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957315:000819732][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957315:000819836][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957325:000821935][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957325:000822026][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957335:000823141][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957335:000823237][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957345:000824343][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957345:000824435][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957355:000826548][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957355:000826647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957365:000827756][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957365:000827855][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957375:000828957][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957375:000829054][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957385:000830163][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957385:000830261][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957395:000832367][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957395:000832484][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957405:000833569][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957405:000833661][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957415:000834774][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957415:000834867][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957425:000835979][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957425:000836073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957435:000838183][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957435:000838276][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957445:000839389][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957445:000839483][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957455:000840594][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957455:000840695][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957465:000842795][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957465:000842910][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957475:000844001][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957475:000844095][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957485:000845205][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957485:000845300][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957495:000846408][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957495:000846497][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957505:000848613][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957505:000848704][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957515:000849819][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957515:000849914][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957525:000851022][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957525:000851112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957535:000853234][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957535:000853350][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957545:000855432][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957545:000855532][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957555:000856636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957555:000856729][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957565:000857840][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957565:000857936][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957575:000860046][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957575:000860147][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957585:000861248][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957585:000861345][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957595:000862452][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957595:000862544][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957605:000863660][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957605:000863762][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957615:000865861][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957615:000865967][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957625:000867066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957625:000867160][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957635:000868271][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957635:000868366][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957645:000870475][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957645:000870569][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957655:000872678][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957655:000872766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957665:000873886][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957665:000873986][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957675:000875087][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957675:000875175][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957685:000877293][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957685:000877396][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957695:000878498][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957695:000878600][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957705:000879699][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957705:000879791][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957715:000880903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957715:000880990][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957725:000883110][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957725:000883207][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957735:000884313][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957735:000884406][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957745:000885517][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957745:000885611][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957755:000887722][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957755:000887812][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957765:000888926][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957765:000889023][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957775:000890132][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957775:000890228][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957785:000891336][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957785:000891434][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957795:000893539][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957795:000893625][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957805:000894742][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957805:000894835][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957815:000895951][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957815:000896054][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957825:000897152][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957825:000897245][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957835:000899362][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957835:000899495][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957845:000900564][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957845:000900667][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957855:000901766][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957855:000901862][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957865:000903970][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957865:000904074][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957875:000905174][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957875:000905273][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957885:000906379][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957885:000906470][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957895:000907583][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957895:000907673][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957905:000909790][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957905:000909891][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957915:000910991][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957915:000911085][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957925:000912196][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957925:000912289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957935:000914403][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957935:000914496][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957945:000916605][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957945:000916703][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957955:000917808][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957955:000917896][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957965:000919016][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957965:000919115][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957975:000921218][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957975:000921307][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957985:000922424][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957985:000922539][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104957995:000923628][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104957995:000923726][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958005:000924829][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958005:000924922][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958015:000927034][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958015:000927123][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958025:000928239][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958025:000928340][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958035:000929444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958035:000929547][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958045:000931647][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958045:000931746][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958055:000933853][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958055:000933969][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958065:000935055][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958065:000935143][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958075:000936262][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958075:000936354][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958085:000938465][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958085:000938560][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958095:000939669][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958095:000939766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958105:000940873][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958105:000940970][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958115:000942079][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958115:000942175][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958125:000944282][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958125:000944369][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958135:000945492][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958135:000945606][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958145:000946692][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958145:000946788][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958155:000948896][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958155:000949005][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958165:000950100][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958165:000950193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958175:000951305][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958175:000951408][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958185:000952509][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958185:000952603][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958195:000954713][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958195:000954809][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958205:000955921][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958205:000956042][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958215:000957121][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958215:000957218][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958225:000958326][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958225:000958419][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958235:000960532][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958235:000960627][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958245:000961735][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958245:000961832][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958255:000962938][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958255:000963027][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958265:000965146][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958265:000965255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958275:000966347][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958275:000966437][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958285:000967552][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958285:000967651][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958295:000968758][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958295:000968856][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958305:000970960][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958305:000971046][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958315:000972165][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958315:000972255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958325:000973369][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958325:000973468][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958335:000975573][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958335:000975664][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958345:000977778][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958345:000977871][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958355:000978982][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958355:000979076][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958365:000980186][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958365:000980277][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958375:000982390][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958375:000982475][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958385:000983595][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958385:000983687][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958395:000984799][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958395:000984885][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958405:000986007][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958405:000986103][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958415:000988208][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958415:000988312][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958425:000989412][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958425:000989520][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958435:000990623][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958435:000990737][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958445:000992823][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958445:000992934][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958455:000995027][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958455:000995125][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958465:000996230][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958465:000996328][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958475:000997435][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958475:000997531][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958485:000999640][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958485:000999740][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958496:000000843][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958496:000000933][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958506:000002051][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958506:000002154][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958516:000003250][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958516:000003339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958526:000005457][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958526:000005562][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958536:000006661][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958536:000006757][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958546:000007866][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958546:000007961][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958556:000010068][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958556:000010167][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958566:000011276][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958566:000011377][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958576:000012478][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958576:000012593][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958586:000013685][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958586:000013789][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958596:000015889][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958596:000015989][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958606:000017090][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958606:000017183][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958616:000018295][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958616:000018381][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958626:000020501][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958626:000020598][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958636:000022704][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958636:000022795][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958646:000023908][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958646:000024020][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958656:000025115][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958656:000025212][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958666:000027316][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958666:000027409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958676:000028521][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958676:000028611][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958686:000029725][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958686:000029819][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958696:000030929][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958696:000031015][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958706:000033134][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958706:000033231][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958716:000034339][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958716:000034428][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958726:000035542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958726:000035629][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958736:000037753][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958736:000037869][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958746:000039954][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958746:000040058][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958756:000041157][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958756:000041257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958766:000042361][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958766:000042465][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958776:000044567][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958776:000044665][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958786:000045771][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958786:000045869][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958796:000046973][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958796:000047082][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958806:000048181][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958806:000048284][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958816:000050381][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958816:000050472][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958826:000051587][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958826:000051688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958836:000052791][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958836:000052889][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958846:000054995][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958846:000055100][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958856:000056198][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958856:000056288][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958866:000057406][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958866:000057508][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958876:000058607][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958876:000058698][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958886:000060812][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958886:000060911][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958896:000062020][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958896:000062124][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958906:000063220][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958906:000063318][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958916:000064425][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958916:000064517][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958926:000066631][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958926:000066730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958936:000067833][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958936:000067922][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958946:000069038][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958946:000069133][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958956:000071243][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958956:000071349][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958966:000072448][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958966:000072553][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958976:000073651][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958976:000073746][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958986:000074857][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958986:000074958][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104958996:000077059][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104958996:000077145][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959006:000078266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959006:000078364][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959016:000079468][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959016:000079578][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959026:000081675][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959026:000081766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959036:000083882][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959036:000083996][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959046:000085084][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959046:000085193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959056:000086287][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959056:000086390][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959066:000088491][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959066:000088591][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959076:000089696][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959076:000089798][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959086:000090900][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959086:000091000][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959096:000092104][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959096:000092199][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959106:000094308][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959106:000094404][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959116:000095511][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959116:000095601][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959126:000096718][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959126:000096813][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959136:000098922][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959136:000099026][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959146:000101125][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959146:000101220][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959156:000102328][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959156:000102421][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959166:000103535][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959166:000103653][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959176:000105737][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959176:000105827][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959186:000106944][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959186:000107040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959196:000108150][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959196:000108255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959206:000109352][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959206:000109450][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959216:000111555][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959216:000111649][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959226:000112761][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959226:000112858][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959236:000113964][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959236:000114055][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959246:000116169][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959246:000116268][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959256:000117375][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959256:000117478][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959266:000118577][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959266:000118669][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959276:000119780][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959276:000119870][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959286:000121986][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959286:000122084][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959296:000123189][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959296:000123281][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959306:000124395][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959306:000124489][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959316:000125599][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959316:000125692][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959326:000127805][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959326:000127901][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959336:000129013][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959336:000129126][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959346:000130214][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959346:000130315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959356:000132417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959356:000132523][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959366:000133621][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959366:000133721][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959376:000134826][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959376:000134929][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959386:000136030][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959386:000136141][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959396:000138233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959396:000138325][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959406:000139439][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959406:000139539][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959416:000140644][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959416:000140739][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959426:000142853][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959426:000142948][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959436:000145052][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959436:000145157][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959446:000146254][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959446:000146344][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959456:000147461][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959456:000147559][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959466:000149665][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959466:000149761][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959476:000150869][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959476:000150960][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959486:000152072][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959486:000152167][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959496:000153281][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959496:000153389][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959506:000155480][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959506:000155572][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959516:000156686][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959516:000156777][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959526:000157891][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959526:000157993][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959536:000160094][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959536:000160218][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959546:000162298][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959546:000162389][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959556:000163504][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959556:000163596][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959566:000164707][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959566:000164796][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959576:000166911][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959576:000167004][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959586:000168116][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959586:000168211][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959596:000169320][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959596:000169413][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959606:000170526][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959606:000170634][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959616:000172730][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959616:000172826][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959626:000173933][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959626:000174022][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959636:000175137][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959636:000175225][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959646:000177346][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959646:000177461][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959656:000178548][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959656:000178652][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959666:000179750][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959666:000179842][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959676:000180957][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959676:000181060][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959686:000183161][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959686:000183255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959696:000184363][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959696:000184463][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959706:000185569][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959706:000185663][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959716:000186774][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959716:000186877][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959726:000188977][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959726:000189069][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959736:000190184][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959736:000190285][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959746:000191384][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959746:000191474][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959756:000193590][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959756:000193711][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959766:000194794][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959766:000194888][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959776:000195998][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959776:000196089][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959786:000197202][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959786:000197294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959796:000199411][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959796:000199518][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959806:000200611][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959806:000200703][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959816:000201815][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959816:000201900][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959826:000204021][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959826:000204121][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959836:000206226][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959836:000206323][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959846:000207428][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959846:000207520][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959856:000208637][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959856:000208739][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959866:000210837][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959866:000210926][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959876:000212041][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959876:000212137][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959886:000213246][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959886:000213339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959896:000214450][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959896:000214540][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959906:000216655][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959906:000216752][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959916:000217860][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959916:000217957][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959926:000219063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959926:000219151][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959936:000221267][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959936:000221364][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959946:000222477][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959946:000222591][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959956:000223678][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959956:000223780][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959966:000224881][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959966:000224974][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959976:000227087][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959976:000227205][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959986:000228290][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959986:000228384][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104959996:000229493][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104959996:000229586][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960006:000230699][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960006:000230790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960016:000232903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960016:000232995][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960026:000234105][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960026:000234197][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960036:000235312][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960036:000235411][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960046:000237514][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960046:000237603][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960056:000238720][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960056:000238823][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960066:000239923][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960066:000240016][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960076:000241128][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960076:000241216][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960086:000243333][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960086:000243424][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960096:000244540][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960096:000244645][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960106:000245741][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960106:000245827][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960116:000247946][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960116:000248034][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960126:000250151][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960126:000250269][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960136:000251354][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960136:000251449][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960146:000252561][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960146:000252661][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960156:000254764][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960156:000254866][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960166:000255967][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960166:000256052][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960176:000257172][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960176:000257260][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960186:000258377][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960186:000258470][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960196:000260580][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960196:000260691][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960206:000261785][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960206:000261878][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960216:000262991][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960216:000263094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960226:000265192][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960226:000265285][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960236:000267397][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960236:000267487][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960246:000268608][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960246:000268724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960256:000269807][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960256:000269906][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960266:000272011][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960266:000272105][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960276:000273218][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960276:000273320][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960286:000274421][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960286:000274518][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960296:000275624][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960296:000275718][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960306:000277829][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960306:000277924][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960316:000279033][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960316:000279129][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960326:000280236][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960326:000280328][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960336:000282444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960336:000282555][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960346:000283646][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960346:000283754][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960356:000284850][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960356:000284946][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960366:000286054][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960366:000286148][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960376:000288258][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960376:000288349][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960386:000289465][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960386:000289565][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960396:000290671][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960396:000290779][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960406:000291871][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960406:000291961][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960416:000294076][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960416:000294168][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960426:000295282][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960426:000295384][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960436:000296485][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960436:000296581][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960446:000298690][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960446:000298794][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960456:000299896][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960456:000300001][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960466:000301099][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960466:000301196][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960476:000302302][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960476:000302396][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960486:000304506][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960486:000304606][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960496:000305712][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960496:000305804][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960506:000306915][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960506:000307007][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960516:000309123][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960516:000309217][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960526:000311323][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960526:000311414][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960536:000312527][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960536:000312623][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960546:000313738][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960546:000313854][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960556:000315940][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960556:000316044][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960566:000317142][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960566:000317256][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960576:000318347][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960576:000318459][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960586:000319549][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960586:000319639][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960596:000321756][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960596:000321853][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960606:000322958][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960606:000323048][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960616:000324163][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960616:000324256][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960626:000326367][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960626:000326466][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960636:000328574][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960636:000328670][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960646:000329775][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960646:000329864][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960656:000330981][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960656:000331069][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960666:000333185][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960666:000333277][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960676:000334388][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960676:000334477][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960686:000335593][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960686:000335685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960696:000336801][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960696:000336904][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960706:000339009][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960706:000339101][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960716:000340206][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960716:000340313][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960726:000341411][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960726:000341507][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960736:000343613][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960736:000343717][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960746:000344820][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960746:000344914][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960756:000346023][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960756:000346116][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960766:000347228][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960766:000347315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960776:000349432][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960776:000349525][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960786:000350636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960786:000350726][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960796:000351841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960796:000351931][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960806:000353045][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960806:000353142][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960816:000355251][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960816:000355347][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960826:000356453][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960826:000356548][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960836:000357658][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960836:000357747][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960846:000359867][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960846:000359994][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960856:000361069][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960856:000361172][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960866:000362272][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960866:000362368][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960876:000363478][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960876:000363575][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960886:000365680][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960886:000365772][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960896:000366884][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960896:000366982][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960906:000368090][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960906:000368188][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960916:000370292][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960916:000370388][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960926:000372498][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960926:000372590][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960936:000373705][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960936:000373822][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960946:000374906][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960946:000374995][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960956:000377111][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960956:000377206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960966:000378316][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960966:000378417][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960976:000379519][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960976:000379610][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960986:000380726][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960986:000380821][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104960996:000382930][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104960996:000383034][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961006:000384134][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961006:000384223][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961016:000385337][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961016:000385429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961026:000387542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961026:000387646][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961036:000388744][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961036:000388835][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961046:000389949][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961046:000390043][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961056:000391156][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961056:000391257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961066:000393357][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961066:000393445][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961076:000394562][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961076:000394656][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961086:000395767][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961086:000395873][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961096:000396971][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961096:000397064][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961106:000399175][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961106:000399268][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961116:000400380][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961116:000400474][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961126:000401583][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961126:000401672][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961136:000403788][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961136:000403885][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961146:000404997][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961146:000405112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961156:000406198][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961156:000406311][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961166:000407402][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961166:000407496][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961176:000409606][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961176:000409700][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961186:000410811][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961186:000410908][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961196:000412014][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961196:000412109][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961206:000414220][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961206:000414312][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961216:000416423][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961216:000416516][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961226:000417628][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961226:000417721][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961236:000418835][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961236:000418936][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961246:000421036][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961246:000421130][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961256:000422241][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961256:000422333][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961266:000423445][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961266:000423536][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961276:000424648][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961276:000424738][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961286:000426854][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961286:000426947][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961296:000428061][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961296:000428166][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961306:000429263][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961306:000429376][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961316:000431466][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961316:000431564][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961326:000433672][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961326:000433766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961336:000434874][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961336:000434968][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961346:000436081][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961346:000436178][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961356:000438287][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961356:000438386][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961366:000439488][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961366:000439579][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961376:000440693][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961376:000440787][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961386:000441898][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961386:000441995][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961396:000444102][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961396:000444192][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961406:000445307][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961406:000445401][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961416:000446512][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961416:000446612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961426:000448713][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961426:000448803][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961436:000449918][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961436:000450007][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961446:000451128][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961446:000451243][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961456:000452327][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961456:000452425][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961466:000454533][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961466:000454633][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961476:000455737][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961476:000455838][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961486:000456941][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961486:000457036][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961496:000458145][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961496:000458242][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961506:000460350][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961506:000460448][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961516:000461554][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961516:000461647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961526:000462758][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961526:000462869][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961536:000464964][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961536:000465077][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961546:000466166][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961546:000466256][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961556:000467370][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961556:000467457][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961566:000468576][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961566:000468668][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961576:000470780][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961576:000470873][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961586:000471985][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961586:000472078][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961596:000473191][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961596:000473298][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961606:000475394][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961606:000475487][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961616:000477598][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961616:000477692][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961626:000478809][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961626:000478911][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961636:000480005][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961636:000480098][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961646:000482210][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961646:000482311][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961656:000483417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961656:000483520][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961666:000484617][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961666:000484706][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961676:000485823][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961676:000485930][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961686:000488027][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961686:000488118][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961696:000489232][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961696:000489328][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961706:000490436][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961706:000490529][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961716:000492640][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961716:000492739][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961726:000494845][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961726:000494937][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961736:000496049][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961736:000496143][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961746:000497259][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961746:000497391][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961756:000499458][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961756:000499551][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961766:000500665][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961766:000500765][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961776:000501867][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961776:000501964][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961786:000503071][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961786:000503164][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961796:000505274][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961796:000505368][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961806:000506480][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961806:000506573][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961816:000507684][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961816:000507779][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961826:000509887][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961826:000509987][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961836:000511093][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961836:000511193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961846:000512296][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961846:000512384][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961856:000513501][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961856:000513597][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961866:000515706][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961866:000515803][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961876:000516908][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961876:000516998][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961886:000518113][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961886:000518206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961896:000519322][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961896:000519441][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961906:000521522][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961906:000521613][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961916:000522726][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961916:000522816][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961926:000523931][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961926:000524026][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961936:000526136][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961936:000526233][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961946:000527341][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961946:000527442][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961956:000528543][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961956:000528636][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961966:000529748][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961966:000529833][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961976:000531953][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961976:000532049][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961986:000533158][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961986:000533249][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104961996:000534361][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104961996:000534451][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962006:000536573][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962006:000536665][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962016:000538771][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962016:000538866][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962026:000539975][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962026:000540064][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962036:000541178][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962036:000541264][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962046:000543388][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962046:000543502][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962056:000544589][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962056:000544690][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962066:000545794][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962066:000545894][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962076:000546996][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962076:000547091][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962086:000549203][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962086:000549298][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962096:000550407][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962096:000550503][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962106:000551611][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962106:000551707][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962116:000553813][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962116:000553931][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962126:000556019][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962126:000556112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962136:000557224][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962136:000557326][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962146:000558426][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962146:000558516][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962156:000560630][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962156:000560721][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962166:000561836][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962166:000561927][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962176:000563040][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962176:000563134][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962186:000564245][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962186:000564345][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962196:000566452][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962196:000566556][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962206:000567652][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962206:000567736][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962216:000568857][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962216:000568953][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962226:000571062][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962226:000571167][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962236:000572266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962236:000572356][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962246:000573470][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962246:000573561][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962256:000574676][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962256:000574779][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962266:000576878][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962266:000576984][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962276:000578082][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962276:000578174][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962286:000579288][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962286:000579384][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962296:000580492][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962296:000580587][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962306:000582697][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962306:000582788][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962316:000583900][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962316:000583992][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962326:000585105][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962326:000585197][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962336:000587309][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962336:000587430][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962346:000588519][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962346:000588632][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962356:000589719][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962356:000589820][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962366:000590924][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962366:000591026][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962376:000593127][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962376:000593226][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962386:000594331][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962386:000594427][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962396:000595537][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962396:000595632][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962406:000597739][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962406:000597841][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962416:000599944][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962416:000600040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962426:000601149][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962426:000601243][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962436:000602355][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962436:000602455][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962446:000604556][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962446:000604642][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962456:000605761][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962456:000605863][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962466:000606974][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962466:000607109][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962476:000608170][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962476:000608266][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962486:000610375][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962486:000610502][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962496:000611582][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962496:000611708][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962506:000612784][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962506:000612880][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962516:000614987][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962516:000615092][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962526:000616194][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962526:000616297][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962536:000617403][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962536:000617501][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962546:000618601][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962546:000618699][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962556:000620805][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962556:000620900][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962566:000622009][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962566:000622096][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962576:000623212][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962576:000623299][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962586:000624420][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962586:000624524][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962596:000626621][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962596:000626713][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962606:000627827][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962606:000627917][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962616:000629031][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962616:000629126][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962626:000631234][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962626:000631339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962636:000632438][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962636:000632548][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962646:000633648][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962646:000633761][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962656:000634851][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962656:000634950][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962666:000637054][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962666:000637156][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962676:000638257][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962676:000638353][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962686:000639463][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962686:000639559][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962696:000641669][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962696:000641768][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962706:000643871][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962706:000643985][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962716:000645074][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962716:000645164][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962726:000646279][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962726:000646378][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962736:000648486][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962736:000648596][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962746:000649687][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962746:000649780][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962756:000650891][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962756:000650982][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962766:000652095][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962766:000652188][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962776:000654300][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962776:000654386][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962786:000655506][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962786:000655607][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962796:000656711][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962796:000656817][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962806:000658912][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962806:000658999][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962816:000661116][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962816:000661203][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962826:000662322][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962826:000662427][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962836:000663526][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962836:000663618][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962846:000665731][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962846:000665824][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962856:000666937][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962856:000667060][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962866:000668140][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962866:000668237][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962876:000669343][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962876:000669436][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962886:000671548][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962886:000671641][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962896:000672751][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962896:000672842][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962906:000673957][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962906:000674062][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962916:000676160][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962916:000676255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962926:000677365][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962926:000677452][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962936:000678568][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962936:000678659][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962946:000679774][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962946:000679871][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962956:000681981][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962956:000682093][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962966:000683184][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962966:000683287][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962976:000684389][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962976:000684485][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962986:000685593][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962986:000685694][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104962996:000687797][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104962996:000687896][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963006:000689000][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963006:000689096][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963016:000690204][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963016:000690297][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963026:000692409][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963026:000692517][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963036:000693615][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963036:000693717][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963046:000694815][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963046:000694907][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963056:000696021][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963056:000696116][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963066:000698226][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963066:000698324][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963076:000699429][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963076:000699529][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963086:000700636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963086:000700727][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963096:000702844][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963096:000702948][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963106:000705043][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963106:000705136][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963116:000706247][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963116:000706338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963126:000707452][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963126:000707544][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963136:000709655][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963136:000709744][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963146:000710862][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963146:000710961][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963156:000712065][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963156:000712156][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963166:000713269][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963166:000713356][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963176:000715472][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963176:000715557][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963186:000716679][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963186:000716774][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963196:000717882][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963196:000717973][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963206:000720086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963206:000720184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963216:000721292][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963216:000721384][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963226:000722495][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963226:000722610][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963236:000723699][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963236:000723789][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963246:000725904][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963246:000726001][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963256:000727113][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963256:000727225][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963266:000728314][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963266:000728418][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963276:000729518][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963276:000729612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963286:000731722][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963286:000731820][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963296:000732926][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963296:000733039][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963306:000734129][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963306:000734222][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963316:000736333][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963316:000736429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963326:000737539][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963326:000737634][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963336:000738744][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963336:000738843][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963346:000739948][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963346:000740039][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963356:000742151][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963356:000742239][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963366:000743356][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963366:000743452][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963376:000744560][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963376:000744647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963386:000745766][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963386:000745863][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963396:000747971][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963396:000748073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963406:000749173][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963406:000749259][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963416:000750377][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963416:000750467][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963426:000752582][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963426:000752686][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963436:000753786][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963436:000753871][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963446:000754991][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963446:000755107][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963456:000756203][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963456:000756301][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963466:000758399][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963466:000758490][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963476:000759603][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963476:000759688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963486:000760808][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963486:000760902][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963496:000763012][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963496:000763106][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963506:000765217][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963506:000765312][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963516:000766420][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963516:000766517][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963526:000767625][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963526:000767710][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963536:000769830][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963536:000769915][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963546:000771033][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963546:000771124][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963556:000772245][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963556:000772364][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963566:000773444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963566:000773547][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963576:000775648][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963576:000775743][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963586:000776852][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963586:000776945][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963596:000778056][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963596:000778146][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963606:000780261][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963606:000780366][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963616:000781464][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963616:000781558][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963626:000782669][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963626:000782767][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963636:000783875][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963636:000783971][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963646:000786076][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963646:000786164][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963656:000787281][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963656:000787372][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963666:000788486][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963666:000788609][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963676:000789689][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963676:000789776][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963686:000791895][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963686:000791983][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963696:000793102][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963696:000793204][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963706:000794303][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963706:000794395][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963716:000796508][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963716:000796610][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963726:000797712][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963726:000797803][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963736:000798916][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963736:000799001][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963746:000800122][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963746:000800224][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963756:000802327][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963756:000802428][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963766:000803528][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963766:000803621][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963776:000804733][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963776:000804819][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963786:000806940][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963786:000807032][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963796:000809141][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963796:000809227][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963806:000810347][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963806:000810437][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963816:000811553][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963816:000811671][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963826:000813754][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963826:000813854][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963836:000814958][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963836:000815045][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963846:000816164][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963846:000816258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963856:000817373][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963856:000817487][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963866:000819575][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963866:000819680][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963876:000820777][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963876:000820872][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963886:000821982][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963886:000822093][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963896:000824186][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963896:000824277][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963906:000826393][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963906:000826500][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963916:000827594][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963916:000827685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963926:000828799][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963926:000828892][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963936:000831005][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963936:000831105][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963946:000832207][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963946:000832294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963956:000833412][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963956:000833497][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963966:000834617][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963966:000834713][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963976:000836819][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963976:000836905][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963986:000838026][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963986:000838127][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104963996:000839233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104963996:000839339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964006:000841433][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964006:000841536][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964016:000842639][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964016:000842733][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964026:000843842][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964026:000843939][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964036:000845047][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964036:000845155][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964046:000847251][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964046:000847350][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964056:000848457][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964056:000848556][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964066:000849659][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964066:000849752][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964076:000850864][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964076:000850955][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964086:000853068][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964086:000853162][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964096:000854272][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964096:000854366][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964106:000855477][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964106:000855571][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964116:000857681][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964116:000857785][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964126:000858886][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964126:000858982][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964136:000860089][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964136:000860175][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964146:000861295][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964146:000861386][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964156:000863504][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964156:000863621][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964166:000864705][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964166:000864807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964176:000865909][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964176:000866004][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964186:000868114][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964186:000868207][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964196:000870316][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964196:000870408][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964206:000871522][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964206:000871624][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964216:000872724][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964216:000872812][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964226:000874930][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964226:000875032][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964236:000876135][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964236:000876235][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964246:000877338][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964246:000877428][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964256:000878542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964256:000878652][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964266:000880747][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964266:000880843][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964276:000881951][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964276:000882035][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964286:000883156][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964286:000883251][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964296:000885362][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964296:000885468][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964306:000887563][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964306:000887653][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964316:000888767][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964316:000888853][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964326:000889972][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964326:000890067][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964336:000892176][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964336:000892262][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964346:000893381][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964346:000893473][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964356:000894585][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964356:000894676][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964366:000895789][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964366:000895875][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964376:000897994][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964376:000898085][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964386:000899197][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964386:000899290][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964396:000900402][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964396:000900493][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964406:000902607][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964406:000902717][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964416:000903811][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964416:000903898][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964426:000905015][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964426:000905104][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964436:000906219][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964436:000906315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964446:000908424][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964446:000908512][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964456:000909633][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964456:000909747][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964466:000910835][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964466:000910937][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964476:000912038][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964476:000912141][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964486:000914241][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964486:000914340][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964496:000915445][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964496:000915541][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964506:000916651][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964506:000916752][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964516:000918853][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964516:000918941][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964526:000920058][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964526:000920155][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964536:000921266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964536:000921366][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964546:000922466][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964546:000922553][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964556:000924672][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964556:000924763][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964566:000925899][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964566:000926000][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964576:000927081][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964576:000927172][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964586:000929286][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964586:000929380][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964596:000931492][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964596:000931595][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964606:000932693][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964606:000932786][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964616:000933897][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964616:000933983][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964626:000936102][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964626:000936219][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964636:000937306][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964636:000937393][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964646:000938510][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964646:000938607][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964656:000939717][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964656:000939812][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964666:000941920][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964666:000942008][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964676:000943122][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964676:000943206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964686:000944329][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964686:000944425][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964696:000946532][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964696:000946627][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964706:000947737][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964706:000947827][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964716:000948941][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964716:000949037][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964726:000950145][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964726:000950236][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964736:000952348][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964736:000952433][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964746:000953555][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964746:000953646][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964756:000954764][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964756:000954879][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964766:000955965][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964766:000956064][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964776:000958169][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964776:000958293][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964786:000959372][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964786:000959466][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964796:000960577][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964796:000960675][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964806:000962781][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964806:000962888][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964816:000963985][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964816:000964074][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964826:000965190][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964826:000965286][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964836:000966395][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964836:000966497][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964846:000968598][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964846:000968716][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964856:000969802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964856:000969888][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964866:000971008][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964866:000971106][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964876:000973213][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964876:000973308][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964886:000975416][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964886:000975509][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964896:000976622][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964896:000976724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964906:000977823][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964906:000977915][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964916:000980028][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964916:000980120][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964926:000981233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964926:000981330][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964936:000982437][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964936:000982523][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964946:000983644][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964946:000983760][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964956:000985846][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964956:000985946][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964966:000987050][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964966:000987144][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964976:000988255][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964976:000988345][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964986:000990459][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964986:000990569][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104964996:000992663][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104964996:000992769][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965006:000993868][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965006:000993977][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965016:000995071][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965016:000995163][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965026:000997276][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965026:000997371][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965036:000998480][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965036:000998570][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965046:000999686][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965046:000999783][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965057:000000893][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965057:000001005][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965067:000003095][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965067:000003195][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965077:000004298][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965077:000004396][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965087:000005501][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965087:000005591][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965097:000007707][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965097:000007808][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965107:000008910][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965107:000009008][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965117:000010114][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965117:000010202][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965127:000011319][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965127:000011415][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965137:000013525][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965137:000013627][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965147:000014728][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965147:000014819][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965157:000015932][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965157:000016019][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965167:000017137][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965167:000017230][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965177:000019342][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965177:000019437][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965187:000020545][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965187:000020637][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965197:000021753][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965197:000021852][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965207:000023954][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965207:000024050][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965217:000025158][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965217:000025267][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965227:000026364][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965227:000026464][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965237:000027566][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965237:000027652][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965247:000029772][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965247:000029863][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965257:000030977][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965257:000031081][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965267:000032187][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965267:000032276][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965277:000034386][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965277:000034475][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965287:000036589][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965287:000036685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965297:000037794][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965297:000037888][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965307:000038997][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965307:000039089][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965317:000041202][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965317:000041292][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965327:000042406][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965327:000042495][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965337:000043611][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965337:000043702][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965347:000044814][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965347:000044905][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965357:000047024][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965357:000047136][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965367:000048225][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965367:000048339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965377:000049430][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965377:000049532][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965387:000051632][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965387:000051728][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965397:000053837][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965397:000053932][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965407:000055041][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965407:000055138][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965417:000056245][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965417:000056338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965427:000058450][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965427:000058548][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965437:000059655][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965437:000059769][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965447:000060857][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965447:000060948][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965457:000062064][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965457:000062156][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965467:000064267][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965467:000064361][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965477:000065470][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965477:000065558][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965487:000066676][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965487:000066769][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965497:000068883][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965497:000068996][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965507:000070084][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965507:000070177][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965517:000071287][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965517:000071377][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965527:000072493][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965527:000072589][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965537:000074696][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965537:000074789][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965547:000075903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965547:000075996][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965557:000077106][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965557:000077196][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965567:000078310][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965567:000078403][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965577:000080515][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965577:000080607][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965587:000081719][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965587:000081827][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965597:000082922][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965597:000083011][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965607:000085127][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965607:000085221][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965617:000086333][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965617:000086429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965627:000087537][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965627:000087630][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965637:000088741][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965637:000088827][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965647:000090944][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965647:000091036][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965657:000092154][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965657:000092271][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965667:000093355][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965667:000093458][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965677:000095564][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965677:000095664][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965687:000097761][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965687:000097850][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965697:000098969][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965697:000099070][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965707:000100172][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965707:000100270][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965717:000102375][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965717:000102465][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965727:000103580][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965727:000103675][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965737:000104786][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965737:000104891][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965747:000105988][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965747:000106079][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965757:000108192][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965757:000108284][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965767:000109397][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965767:000109492][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965777:000110602][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965777:000110697][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965787:000112807][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965787:000112919][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965797:000115013][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965797:000115115][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965807:000116215][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965807:000116330][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965817:000117419][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965817:000117514][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965827:000119625][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965827:000119720][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965837:000120826][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965837:000120916][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965847:000122032][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965847:000122141][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965857:000123238][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965857:000123343][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965867:000125441][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965867:000125533][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965877:000126644][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965877:000126731][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965887:000127851][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965887:000127949][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965897:000130054][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965897:000130160][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965907:000131258][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965907:000131353][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965917:000132462][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965917:000132557][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965927:000133666][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965927:000133757][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965937:000135871][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965937:000135973][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965947:000137075][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965947:000137174][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965957:000138284][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965957:000138407][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965967:000139485][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965967:000139588][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965977:000141690][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965977:000141793][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965987:000142892][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965987:000142984][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104965997:000144098][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104965997:000144192][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966007:000146301][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966007:000146407][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966017:000147505][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966017:000147599][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966027:000148710][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966027:000148836][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966037:000149915][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966037:000150014][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966047:000152119][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966047:000152212][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966057:000153322][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966057:000153417][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966067:000154528][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966067:000154624][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966077:000156730][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966077:000156826][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966087:000158936][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966087:000159030][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966097:000160143][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966097:000160251][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966107:000161344][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966107:000161438][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966117:000163549][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966117:000163836][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966127:000164755][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966127:000164851][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966137:000165958][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966137:000166245][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966147:000167163][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966147:000167257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966157:000169369][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966157:000169473][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966167:000170571][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966167:000170661][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966177:000171783][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966177:000171896][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966187:000173980][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966187:000174084][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966197:000175184][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966197:000175273][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966207:000176388][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966207:000176482][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966217:000177594][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966217:000177688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966227:000179795][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966227:000179886][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966237:000181000][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966237:000181089][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966247:000182206][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966247:000182297][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966257:000183411][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966257:000183506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966267:000185617][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966267:000185733][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966277:000186820][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966277:000186918][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966287:000188022][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966287:000188115][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966297:000190228][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966297:000190335][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966307:000191432][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966307:000191535][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966317:000192636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966317:000192728][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966327:000193841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966327:000193951][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966337:000196046][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966337:000196149][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966347:000197248][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966347:000197338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966357:000198453][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966357:000198543][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966367:000200660][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966367:000200753][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966377:000202862][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966377:000202955][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966387:000204067][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966387:000204163][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966397:000205272][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966397:000205391][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966407:000207475][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966407:000207570][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966417:000208679][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966417:000208774][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966427:000209884][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966427:000209978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966437:000211087][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966437:000211175][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966447:000213292][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966447:000213384][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966457:000214500][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966457:000214602][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966467:000215700][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966467:000215792][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966477:000217905][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966477:000217997][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966487:000220109][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966487:000220200][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966497:000221316][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966497:000221409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966507:000222518][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966507:000222613][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966517:000224724][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966517:000224819][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966527:000225927][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966527:000226016][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966537:000227132][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966537:000227222][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966547:000228336][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966547:000228450][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966557:000230540][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966557:000230629][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966567:000231748][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966567:000231864][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966577:000232951][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966577:000233051][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966587:000235154][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966587:000235250][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966597:000236357][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966597:000236453][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966607:000237563][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966607:000237658][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966617:000238766][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966617:000238862][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966627:000240971][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966627:000241064][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966637:000242177][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966637:000242280][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966647:000243379][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966647:000243469][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966657:000244583][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966657:000244677][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966667:000246789][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966667:000246881][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966677:000247992][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966677:000248085][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966687:000249197][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966687:000249288][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966697:000251404][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966697:000251517][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966707:000252604][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966707:000252694][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966717:000253810][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966717:000253899][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966727:000255015][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966727:000255109][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966737:000257217][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966737:000257309][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966747:000258423][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966747:000258517][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966757:000259628][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966757:000259725][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966767:000261833][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966767:000261941][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966777:000264035][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966777:000264124][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966787:000265240][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966787:000265343][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966797:000266444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966797:000266538][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966807:000268648][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966807:000268735][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966817:000269853][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966817:000269941][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966827:000271055][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966827:000271144][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966837:000272262][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966837:000272356][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966847:000274467][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966847:000274559][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966857:000275668][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966857:000275758][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966867:000276880][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966867:000276994][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966877:000279080][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966877:000279183][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966887:000281283][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966887:000281368][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966897:000282488][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966897:000282578][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966907:000283693][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966907:000283785][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966917:000285896][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966917:000286011][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966927:000287100][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966927:000287192][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966937:000288307][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966937:000288409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966947:000289508][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966947:000289599][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966957:000291713][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966957:000291800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966967:000292919][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966967:000293008][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966977:000294122][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966977:000294215][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966987:000296327][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966987:000296438][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104966997:000297535][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104966997:000297639][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967007:000298735][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967007:000298820][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967017:000299940][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967017:000300035][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967027:000302143][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967027:000302236][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967037:000303347][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967037:000303433][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967047:000304552][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967047:000304643][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967057:000305759][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967057:000305867][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967067:000307959][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967067:000308045][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967077:000309165][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967077:000309253][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967087:000310370][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967087:000310461][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967097:000312574][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967097:000312672][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967107:000313779][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967107:000313870][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967117:000314983][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967117:000315073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967127:000316187][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967127:000316274][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967137:000318390][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967137:000318495][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967147:000319597][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967147:000319691][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967157:000320799][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967157:000320885][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967167:000323015][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967167:000323129][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967177:000325211][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967177:000325313][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967187:000326414][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967187:000326507][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967197:000327617][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967197:000327708][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967207:000329823][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967207:000329918][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967217:000331028][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967217:000331133][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967227:000332233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967227:000332330][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967237:000333435][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967237:000333528][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967247:000335640][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967247:000335733][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967257:000336845][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967257:000336932][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967267:000338050][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967267:000338147][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967277:000340252][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967277:000340351][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967287:000341457][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967287:000341550][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967297:000342663][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967297:000342759][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967307:000343865][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967307:000343957][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967317:000346069][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967317:000346161][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967327:000347274][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967327:000347382][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967337:000348478][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967337:000348568][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967347:000349682][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967347:000349775][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967357:000351887][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967357:000351996][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967367:000353092][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967367:000353184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967377:000354295][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967377:000354383][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967387:000356501][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967387:000356600][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967397:000357703][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967397:000357796][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967407:000358909][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967407:000359003][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967417:000360113][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967417:000360206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967427:000362318][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967427:000362409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967437:000363521][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967437:000363610][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967447:000364727][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967447:000364828][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967457:000366931][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967457:000367020][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967467:000369140][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967467:000369253][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967477:000370341][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967477:000370443][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967487:000371544][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967487:000371636][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967497:000373747][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967497:000373846][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967507:000374953][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967507:000375062][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967517:000376158][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967517:000376256][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967527:000377362][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967527:000377459][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967537:000379568][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967537:000379671][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967547:000380769][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967547:000380864][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967557:000381974][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967557:000382065][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967567:000384178][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967567:000384277][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967577:000386383][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967577:000386491][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967587:000387589][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967587:000387690][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967597:000388794][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967597:000388898][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967607:000390995][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967607:000391085][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967617:000392200][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967617:000392293][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967627:000393405][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967627:000393499][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967637:000394609][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967637:000394697][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967647:000396813][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967647:000396906][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967657:000398019][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967657:000398123][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967667:000399224][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967667:000399315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967677:000401424][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967677:000401513][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967687:000402631][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967687:000402736][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967697:000403834][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967697:000403923][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967707:000405039][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967707:000405133][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967717:000407243][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967717:000407333][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967727:000408449][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967727:000408553][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967737:000409652][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967737:000409743][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967747:000410856][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967747:000410949][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967757:000413059][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967757:000413144][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967767:000414270][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967767:000414385][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967777:000415472][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967777:000415575][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967787:000417673][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967787:000417776][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967797:000418878][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967797:000418967][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967807:000420083][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967807:000420181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967817:000421287][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967817:000421382][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967827:000423491][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967827:000423586][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967837:000424697][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967837:000424800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967847:000425899][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967847:000425988][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967857:000428105][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967857:000428193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967867:000430308][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967867:000430402][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967877:000431512][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967877:000431606][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967887:000432716][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967887:000432807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967897:000434923][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967897:000435031][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967907:000436124][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967907:000436213][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967917:000437329][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967917:000437418][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967927:000438535][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967927:000438624][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967937:000440737][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967937:000440825][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967947:000441943][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967947:000442054][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967957:000443148][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967957:000443244][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967967:000445350][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967967:000445442][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967977:000447556][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967977:000447643][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967987:000448761][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967987:000448852][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104967997:000449964][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104967997:000450052][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968007:000452169][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968007:000452256][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968017:000453373][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968017:000453467][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968027:000454579][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968027:000454674][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968037:000455781][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968037:000455871][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968047:000457986][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968047:000458078][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968057:000459189][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968057:000459279][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968067:000460399][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968067:000460514][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968077:000462601][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968077:000462700][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968087:000463804][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968087:000463900][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968097:000465007][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968097:000465114][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968107:000466214][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968107:000466316][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968117:000468417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968117:000468510][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968127:000469621][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968127:000469716][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968137:000470826][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968137:000470921][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968147:000472029][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968147:000472123][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968157:000474234][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968157:000474326][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968167:000475438][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968167:000475536][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968177:000476643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968177:000476740][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968187:000478849][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968187:000478956][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968197:000480053][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968197:000480151][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968207:000481255][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968207:000481344][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968217:000482459][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968217:000482546][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968227:000484666][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968227:000484773][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968237:000485867][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968237:000485951][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968247:000487074][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968247:000487170][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968257:000489284][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968257:000489385][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968267:000491482][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968267:000491572][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968277:000492687][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968277:000492778][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968287:000493890][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968287:000493989][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968297:000496093][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968297:000496178][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968307:000497300][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968307:000497396][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968317:000498504][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968317:000498609][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968327:000499707][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968327:000499800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968337:000501912][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968337:000501997][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968347:000503117][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968347:000503215][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968357:000504320][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968357:000504411][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968367:000506529][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968367:000506645][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968377:000508730][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968377:000508827][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968387:000509934][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968387:000510033][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968397:000511138][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968397:000511230][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968407:000513343][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968407:000513444][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968417:000514547][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968417:000514640][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968427:000515752][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968427:000515848][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968437:000516957][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968437:000517056][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968447:000519159][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968447:000519252][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968457:000520363][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968457:000520454][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968467:000521568][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968467:000521681][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968477:000523772][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968477:000523869][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968487:000524978][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968487:000525073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968497:000526183][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968497:000526288][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968507:000527385][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968507:000527474][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968517:000529589][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968517:000529679][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968527:000530796][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968527:000530896][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968537:000531998][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968537:000532107][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968547:000533204][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968547:000533302][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968557:000535408][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968557:000535500][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968567:000536612][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968567:000536706][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968577:000537816][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968577:000537908][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968587:000540020][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968587:000540115][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968597:000541225][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968597:000541315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968607:000542430][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968607:000542524][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968617:000543634][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968617:000543730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968627:000545838][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968627:000545930][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968637:000547042][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968637:000547133][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968647:000548247][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968647:000548344][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968657:000550452][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968657:000550553][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968667:000552659][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968667:000552775][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968677:000553861][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968677:000553957][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968687:000555066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968687:000555181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968697:000557268][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968697:000557362][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968707:000558473][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968707:000558571][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968717:000559677][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968717:000559772][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968727:000560881][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968727:000560978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968737:000563086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968737:000563188][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968747:000564289][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968747:000564382][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968757:000565495][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968757:000565588][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968767:000567700][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968767:000567810][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968777:000568903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968777:000568994][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968787:000570109][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968787:000570207][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968797:000571313][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968797:000571412][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968807:000573516][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968807:000573605][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968817:000574720][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968817:000574810][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968827:000575926][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968827:000576022][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968837:000577128][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968837:000577219][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968847:000579334][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968847:000579428][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968857:000580541][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968857:000580642][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968867:000581743][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968867:000581837][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968877:000583947][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968877:000584044][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968887:000585151][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968887:000585241][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968897:000586355][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968897:000586447][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968907:000587562][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968907:000587675][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968917:000589765][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968917:000589858][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968927:000590967][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968927:000591056][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968937:000592172][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968937:000592263][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968947:000594379][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968947:000594482][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968957:000596580][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968957:000596666][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968967:000597790][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968967:000597904][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968977:000598992][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968977:000599087][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968987:000601194][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968987:000601300][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104968997:000602399][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104968997:000602495][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969007:000603605][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969007:000603704][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969017:000604808][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969017:000604901][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969027:000607012][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969027:000607107][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969037:000608217][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969037:000608313][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969047:000609420][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969047:000609509][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969057:000611623][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969057:000611732][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969067:000613831][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969067:000613929][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969077:000615032][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969077:000615124][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969087:000616238][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969087:000616329][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969097:000618443][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969097:000618540][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969107:000619646][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969107:000619738][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969117:000620849][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969117:000620938][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969127:000622056][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969127:000622170][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969137:000624258][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969137:000624349][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969147:000625464][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969147:000625560][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969157:000626671][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969157:000626770][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969167:000628872][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969167:000628966][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969177:000630076][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969177:000630167][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969187:000631282][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969187:000631373][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969197:000632486][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969197:000632580][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969207:000634691][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969207:000634785][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969217:000635896][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969217:000635989][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969227:000637098][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969227:000637186][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969237:000638304][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969237:000638397][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969247:000640507][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969247:000640598][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969257:000641711][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969257:000641802][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969267:000642921][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969267:000643036][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969277:000645121][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969277:000645243][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969287:000646327][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969287:000646429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969297:000647529][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969297:000647621][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969307:000648735][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969307:000648832][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969317:000650938][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969317:000651038][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969327:000652142][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969327:000652234][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969337:000653348][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969337:000653445][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969347:000655554][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969347:000655644][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969357:000657754][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969357:000657845][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969367:000658961][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969367:000659058][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969377:000660164][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969377:000660260][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969387:000662371][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969387:000662472][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969397:000663573][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969397:000663671][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969407:000664776][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969407:000664865][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969417:000665982][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969417:000666078][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969427:000668186][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969427:000668284][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969437:000669389][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969437:000669497][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969447:000670594][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969447:000670690][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969457:000672801][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969457:000672905][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969467:000675003][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969467:000675094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969477:000676206][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969477:000676291][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969487:000677411][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969487:000677502][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969497:000679614][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969497:000679721][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969507:000680818][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969507:000680910][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969517:000682024][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969517:000682109][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969527:000683227][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969527:000683316][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969537:000685434][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969537:000685528][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969547:000686636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969547:000686724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969557:000687841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969557:000687927][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969567:000690047][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969567:000690147][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969577:000691254][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969577:000691374][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969587:000692455][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969587:000692550][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969597:000693658][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969597:000693751][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969607:000695864][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969607:000695963][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969617:000697067][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969617:000697157][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969627:000698272][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969627:000698367][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969637:000699475][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969637:000699566][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969647:000701680][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969647:000701794][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969657:000702883][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969657:000702973][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969667:000704097][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969667:000704235][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969677:000706293][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969677:000706397][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969687:000707499][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969687:000707600][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969697:000708704][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969697:000708811][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969707:000709905][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969707:000709998][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969717:000712110][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969717:000712202][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969727:000713317][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969727:000713421][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969737:000714520][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969737:000714612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969747:000716723][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969747:000716819][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969757:000718928][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969757:000719022][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969767:000720133][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969767:000720234][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969777:000721337][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969777:000721426][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969787:000723541][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969787:000723636][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969797:000724745][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969797:000724838][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969807:000725950][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969807:000726048][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969817:000727163][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969817:000727259][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969827:000729359][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969827:000729452][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969837:000730562][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969837:000730653][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969847:000731768][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969847:000731866][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969857:000733971][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969857:000734077][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969867:000735177][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969867:000735292][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969877:000736385][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969877:000736501][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969887:000737585][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969887:000737689][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969897:000739789][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969897:000739879][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969907:000740995][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969907:000741091][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969917:000742197][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969917:000742291][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969927:000743403][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969927:000743506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969937:000745607][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969937:000745701][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969947:000746811][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969947:000746901][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969957:000748015][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969957:000748106][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969967:000750221][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969967:000750331][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969977:000751425][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969977:000751518][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969987:000752629][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969987:000752723][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104969997:000753834][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104969997:000753934][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970007:000756036][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970007:000756131][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970017:000757240][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970017:000757348][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970027:000758446][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970027:000758546][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970037:000760651][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970037:000760742][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970047:000762854][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970047:000762955][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970057:000764060][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970057:000764163][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970067:000765261][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970067:000765352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970077:000767467][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970077:000767562][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970087:000768672][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970087:000768782][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970097:000769876][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970097:000769971][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970107:000771080][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970107:000771174][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970117:000773285][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970117:000773376][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970127:000774489][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970127:000774578][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970137:000775693][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970137:000775784][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970147:000777898][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970147:000777996][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970157:000780101][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970157:000780192][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970167:000781307][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970167:000781402][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970177:000782515][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970177:000782632][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970187:000784716][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970187:000784818][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970197:000785918][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970197:000786009][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970207:000787125][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970207:000787226][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970217:000788328][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970217:000788424][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970227:000790534][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970227:000790630][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970237:000791738][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970237:000791850][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970247:000792941][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970247:000793032][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970257:000795146][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970257:000795260][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970267:000796351][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970267:000796452][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970277:000797555][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970277:000797647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970287:000798758][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970287:000798853][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970297:000800965][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970297:000801072][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970307:000802167][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970307:000802258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970317:000803372][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970317:000803462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970327:000804578][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970327:000804677][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970337:000806781][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970337:000806883][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970347:000807985][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970347:000808079][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970357:000809189][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970357:000809286][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970367:000811393][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970367:000811496][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970377:000812596][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970377:000812685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970387:000813802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970387:000813895][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970397:000815007][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970397:000815099][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970407:000817210][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970407:000817302][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970417:000818414][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970417:000818506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970427:000819619][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970427:000819710][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970437:000821824][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970437:000821916][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970447:000824028][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970447:000824120][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970457:000825232][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970457:000825347][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970467:000826436][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970467:000826528][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970477:000828645][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970477:000828762][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970487:000829846][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970487:000829941][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970497:000831049][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970497:000831141][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970507:000832255][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970507:000832350][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970517:000834458][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970517:000834551][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970527:000835663][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970527:000835759][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970537:000836869][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970537:000836963][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970547:000839071][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970547:000839169][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970557:000841276][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970557:000841366][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970567:000842480][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970567:000842578][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970577:000843685][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970577:000843776][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970587:000845889][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970587:000845984][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970597:000847094][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970597:000847194][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970607:000848296][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970607:000848402][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970617:000849500][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970617:000849583][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970627:000851707][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970627:000851806][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970637:000852911][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970637:000853007][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970647:000854114][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970647:000854208][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970657:000856322][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970657:000856433][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970667:000857524][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970667:000857618][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970677:000858726][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970677:000858845][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970687:000859932][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970687:000860026][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970697:000862137][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970697:000862232][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970707:000863341][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970707:000863433][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970717:000864544][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970717:000864636][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970727:000865748][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970727:000865843][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970737:000867960][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970737:000868052][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970747:000869159][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970747:000869254][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970757:000870362][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970757:000870451][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970767:000872566][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970767:000872662][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970777:000873776][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970777:000873894][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970787:000874977][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970787:000875081][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970797:000876182][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970797:000876279][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970807:000878384][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970807:000878482][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970817:000879589][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970817:000879684][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970827:000880793][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970827:000880906][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970837:000883005][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970837:000883105][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970847:000885200][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970847:000885292][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970857:000886408][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970857:000886507][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970867:000887610][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970867:000887703][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970877:000889813][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970877:000889901][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970887:000891017][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970887:000891110][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970897:000892224][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970897:000892320][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970907:000893428][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970907:000893516][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970917:000895632][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970917:000895728][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970927:000896837][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970927:000896932][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970937:000898040][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970937:000898132][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970947:000900244][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970947:000900346][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970957:000901449][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970957:000901544][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970967:000902652][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970967:000902738][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970977:000903858][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970977:000903944][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970987:000906061][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970987:000906150][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104970997:000907265][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104970997:000907354][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971007:000908470][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971007:000908563][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971017:000909675][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971017:000909766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971027:000911877][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971027:000911962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971037:000913083][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971037:000913174][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971047:000914287][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971047:000914395][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971057:000916492][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971057:000916593][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971067:000917696][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971067:000917787][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971077:000918907][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971077:000919022][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971087:000920106][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971087:000920207][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971097:000922309][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971097:000922408][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971107:000923514][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971107:000923610][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971117:000924719][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971117:000924816][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971127:000925925][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971127:000926023][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971137:000928127][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971137:000928223][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971147:000929332][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971147:000929421][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971157:000930537][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971157:000930636][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971167:000932741][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971167:000932838][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971177:000933945][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971177:000934038][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971187:000935150][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971187:000935248][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971197:000936354][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971197:000936470][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971207:000938557][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971207:000938646][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971217:000939762][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971217:000939856][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971227:000940966][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971227:000941061][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971237:000943170][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971237:000943269][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971247:000945374][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971247:000945467][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971257:000946580][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971257:000946681][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971267:000947782][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971267:000947889][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971277:000949986][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971277:000950076][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971287:000951191][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971287:000951285][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971297:000952397][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971297:000952492][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971307:000953600][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971307:000953696][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971317:000955804][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971317:000955895][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971327:000957008][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971327:000957098][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971337:000958213][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971337:000958303][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971347:000960416][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971347:000960517][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971357:000961622][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971357:000961718][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971367:000962826][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971367:000962919][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971377:000964036][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971377:000964152][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971387:000966235][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971387:000966336][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971397:000967440][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971397:000967538][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971407:000968645][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971407:000968744][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971417:000969847][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971417:000969962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971427:000972053][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971427:000972153][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971437:000973257][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971437:000973351][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971447:000974461][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971447:000974555][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971457:000976667][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971457:000976779][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971467:000977871][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971467:000977965][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971477:000979073][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971477:000979163][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971487:000980279][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971487:000980374][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971497:000982483][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971497:000982583][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971507:000983686][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971507:000983777][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971517:000984893][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971517:000984990][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971527:000987099][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971527:000987195][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971537:000989301][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971537:000989403][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971547:000990504][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971547:000990598][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971557:000991710][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971557:000991805][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971567:000993912][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971567:000994029][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971577:000995119][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971577:000995228][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971587:000996321][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971587:000996413][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971597:000997526][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971597:000997616][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971607:000999730][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971607:000999823][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971618:000000936][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971618:000001031][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971628:000002138][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971628:000002226][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971638:000004343][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971638:000004452][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971648:000006554][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971648:000006643][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971658:000007753][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971658:000007847][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971668:000008958][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971668:000009052][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971678:000011166][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971678:000011292][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971688:000012366][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971688:000012460][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971698:000013570][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971698:000013668][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971708:000014775][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971708:000014880][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971718:000016979][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971718:000017076][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971728:000018184][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971728:000018281][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971738:000019388][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971738:000019484][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971748:000021592][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971748:000021689][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971758:000022797][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971758:000022903][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971768:000024000][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971768:000024094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971778:000025204][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971778:000025296][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971788:000027409][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971788:000027525][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971798:000028615][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971798:000028713][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971808:000029817][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971808:000029910][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971818:000031023][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971818:000031120][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971828:000033227][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971828:000033323][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971838:000034430][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971838:000034520][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971848:000035635][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971848:000035726][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971858:000037841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971858:000037949][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971868:000039044][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971868:000039137][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971878:000040247][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971878:000040337][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971888:000041452][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971888:000041543][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971898:000043656][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971898:000043749][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971908:000044860][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971908:000044953][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971918:000046065][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971918:000046158][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971928:000048274][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971928:000048363][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971938:000050474][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971938:000050566][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971948:000051679][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971948:000051773][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971958:000052883][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971958:000052978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971968:000055088][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971968:000055193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971978:000056296][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971978:000056412][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971988:000057496][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971988:000057594][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104971998:000058700][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104971998:000058798][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972008:000060906][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972008:000061019][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972018:000062109][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972018:000062203][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972028:000063315][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972028:000063414][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972038:000065517][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972038:000065620][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972048:000067722][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972048:000067818][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972058:000068927][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972058:000069028][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972068:000070130][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972068:000070223][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972078:000072334][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972078:000072423][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972088:000073540][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972088:000073637][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972098:000074743][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972098:000074840][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972108:000075947][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972108:000076043][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972118:000078153][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972118:000078249][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972128:000079356][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972128:000079451][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972138:000080560][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972138:000080646][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972148:000082764][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972148:000082866][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972158:000083969][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972158:000084078][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972168:000085173][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972168:000085266][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972178:000086377][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972178:000086465][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972188:000088582][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972188:000088673][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972198:000089786][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972198:000089872][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972208:000090992][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972208:000091087][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972218:000092195][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972218:000092284][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972228:000094399][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972228:000094500][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972238:000095603][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972238:000095689][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972248:000096809][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972248:000096904][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972258:000099012][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972258:000099107][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972268:000100217][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972268:000100310][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972278:000101426][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972278:000101538][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972288:000102626][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972288:000102722][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972298:000104831][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972298:000104930][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972308:000106036][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972308:000106136][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972318:000107239][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972318:000107335][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972328:000109444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972328:000109549][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972338:000111648][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972338:000111751][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972348:000112851][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972348:000112947][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972358:000114057][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972358:000114153][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972368:000116261][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972368:000116356][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972378:000117465][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972378:000117573][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972388:000118670][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972388:000118769][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972398:000119876][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972398:000119977][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972408:000122077][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972408:000122168][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972418:000123283][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972418:000123381][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972428:000124487][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972428:000124598][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972438:000126692][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972438:000126795][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972448:000127894][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972448:000127989][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972458:000129102][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972458:000129203][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972468:000130304][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972468:000130401][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972478:000132508][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972478:000132596][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972488:000133713][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972488:000133808][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972498:000134917][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972498:000135009][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972508:000136121][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972508:000136217][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972518:000138326][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972518:000138422][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972528:000139529][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972528:000139621][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972538:000140733][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972538:000140821][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972548:000142939][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972548:000143045][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972558:000144142][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972558:000144234][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972568:000145350][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972568:000145443][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972578:000146557][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972578:000146670][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972588:000148756][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972588:000148858][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972598:000149962][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972598:000150072][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972608:000151165][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972608:000151258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972618:000153373][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972618:000153470][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972628:000155574][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972628:000155674][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972638:000156777][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972638:000156870][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972648:000157980][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972648:000158072][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972658:000160188][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972658:000160291][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972668:000161390][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972668:000161484][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972678:000162595][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972678:000162685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972688:000163800][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972688:000163895][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972698:000166006][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972698:000166108][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972708:000167207][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972708:000167294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972718:000168414][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972718:000168509][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972728:000170616][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972728:000170711][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972738:000172820][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972738:000172914][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972748:000174025][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972748:000174132][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972758:000175231][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972758:000175325][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972768:000177434][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972768:000177522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972778:000178639][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972778:000178737][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972788:000179843][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972788:000179937][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972798:000181046][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972798:000181137][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972808:000183252][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972808:000183343][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972818:000184456][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972818:000184569][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972828:000185659][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972828:000185745][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972838:000187863][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972838:000187953][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972848:000189068][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972848:000189160][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972858:000190273][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972858:000190377][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972868:000191477][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972868:000191566][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972878:000193682][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972878:000193774][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972888:000194890][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972888:000195005][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972898:000196093][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972898:000196196][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972908:000197295][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972908:000197391][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972918:000199501][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972918:000199599][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972928:000200704][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972928:000200804][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972938:000201910][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972938:000202007][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972948:000204111][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972948:000204206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972958:000205318][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972958:000205417][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972968:000206520][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972968:000206629][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972978:000207726][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972978:000207818][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972988:000209931][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972988:000210030][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104972998:000211135][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104972998:000211234][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973008:000212337][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973008:000212433][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973018:000214546][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973018:000214645][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973028:000216748][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973028:000216842][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973038:000217951][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973038:000218040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973048:000219157][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973048:000219249][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973058:000221363][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973058:000221470][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973068:000222565][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973068:000222656][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973078:000223767][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973078:000223856][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973088:000224973][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973088:000225065][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973098:000227178][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973098:000227274][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973108:000228381][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973108:000228471][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973118:000229586][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973118:000229679][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973128:000231789][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973128:000231888][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973138:000233996][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973138:000234096][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973148:000235200][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973148:000235297][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973158:000236402][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973158:000236499][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973168:000238609][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973168:000238707][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973178:000239813][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973178:000239909][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973188:000241020][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973188:000241158][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973198:000242222][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973198:000242323][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973208:000244426][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973208:000244518][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973218:000245631][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973218:000245728][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973228:000246834][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973228:000246938][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973238:000249038][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973238:000249138][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973248:000250242][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973248:000250329][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973258:000251448][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973258:000251545][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973268:000252651][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973268:000252753][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973278:000254855][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973278:000254942][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973288:000256059][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973288:000256152][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973298:000257267][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973298:000257371][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973308:000258467][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973308:000258559][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973318:000260675][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973318:000260773][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973328:000261878][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973328:000261979][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973338:000263081][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973338:000263194][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973348:000265286][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973348:000265389][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973358:000266490][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973358:000266581][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973368:000267693][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973368:000267778][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973378:000268899][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973378:000268990][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973388:000271103][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973388:000271198][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973398:000272306][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973398:000272396][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973408:000273511][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973408:000273599][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973418:000275718][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973418:000275813][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973428:000277920][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973428:000278011][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973438:000279124][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973438:000279210][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973448:000280331][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973448:000280427][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973458:000282533][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973458:000282627][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973468:000283738][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973468:000283832][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973478:000284942][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973478:000285031][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973488:000286152][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973488:000286272][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973498:000288352][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973498:000288451][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973508:000289555][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973508:000289660][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973518:000290760][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973518:000290856][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973528:000292965][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973528:000293071][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973538:000295169][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973538:000295263][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973548:000296372][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973548:000296461][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973558:000297579][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973558:000297693][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973568:000299782][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973568:000299880][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973578:000300985][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973578:000301082][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973588:000302189][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973588:000302282][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973598:000303396][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973598:000303491][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973608:000305598][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973608:000305684][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973618:000306804][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973618:000306905][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973628:000308008][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973628:000308104][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973638:000310211][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973638:000310308][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973648:000311416][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973648:000311512][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973658:000312623][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973658:000312724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973668:000313824][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973668:000313913][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973678:000316029][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973678:000316118][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973688:000317233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973688:000317327][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973698:000318438][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973698:000318536][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973708:000319643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973708:000319753][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973718:000321846][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973718:000321936][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973728:000323049][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973728:000323138][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973738:000324255][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973738:000324347][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973748:000326459][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973748:000326558][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973758:000327664][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973758:000327755][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973768:000328868][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973768:000328962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973778:000330073][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973778:000330182][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973788:000332282][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973788:000332398][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973798:000333484][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973798:000333586][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973808:000334686][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973808:000334787][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973818:000336891][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973818:000336999][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973828:000339095][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973828:000339197][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973838:000340300][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973838:000340393][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973848:000341504][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973848:000341604][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973858:000343709][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973858:000343811][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973868:000344912][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973868:000345009][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973878:000346115][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973878:000346213][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973888:000347322][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973888:000347417][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973898:000349527][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973898:000349628][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973908:000350729][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973908:000350820][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973918:000351935][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973918:000352033][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973928:000354139][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973928:000354257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973938:000356342][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973938:000356431][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973948:000357547][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973948:000357645][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973958:000358751][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973958:000358847][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973968:000360954][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973968:000361045][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973978:000362159][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973978:000362255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973988:000363364][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973988:000363457][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104973998:000364568][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104973998:000364659][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974008:000366770][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974008:000366863][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974018:000367976][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974018:000368064][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974028:000369180][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974028:000369270][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974038:000371385][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974038:000371485][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974048:000372588][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974048:000372683][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974058:000373793][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974058:000373889][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974068:000374997][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974068:000375090][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974078:000377203][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974078:000377299][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974088:000378410][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974088:000378523][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974098:000379612][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974098:000379716][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974108:000381818][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974108:000381916][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974118:000384019][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974118:000384116][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974128:000385225][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974128:000385322][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974138:000386429][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974138:000386525][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974148:000388633][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974148:000388741][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974158:000389837][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974158:000389937][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974168:000391043][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974168:000391138][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974178:000392245][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974178:000392337][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974188:000394450][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974188:000394543][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974198:000395655][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974198:000395755][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974208:000396858][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974208:000396949][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974218:000399063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974218:000399161][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974228:000401269][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974228:000401365][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974238:000402473][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974238:000402569][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974248:000403676][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974248:000403771][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974258:000405882][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974258:000405985][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974268:000407084][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974268:000407173][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974278:000408290][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974278:000408382][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974288:000409494][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974288:000409585][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974298:000411699][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974298:000411816][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974308:000412903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974308:000412994][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974318:000414108][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974318:000414199][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974328:000416311][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974328:000416408][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974338:000417516][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974338:000417611][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974348:000418721][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974348:000418817][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974358:000419925][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974358:000420019][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974368:000422129][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974368:000422244][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974378:000423339][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974378:000423437][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974388:000424540][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974388:000424653][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974398:000425744][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974398:000425845][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974408:000427948][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974408:000428046][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974418:000429151][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974418:000429249][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974428:000430356][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974428:000430456][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974438:000432560][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974438:000432666][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974448:000433762][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974448:000433854][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974458:000434969][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974458:000435069][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974468:000436173][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974468:000436268][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974478:000438375][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974478:000438466][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974488:000439580][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974488:000439674][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974498:000440785][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974498:000440885][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974508:000442995][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974508:000443084][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974518:000445194][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974518:000445308][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974528:000446399][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974528:000446495][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974538:000447601][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974538:000447696][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974548:000449806][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974548:000449898][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974558:000451011][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974558:000451105][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974568:000452214][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974568:000452303][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974578:000453420][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974578:000453511][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974588:000455624][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974588:000455717][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974598:000456828][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974598:000456923][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974608:000458032][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974608:000458126][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974618:000460236][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974618:000460331][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974628:000461439][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974628:000461527][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974638:000462645][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974638:000462734][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974648:000463850][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974648:000463945][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974658:000466053][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974658:000466140][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974668:000467259][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974668:000467351][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974678:000468462][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974678:000468556][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974688:000469672][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974688:000469787][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974698:000471871][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974698:000471963][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974708:000473079][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974708:000473181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974718:000474281][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974718:000474379][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974728:000476485][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974728:000476588][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974738:000477689][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974738:000477803][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974748:000478893][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974748:000478978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974758:000480097][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974758:000480198][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974768:000482302][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974768:000482396][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974778:000483505][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974778:000483597][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974788:000484712][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974788:000484809][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974798:000485917][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974798:000486019][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974808:000488119][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974808:000488206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974818:000489324][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974818:000489422][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974828:000490528][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974828:000490625][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974838:000492732][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974838:000492837][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974848:000493936][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974848:000494029][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974858:000495143][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974858:000495245][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974868:000496344][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974868:000496431][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974878:000498549][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974878:000498641][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974888:000499754][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974888:000499865][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974898:000500958][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974898:000501054][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974908:000503163][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974908:000503260][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974918:000505368][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974918:000505460][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974928:000506571][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974928:000506660][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974938:000507776][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974938:000507871][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974948:000509981][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974948:000510071][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974958:000511184][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974958:000511275][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974968:000512390][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974968:000512491][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974978:000513594][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974978:000513688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974988:000515802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974988:000515917][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104974998:000517001][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104974998:000517094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975008:000518209][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975008:000518310][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975018:000520411][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975018:000520519][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975028:000521615][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975028:000521710][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975038:000522820][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975038:000522923][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975048:000524023][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975048:000524114][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975058:000526230][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975058:000526331][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975068:000527433][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975068:000527527][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975078:000528636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975078:000528728][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975088:000529841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975088:000529935][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975098:000532047][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975098:000532143][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975108:000533248][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975108:000533351][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975118:000534455][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975118:000534551][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975128:000536658][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975128:000536769][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975138:000537863][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975138:000537957][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975148:000539066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975148:000539161][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975158:000540272][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975158:000540372][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975168:000542474][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975168:000542570][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975178:000543679][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975178:000543768][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975188:000544885][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975188:000544978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975198:000547089][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975198:000547187][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975208:000549294][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975208:000549388][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975218:000550496][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975218:000550589][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975228:000551702][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975228:000551790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975238:000553905][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975238:000554002][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975248:000555111][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975248:000555204][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975258:000556314][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975258:000556421][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975268:000557519][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975268:000557612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975278:000559723][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975278:000559819][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975288:000560933][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975288:000561047][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975298:000562131][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975298:000562221][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975308:000564338][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975308:000564443][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975318:000566542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975318:000566640][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975328:000567746][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975328:000567860][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975338:000568950][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975338:000569049][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975348:000571153][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975348:000571241][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975358:000572361][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975358:000572463][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975368:000573562][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975368:000573658][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975378:000574767][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975378:000574860][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975388:000576972][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975388:000577065][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975398:000578177][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975398:000578276][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975408:000579378][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975408:000579466][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975418:000581586][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975418:000581694][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975428:000582789][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975428:000582885][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975438:000583993][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975438:000584087][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975448:000585196][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975448:000585287][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975458:000587404][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975458:000587507][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975468:000588605][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975468:000588695][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975478:000589810][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975478:000589924][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975488:000591015][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975488:000591109][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975498:000593220][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975498:000593316][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975508:000594425][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975508:000594521][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975518:000595628][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975518:000595719][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975528:000597831][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975528:000597921][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975538:000599038][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975538:000599146][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975548:000600241][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975548:000600335][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975558:000601444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975558:000601538][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975568:000603649][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975568:000603741][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975578:000604853][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975578:000604949][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975588:000606063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975588:000606177][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975598:000608265][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975598:000608355][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975608:000610469][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975608:000610571][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975618:000611671][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975618:000611767][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975628:000612876][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975628:000612976][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975638:000615082][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975638:000615184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975648:000616283][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975648:000616374][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975658:000617491][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975658:000617591][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975668:000618694][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975668:000618792][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975678:000620897][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975678:000620986][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975688:000622100][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975688:000622191][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975698:000623307][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975698:000623426][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975708:000625509][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975708:000625610][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975718:000627717][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975718:000627815][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975728:000628919][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975728:000629017][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975738:000630122][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975738:000630216][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975748:000632327][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975748:000632420][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975758:000633531][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975758:000633624][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975768:000634735][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975768:000634827][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975778:000635940][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975778:000636032][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975788:000638144][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975788:000638239][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975798:000639348][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975798:000639440][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975808:000640555][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975808:000640655][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975818:000642758][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975818:000642861][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975828:000643961][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975828:000644049][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975838:000645165][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975838:000645259][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975848:000646371][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975848:000646486][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975858:000648574][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975858:000648667][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975868:000649778][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975868:000649870][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975878:000650984][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975878:000651076][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975888:000652193][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975888:000652308][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975898:000654393][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975898:000654494][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975908:000655598][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975908:000655700][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975918:000656801][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975918:000656915][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975928:000659006][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975928:000659109][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975938:000660211][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975938:000660313][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975948:000661412][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975948:000661505][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975958:000662620][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975958:000662721][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975968:000664823][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975968:000664927][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975978:000666028][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975978:000666123][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975988:000667231][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975988:000667326][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104975998:000669436][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104975998:000669539][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976008:000671638][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976008:000671732][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976018:000672845][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976018:000672943][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976028:000674051][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976028:000674152][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976038:000676251][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976038:000676343][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976048:000677456][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976048:000677550][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976058:000678662][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976058:000678765][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976068:000679866][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976068:000679977][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976078:000682069][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976078:000682161][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976088:000683276][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976088:000683374][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976098:000684478][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976098:000684572][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976108:000686684][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976108:000686790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976118:000687886][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976118:000687980][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976128:000689091][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976128:000689181][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976138:000690295][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976138:000690386][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976148:000692501][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976148:000692602][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976158:000693704][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976158:000693797][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976168:000694909][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976168:000695003][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976178:000696113][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976178:000696205][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976188:000698317][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976188:000698412][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976198:000699532][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976198:000699647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976208:000700729][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976208:000700833][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976218:000702931][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976218:000703042][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976228:000704137][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976228:000704239][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976238:000705340][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976238:000705442][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976248:000706543][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976248:000706634][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976258:000708750][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976258:000708852][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976268:000709955][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976268:000710058][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976278:000711156][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976278:000711251][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976288:000713363][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976288:000713476][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976298:000715567][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976298:000715668][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976308:000716770][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976308:000716864][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976318:000717977][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976318:000718076][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976328:000720180][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976328:000720289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976338:000721382][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976338:000721476][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976348:000722587][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976348:000722680][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976358:000723792][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976358:000723896][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976368:000725996][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976368:000726091][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976378:000727200][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976378:000727290][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976388:000728405][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976388:000728498][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976398:000730610][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976398:000730705][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976408:000732814][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976408:000732910][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976418:000734017][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976418:000734110][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976428:000735222][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976428:000735311][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976438:000737426][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976438:000737551][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976448:000738632][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976448:000738733][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976458:000739835][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976458:000739928][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976468:000741040][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976468:000741135][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976478:000743244][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976478:000743337][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976488:000744447][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976488:000744539][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976498:000745658][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976498:000745778][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976508:000747858][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976508:000747984][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976518:000750061][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976518:000750159][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976528:000751266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976528:000751368][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976538:000752471][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976538:000752573][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976548:000754673][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976548:000754766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976558:000755880][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976558:000755982][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976568:000757086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976568:000757188][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976578:000758287][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976578:000758384][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976588:000760492][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976588:000760591][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976598:000761698][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976598:000761799][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976608:000762900][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976608:000762992][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976618:000765105][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976618:000765213][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976628:000766310][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976628:000766410][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976638:000767513][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976638:000767606][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976648:000768717][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976648:000768807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976658:000770923][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976658:000771051][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976668:000772127][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976668:000772223][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976678:000773330][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976678:000773424][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976688:000775537][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976688:000775632][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976698:000777739][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976698:000777833][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976708:000778945][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976708:000779047][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976718:000780149][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976718:000780245][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976728:000782351][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976728:000782442][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976738:000783556][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976738:000783648][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976748:000784762][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976748:000784860][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976758:000785965][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976758:000786056][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976768:000788172][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976768:000788272][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976778:000789374][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976778:000789469][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976788:000790578][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976788:000790670][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976798:000792789][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976798:000792916][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976808:000794989][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976808:000795110][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976818:000796193][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976818:000796289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976828:000797397][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976828:000797497][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976838:000799601][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976838:000799698][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976848:000800804][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976848:000800897][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976858:000802010][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976858:000802110][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976868:000803223][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976868:000803370][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976878:000805419][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976878:000805536][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976888:000806622][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976888:000806718][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976898:000807828][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976898:000807935][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976908:000810031][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976908:000810130][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976918:000811237][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976918:000811339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976928:000812439][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976928:000812537][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976938:000813643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976938:000813741][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976948:000815848][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976948:000815943][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976958:000817053][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976958:000817148][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976968:000818256][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976968:000818352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976978:000819462][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976978:000819557][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976988:000821665][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976988:000821757][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104976998:000822871][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104976998:000822964][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977008:000824075][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977008:000824171][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977018:000826279][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977018:000826376][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977028:000827482][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977028:000827588][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977038:000828688][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977038:000828781][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977048:000829891][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977048:000829991][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977058:000832096][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977058:000832187][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977068:000833300][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977068:000833398][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977078:000834504][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977078:000834592][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977088:000836715][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977088:000836803][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977098:000838918][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977098:000839040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977108:000840122][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977108:000840220][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977118:000841323][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977118:000841419][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977128:000843529][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977128:000843636][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977138:000844731][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977138:000844829][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977148:000845936][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977148:000846031][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977158:000847139][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977158:000847232][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977168:000849345][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977168:000849440][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977178:000850549][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977178:000850645][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977188:000851755][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977188:000851855][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977198:000853957][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977198:000854063][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977208:000856161][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977208:000856256][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977218:000857366][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977218:000857456][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977228:000858570][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977228:000858667][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977238:000860774][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977238:000860868][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977248:000861981][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977248:000862099][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977258:000863185][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977258:000863279][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977268:000864385][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977268:000864475][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977278:000866591][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977278:000866682][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977288:000867796][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977288:000867891][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977298:000869001][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977298:000869096][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977308:000871203][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977308:000871303][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977318:000872408][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977318:000872500][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977328:000873614][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977328:000873708][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977338:000874817][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977338:000874907][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977348:000877022][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977348:000877116][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977358:000878225][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977358:000878320][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977368:000879429][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977368:000879522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977378:000880634][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977378:000880727][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977388:000882838][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977388:000882926][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977398:000884048][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977398:000884183][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977408:000885249][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977408:000885352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977418:000887453][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977418:000887557][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977428:000888658][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977428:000888755][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977438:000889861][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977438:000889954][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977448:000891065][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977448:000891159][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977458:000893270][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977458:000893355][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977468:000894474][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977468:000894586][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977478:000895679][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977478:000895773][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977488:000897885][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977488:000897989][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977498:000900087][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977498:000900183][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977508:000901292][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977508:000901383][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977518:000902494][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977518:000902582][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977528:000904700][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977528:000904795][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977538:000905906][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977538:000906010][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977548:000907111][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977548:000907211][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977558:000908313][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977558:000908405][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977568:000910517][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977568:000910612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977578:000911721][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977578:000911810][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977588:000912926][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977588:000913020][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977598:000915130][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977598:000915234][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977608:000916334][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977608:000916430][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977618:000917538][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977618:000917645][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977628:000918743][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977628:000918833][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977638:000920948][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977638:000921037][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977648:000922151][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977648:000922246][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977658:000923355][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977658:000923447][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977668:000924561][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977668:000924651][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977678:000926763][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977678:000926853][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977688:000927969][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977688:000928060][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977698:000929177][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977698:000929292][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977708:000931379][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977708:000931490][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977718:000932581][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977718:000932674][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977728:000933788][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977728:000933892][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977738:000934990][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977738:000935083][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977748:000937195][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977748:000937289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977758:000938398][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977758:000938490][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977768:000939603][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977768:000939698][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977778:000941811][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977778:000941912][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977788:000944013][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977788:000944115][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977798:000945218][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977798:000945313][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977808:000946420][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977808:000946513][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977818:000948625][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977818:000948721][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977828:000949829][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977828:000949921][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977838:000951034][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977838:000951151][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977848:000952238][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977848:000952336][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977858:000954445][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977858:000954548][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977868:000955645][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977868:000955731][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977878:000956853][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977878:000956951][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977888:000959055][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977888:000959152][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977898:000961259][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977898:000961353][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977908:000962464][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977908:000962558][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977918:000963669][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977918:000963763][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977928:000965872][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977928:000965967][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977938:000967078][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977938:000967174][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977948:000968281][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977948:000968373][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977958:000969485][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977958:000969576][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977968:000971691][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977968:000971787][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977978:000972894][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977978:000972998][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977988:000974099][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977988:000974205][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104977998:000976307][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104977998:000976438][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978008:000977509][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978008:000977611][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978018:000978720][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978018:000978820][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978028:000979917][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978028:000980018][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978038:000982120][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978038:000982219][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978048:000983325][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978048:000983423][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978058:000984529][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978058:000984639][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978068:000985734][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978068:000985828][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978078:000987938][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978078:000988029][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978088:000989144][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978088:000989247][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978098:000990348][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978098:000990445][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978108:000992551][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978108:000992646][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978118:000993754][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978118:000993850][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978128:000994960][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978128:000995056][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978138:000996165][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978138:000996261][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978148:000998381][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978148:000998523][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978158:000999578][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978158:000999703][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978169:000000778][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978169:000000882][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978179:000002985][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978179:000003088][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978189:000005187][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978189:000005302][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978199:000006390][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978199:000006492][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978209:000007596][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978209:000007711][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978219:000009799][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978219:000009903][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978229:000011004][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978229:000011095][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978239:000012213][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978239:000012338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978249:000013415][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978249:000013531][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978259:000015622][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978259:000015740][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978269:000016826][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978269:000016943][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978279:000018036][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978279:000018176][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978289:000020230][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978289:000020338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978299:000022439][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978299:000022558][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978309:000023641][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978309:000023746][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978319:000024843][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978319:000024941][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978329:000027049][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978329:000027152][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978339:000028251][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978339:000028349][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978349:000029455][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978349:000029551][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978359:000030661][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978359:000030756][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978369:000032864][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978369:000032962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978379:000034069][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978379:000034165][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978389:000035278][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978389:000035398][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978399:000037483][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978399:000037615][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978409:000038691][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978409:000038826][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978419:000039895][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978419:000040031][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978429:000041092][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978429:000041217][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978439:000043294][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978439:000043394][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978449:000044499][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978449:000044608][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978459:000045706][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978459:000045810][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978469:000046914][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978469:000047038][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978479:000049121][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978479:000049258][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978489:000050317][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978489:000050419][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978499:000051520][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978499:000051617][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978509:000053728][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978509:000053845][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978519:000054930][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978519:000055026][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978529:000056133][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978529:000056230][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978539:000057342][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978539:000057458][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978549:000059554][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978549:000059690][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978559:000060755][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978559:000060891][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978569:000061954][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978569:000062065][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978579:000064155][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978579:000064281][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978589:000066360][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978589:000066462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978599:000067569][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978599:000067688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978609:000068769][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978609:000068867][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978619:000070973][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978619:000071072][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978629:000072177][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978629:000072274][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978639:000073382][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978639:000073480][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978649:000074585][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978649:000074681][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978659:000076789][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978659:000076881][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978669:000077993][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978669:000078088][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978679:000079198][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978679:000079294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978689:000081402][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978689:000081511][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978699:000082607][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978699:000082704][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978709:000083809][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978709:000083901][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978719:000085015][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978719:000085109][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978729:000087219][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978729:000087313][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978739:000088423][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978739:000088517][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978749:000089630][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978749:000089730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978759:000090834][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978759:000090930][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978769:000093036][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978769:000093127][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978779:000094241][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978779:000094331][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978789:000095446][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978789:000095540][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978799:000097650][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978799:000097765][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978809:000098853][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978809:000098946][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978819:000100058][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978819:000100149][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978829:000101262][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978829:000101352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978839:000103467][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978839:000103559][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978849:000104671][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978849:000104764][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978859:000105877][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978859:000105969][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978869:000108082][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978869:000108174][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978879:000110284][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978879:000110376][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978889:000111488][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978889:000111578][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978899:000112700][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978899:000112811][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978909:000114899][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978909:000115006][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978919:000116103][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978919:000116202][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978929:000117307][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978929:000117402][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978939:000118512][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978939:000118799][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978949:000120717][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978949:000120829][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978959:000121921][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978959:000122016][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978969:000123124][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978969:000123219][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978979:000125330][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978979:000125427][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978989:000127533][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978989:000127639][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104978999:000128737][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104978999:000128832][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979009:000129939][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979009:000130028][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979019:000132145][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979019:000132267][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979029:000133351][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979029:000133446][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979039:000134554][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979039:000134645][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979049:000135760][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979049:000135858][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979059:000137965][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979059:000138068][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979069:000139167][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979069:000139262][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979079:000140371][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979079:000140461][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979089:000142577][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979089:000142670][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979099:000143780][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979099:000143877][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979109:000144987][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979109:000145085][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979119:000146189][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979119:000146283][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979129:000148393][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979129:000148482][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979139:000149597][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979139:000149690][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979149:000150802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979149:000150894][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979159:000152006][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979159:000152102][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979169:000154212][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979169:000154326][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979179:000155416][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979179:000155514][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979189:000156617][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979189:000156707][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979199:000158828][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979199:000158951][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979209:000160028][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979209:000160125][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979219:000161233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979219:000161336][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979229:000162436][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979229:000162529][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979239:000164643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979239:000164739][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979249:000165846][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979249:000165941][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979259:000167050][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979259:000167151][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979269:000169255][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979269:000169347][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979279:000171458][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979279:000171560][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979289:000172665][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979289:000172764][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979299:000173869][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979299:000173966][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979309:000176072][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979309:000176159][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979319:000177275][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979319:000177374][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979329:000178481][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979329:000178573][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979339:000179685][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979339:000179775][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979349:000181892][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979349:000181994][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979359:000183093][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979359:000183188][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979369:000184298][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979369:000184391][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979379:000186501][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979379:000186599][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979389:000188706][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979389:000188816][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979399:000189911][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979399:000190009][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979409:000191114][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979409:000191206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979419:000193319][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979419:000193412][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979429:000194523][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979429:000194612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979439:000195728][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979439:000195824][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979449:000196932][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979449:000197029][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979459:000199136][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979459:000199228][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979469:000200340][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979469:000200433][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979479:000201546][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979479:000201643][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979489:000203749][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979489:000203848][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979499:000204954][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979499:000205046][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979509:000206163][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979509:000206279][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979519:000207364][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979519:000207473][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979529:000209566][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979529:000209659][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979539:000210773][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979539:000210889][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979549:000211975][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979549:000212072][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979559:000213181][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979559:000213279][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979569:000215384][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979569:000215480][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979579:000216589][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979579:000216691][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979589:000217796][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979589:000217899][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979599:000219998][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979599:000220101][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979609:000221201][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979609:000221311][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979619:000222407][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979619:000222506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979629:000223610][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979629:000223705][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979639:000225815][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979639:000225908][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979649:000227021][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979649:000227127][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979659:000228225][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979659:000228330][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979669:000230436][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979669:000230528][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979679:000232632][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979679:000232726][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979689:000233837][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979689:000233933][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979699:000235040][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979699:000235135][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979709:000237246][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979709:000237340][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979719:000238451][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979719:000238545][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979729:000239653][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979729:000239744][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979739:000240859][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979739:000240961][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979749:000243063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979749:000243155][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979759:000244266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979759:000244375][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979769:000245471][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979769:000245566][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979779:000247677][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979779:000247782][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979789:000248878][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979789:000248969][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979799:000250083][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979799:000250176][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979809:000251294][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979809:000251410][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979819:000253494][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979819:000253596][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979829:000254696][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979829:000254791][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979839:000255903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979839:000256005][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979849:000257106][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979849:000257203][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979859:000259310][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979859:000259407][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979869:000260516][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979869:000260612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979879:000261718][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979879:000261817][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979889:000263926][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979889:000264036][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979899:000265129][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979899:000265228][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979909:000266332][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979909:000266423][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979919:000267536][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979919:000267632][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979929:000269741][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979929:000269837][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979939:000270945][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979939:000271037][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979949:000272152][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979949:000272253][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979959:000273356][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979959:000273450][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979969:000275557][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979969:000275652][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979979:000276762][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979979:000276868][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979989:000277967][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979989:000278063][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104979999:000280172][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104979999:000280279][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980009:000281376][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980009:000281469][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980019:000282580][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980019:000282670][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980029:000283783][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980029:000283869][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980039:000285988][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980039:000286078][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980049:000287193][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980049:000287283][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980059:000288398][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980059:000288493][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980069:000290602][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980069:000290697][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980079:000292807][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980079:000292897][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980089:000294011][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980089:000294098][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980099:000295214][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980099:000295305][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980109:000297424][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980109:000297547][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980119:000298625][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980119:000298726][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980129:000299829][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980129:000299943][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980139:000301034][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980139:000301131][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980149:000303236][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980149:000303329][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980159:000304442][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980159:000304540][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980169:000305645][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980169:000305736][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980179:000307851][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980179:000307959][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980189:000309056][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980189:000309164][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980199:000310260][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980199:000310385][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980209:000311461][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980209:000311549][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980219:000313668][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980219:000313766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980229:000314873][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980229:000314973][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980239:000316075][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980239:000316166][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980249:000317282][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980249:000317385][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980259:000319488][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980259:000319595][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980269:000320687][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980269:000320780][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980279:000321892][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980279:000321986][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980289:000324096][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980289:000324200][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980299:000325301][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980299:000325397][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980309:000326508][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980309:000326609][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980319:000327710][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980319:000327800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980329:000329914][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980329:000330000][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980339:000331121][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980339:000331224][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980349:000332325][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980349:000332437][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980359:000334530][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980359:000334624][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980369:000336732][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980369:000336825][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980379:000337937][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980379:000338035][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980389:000339140][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980389:000339230][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980399:000341344][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980399:000341443][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980409:000342555][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980409:000342675][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980419:000343754][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980419:000343858][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980429:000344959][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980429:000345056][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980439:000347162][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980439:000347261][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980449:000348366][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980449:000348462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980459:000349572][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980459:000349673][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980469:000351782][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980469:000351912][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980479:000353981][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980479:000354084][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980489:000355186][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980489:000355289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980499:000356393][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980499:000356518][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980509:000358593][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980509:000358688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980519:000359798][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980519:000359896][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980529:000361003][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980529:000361100][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980539:000362206][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980539:000362300][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980549:000364411][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980549:000364514][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980559:000365615][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980559:000365710][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980569:000366819][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980569:000366930][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980579:000369022][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980579:000369118][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980589:000370227][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980589:000370325][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980599:000371432][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980599:000371528][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980609:000372638][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980609:000372736][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980619:000374841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980619:000374935][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980629:000376046][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980629:000376142][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980639:000377249][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980639:000377343][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980649:000378454][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980649:000378555][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980659:000380657][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980659:000380751][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980669:000381862][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980669:000381957][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980679:000383066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980679:000383157][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980689:000385271][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980689:000385377][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980699:000386474][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980699:000386573][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980709:000387685][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980709:000387806][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980719:000388885][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980719:000389003][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980729:000391098][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980729:000391203][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980739:000392295][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980739:000392403][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980749:000393497][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980749:000393593][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980759:000395706][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980759:000395807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980769:000397907][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980769:000398008][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980779:000399112][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980779:000399213][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980789:000400316][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980789:000400419][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980799:000402519][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980799:000402625][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980809:000403724][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980809:000403823][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980819:000404927][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980819:000405023][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980829:000406131][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980829:000406227][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980839:000408336][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980839:000408432][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980849:000409542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980849:000409647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980859:000410747][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980859:000410850][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980869:000412949][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980869:000413049][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980879:000414154][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980879:000414251][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980889:000415359][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980889:000415460][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980899:000416562][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980899:000416658][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980909:000418767][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980909:000418863][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980919:000419970][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980919:000420066][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980929:000421175][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980929:000421280][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980939:000422378][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980939:000422488][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980949:000424586][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980949:000424683][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980959:000425787][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980959:000425882][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980969:000426993][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980969:000427098][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980979:000429196][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980979:000429300][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980989:000430400][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980989:000430491][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104980999:000431605][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104980999:000431700][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981009:000432815][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981009:000432936][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981019:000435017][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981019:000435121][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981029:000436219][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981029:000436316][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981039:000437424][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981039:000437526][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981049:000438627][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981049:000438725][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981059:000440832][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981059:000440932][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981069:000442035][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981069:000442129][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981079:000443240][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981079:000443338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981089:000445447][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981089:000445577][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981099:000446648][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981099:000446751][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981109:000447852][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981109:000447946][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981119:000449057][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981119:000449156][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981129:000451263][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981129:000451364][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981139:000452465][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981139:000452561][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981149:000453672][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981149:000453775][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981159:000455874][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981159:000455994][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981169:000458078][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981169:000458171][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981179:000459282][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981179:000459371][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981189:000460487][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981189:000460582][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981199:000462692][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981199:000462790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981209:000463896][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981209:000463990][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981219:000465101][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981219:000465196][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981229:000466305][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981229:000466394][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981239:000468511][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981239:000468608][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981249:000469713][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981249:000469809][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981259:000470918][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981259:000471015][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981269:000473122][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981269:000473219][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981279:000474327][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981279:000474424][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981289:000475529][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981289:000475619][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981299:000476735][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981299:000476827][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981309:000478945][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981309:000479086][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981319:000480145][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981319:000480248][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981329:000481349][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981329:000481450][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981339:000482555][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981339:000482656][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981349:000484756][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981349:000484850][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981359:000485963][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981359:000486065][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981369:000487166][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981369:000487259][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981379:000489371][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981379:000489481][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981389:000490578][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981389:000490681][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981399:000491781][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981399:000491884][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981409:000492984][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981409:000493079][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981419:000495187][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981419:000495282][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981429:000496393][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981429:000496490][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981439:000497596][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981439:000497692][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981449:000499803][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981449:000499906][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981459:000502006][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981459:000502111][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981469:000503208][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981469:000503299][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981479:000504413][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981479:000504507][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981489:000506617][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981489:000506723][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981499:000507821][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981499:000507914][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981509:000509028][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981509:000509131][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981519:000510232][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981519:000510333][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981529:000512435][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981529:000512546][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981539:000513639][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981539:000513731][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981549:000514843][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981549:000514947][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981559:000517048][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981559:000517146][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981569:000519252][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981569:000519346][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981579:000520457][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981579:000520550][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981589:000521660][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981589:000521752][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981599:000523865][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981599:000523960][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981609:000525076][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981609:000525194][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981619:000526275][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981619:000526375][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981629:000527480][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981629:000527581][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981639:000529684][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981639:000529785][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981649:000530888][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981649:000530986][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981659:000532092][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981659:000532189][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981669:000534296][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981669:000534389][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981679:000535501][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981679:000535624][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981689:000536709][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981689:000536813][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981699:000537910][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981699:000538010][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981709:000540112][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981709:000540205][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981719:000541318][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981719:000541416][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981729:000542523][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981729:000542619][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981739:000543725][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981739:000543818][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981749:000545936][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981749:000546069][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981759:000547135][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981759:000547239][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981769:000548338][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981769:000548432][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981779:000550544][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981779:000550648][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981789:000551748][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981789:000551842][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981799:000552953][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981799:000553051][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981809:000554156][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981809:000554249][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981819:000556361][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981819:000556454][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981829:000557564][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981829:000557661][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981839:000558770][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981839:000558867][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981849:000560976][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981849:000561070][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981859:000563179][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981859:000563273][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981869:000564382][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981869:000564477][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981879:000565587][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981879:000565686][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981889:000567790][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981889:000567893][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981899:000568995][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981899:000569104][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981909:000570206][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981909:000570324][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981919:000571406][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981919:000571508][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981929:000573611][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981929:000573713][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981939:000574814][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981939:000574910][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981949:000576017][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981949:000576112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981959:000578222][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981959:000578325][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981969:000580426][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981969:000580520][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981979:000581632][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981979:000581738][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981989:000582839][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981989:000582944][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104981999:000585040][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104981999:000585144][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982009:000586244][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982009:000586346][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982019:000587447][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982019:000587541][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982029:000588653][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982029:000588748][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982039:000590856][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982039:000590949][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982049:000592063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982049:000592163][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982059:000593267][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982059:000593372][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982069:000595469][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982069:000595573][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982079:000596674][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982079:000596770][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982089:000597879][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982089:000597975][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982099:000599082][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982099:000599172][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982109:000601286][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982109:000601381][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982119:000602493][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982119:000602611][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982129:000603695][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982129:000603790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982139:000604900][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982139:000604995][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982149:000607103][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982149:000607193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982159:000608309][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982159:000608401][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982169:000609512][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982169:000609607][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982179:000611717][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982179:000611813][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982189:000612921][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982189:000613011][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982199:000614125][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982199:000614221][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982209:000615336][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982209:000615451][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982219:000617536][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982219:000617635][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982229:000618742][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982229:000618841][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982239:000619943][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982239:000620049][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982249:000622157][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982249:000622259][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982259:000624353][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982259:000624455][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982269:000625558][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982269:000625674][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982279:000626760][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982279:000626858][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982289:000628968][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982289:000629076][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982299:000630171][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982299:000630273][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982309:000631374][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982309:000631468][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982319:000632579][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982319:000632672][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982329:000634783][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982329:000634881][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982339:000635988][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982339:000636083][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982349:000637193][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982349:000637295][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982359:000639397][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982359:000639501][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982369:000640598][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982369:000640690][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982379:000641804][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982379:000641894][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982389:000643010][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982389:000643105][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982399:000645212][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982399:000645306][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982409:000646416][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982409:000646513][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104982409:000646622][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x2c85, discovered 0 times already. [1104982409:000646705][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2c86. [1104982409:000646792][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2c87. [1104982409:000646852][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2c88. [1104982409:000646923][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x2c89, discovered 0 times already. [1104982409:000646984][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104982409:000647047][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c8b. [1104982409:000647080][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c8c. [1104982409:000647090][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104982409:000647150][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c8d. [1104982409:000647203][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c8e. [1104982409:000647227][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c8f. [1104982409:000647274][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c90. [1104982409:000647314][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c91. [1104982409:000647356][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c92. [1104982409:000647406][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c93. [1104982409:000647445][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c94. [1104982409:000647480][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c95. [1104982409:000647733][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x2c96, discovered 0 times already. [1104982409:000647784][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c97. [1104982409:000647814][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c98. [1104982409:000647856][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c99. [1104982409:000647889][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c9a. [1104982409:000647938][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c9b. [1104982409:000647970][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c9c. [1104982409:000648049][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2c9d. [1104982409:000648217][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2c9e. [1104982409:000648414][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2c9f. [1104982409:000648573][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2ca0. [1104982409:000648593][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104982409:000648601][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104982409:000648608][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104982409:000648624][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104982409:000648641][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104982409:000648653][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104982409:000648664][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104982409:000648674][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104982409:000648683][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104982409:000648696][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104982409:000648817][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104982409:000648838][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104982409:000648846][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104982409:000648855][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104982409:000648865][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104982409:000648874][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104982409:000648882][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104982409:000648891][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104982409:000648899][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104982409:000648923][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104982409:000649325][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104982419:000647624][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982419:000647733][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982429:000648825][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982429:000648920][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982439:000651030][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982439:000651121][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982449:000652235][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982449:000652336][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982459:000653440][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982459:000653537][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982469:000655643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982469:000655745][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982479:000656848][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982479:000656942][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982489:000658051][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982489:000658145][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982499:000659257][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982499:000659364][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982509:000661465][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982509:000661578][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982519:000662666][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982519:000662766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982529:000663870][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982529:000663974][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104982529:000664061][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x2caf, discovered 0 times already. [1104982529:000664141][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2cb0. [1104982529:000664228][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2cb1. [1104982529:000664279][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2cb2. [1104982529:000664350][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x2cb3, discovered 0 times already. [1104982529:000664425][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104982529:000664489][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cb5. [1104982529:000664532][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cb6. [1104982529:000664601][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cb7. [1104982529:000664624][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cb8. [1104982529:000664648][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cb9. [1104982529:000664695][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cba. [1104982529:000664734][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cbb. [1104982529:000664775][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cbc. [1104982529:000664820][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cbd. [1104982529:000664860][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cbe. [1104982529:000665060][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104982529:000665080][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x2cbf. [1104982529:000665112][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cc0. [1104982529:000665327][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x2cc1, discovered 0 times already. [1104982529:000665422][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cc2. [1104982529:000665453][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cc3. [1104982529:000665494][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cc4. [1104982529:000665540][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cc5. [1104982529:000665599][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cc6. [1104982529:000665631][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cc7. [1104982529:000665692][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2cc8. [1104982529:000665778][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104982529:000665866][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x2cca. [1104982529:000666035][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2ccb. [1104982529:000666126][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x2ccc. [1104982529:000666287][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2ccd. [1104982529:000666451][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2cce. [1104982529:000666471][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104982529:000666483][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104982529:000666493][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104982529:000666502][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104982529:000666513][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104982529:000666522][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104982529:000666723][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104982529:000666734][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104982529:000666745][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104982529:000666850][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104982529:000666862][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104982529:000666869][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104982529:000666878][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104982529:000666889][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104982529:000666897][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104982529:000666905][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104982529:000666913][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104982529:000666920][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104982529:000666937][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104982529:000667096][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104982529:000667289][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104982529:000667909][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104982539:000666076][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982539:000666184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982549:000668279][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982549:000668382][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982559:000669481][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982559:000669579][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982569:000670687][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982569:000670790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982579:000672892][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982579:000672997][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982589:000674095][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982589:000674191][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982599:000675300][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982599:000675399][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982609:000676502][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982609:000676594][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982619:000678710][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982619:000678810][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982629:000679912][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982629:000680013][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982639:000681116][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982639:000681210][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982649:000683320][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982649:000683429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982659:000685528][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982659:000685632][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982669:000686729][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982669:000686830][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982679:000687937][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982679:000688040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982689:000690139][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982689:000690237][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982699:000691342][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982699:000691435][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982709:000692547][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982709:000692650][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982719:000693753][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982719:000693857][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982729:000695956][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982729:000696051][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982739:000697161][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982739:000697273][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982749:000698366][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982749:000698468][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982759:000700568][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982759:000700671][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982769:000701774][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982769:000701872][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982779:000702978][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982779:000703073][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982789:000704182][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982789:000704282][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982799:000706397][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982799:000706546][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982809:000707592][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982809:000707697][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982819:000708800][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982819:000708920][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982829:000710002][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982829:000710116][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982839:000712203][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982839:000712301][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982849:000713408][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982849:000713507][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982859:000714613][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982859:000714708][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982869:000716816][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982869:000716924][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982879:000718021][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982879:000718115][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982889:000719227][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982889:000719350][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982899:000720431][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982899:000720531][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982909:000722632][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982909:000722729][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982919:000723837][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982919:000723929][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982929:000725042][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982929:000725138][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982939:000727248][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982939:000727346][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982949:000729452][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982949:000729556][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982959:000730656][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982959:000730766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982969:000731858][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982969:000731954][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982979:000734063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982979:000734164][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982989:000735269][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982989:000735370][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104982999:000736472][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104982999:000736563][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983009:000737677][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983009:000737771][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983019:000739881][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983019:000739978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983029:000741086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983029:000741184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983039:000742289][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983039:000742383][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983049:000744494][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983049:000744594][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983059:000746698][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983059:000746790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983069:000747904][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983069:000748003][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983079:000749107][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983079:000749200][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983089:000751310][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983089:000751402][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983099:000752515][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983099:000752603][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983109:000753720][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983109:000753833][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983119:000754930][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983119:000755048][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983129:000757131][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983129:000757234][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983139:000758333][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983139:000758428][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983149:000759538][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983149:000759640][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983159:000761742][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983159:000761842][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983169:000762948][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983169:000763048][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983179:000764152][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983179:000764255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983189:000765356][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983189:000765462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983199:000767561][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983199:000767659][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983209:000768762][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983209:000768855][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983219:000769968][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983219:000770061][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983229:000771172][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983229:000771271][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983239:000773377][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983239:000773471][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983249:000774582][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983249:000774685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983259:000775788][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983259:000775890][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983269:000777990][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983269:000778098][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983279:000779193][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983279:000779287][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983289:000780399][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983289:000780495][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983299:000781602][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983299:000781695][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983309:000783808][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983309:000783907][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983319:000785010][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983319:000785104][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983329:000786216][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983329:000786327][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983339:000788426][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983339:000788518][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983349:000790625][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983349:000790723][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983359:000791829][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983359:000791922][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983369:000793034][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983369:000793129][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983379:000795237][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983379:000795333][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983389:000796440][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983389:000796536][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983399:000797646][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983399:000797741][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983409:000798850][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983409:000798945][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983419:000801066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983419:000801204][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983429:000802269][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983429:000802410][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983439:000803475][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983439:000803615][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983449:000805669][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983449:000805786][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983459:000807875][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983459:000807991][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983469:000809078][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983469:000809186][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983479:000810281][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983479:000810406][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983489:000812488][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983489:000812595][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983499:000813689][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983499:000813788][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983509:000814893][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983509:000814992][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983519:000816099][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983519:000816196][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983529:000818302][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983529:000818406][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983539:000819506][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983539:000819607][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983549:000820715][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983549:000820838][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983559:000822915][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983559:000823019][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983569:000824120][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983569:000824216][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983579:000825324][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983579:000825415][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983589:000826530][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983589:000826627][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983599:000828733][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983599:000828826][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983609:000829939][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983609:000830040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983619:000831141][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983619:000831235][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983629:000832346][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983629:000832441][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983639:000834549][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983639:000834639][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983649:000835755][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983649:000835850][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983659:000836958][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983659:000837048][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983669:000839162][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983669:000839257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983679:000840368][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983679:000840462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983689:000841572][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983689:000841668][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983699:000842776][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983699:000842883][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983709:000844980][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983709:000845070][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983719:000846191][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983719:000846307][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983729:000847392][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983729:000847496][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983739:000849596][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983739:000849697][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983749:000851798][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983749:000851894][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983759:000853004][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983759:000853101][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983769:000854209][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983769:000854311][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983779:000856414][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983779:000856514][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983789:000857619][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983789:000857727][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983799:000858820][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983799:000858914][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983809:000860024][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983809:000860120][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983819:000862229][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983819:000862322][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983829:000863434][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983829:000863531][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983839:000864636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983839:000864726][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983849:000866845][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983849:000866960][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983859:000869049][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983859:000869152][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983869:000870266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983869:000870357][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983879:000871454][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983879:000871546][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983889:000873660][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983889:000873757][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983899:000874863][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983899:000874959][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983909:000876069][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983909:000876175][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983919:000877272][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983919:000877391][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983929:000879476][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983929:000879573][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983939:000880679][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983939:000880770][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983949:000881885][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983949:000881979][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983959:000884089][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983959:000884189][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983969:000885294][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983969:000885392][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983979:000886498][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983979:000886591][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983989:000887701][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983989:000887800][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104983999:000889907][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104983999:000890002][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984009:000891111][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984009:000891207][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984019:000892321][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984019:000892440][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984029:000894524][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984029:000894631][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984039:000896725][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984039:000896826][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984049:000897929][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984049:000898030][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984059:000899133][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984059:000899226][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984069:000901338][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984069:000901465][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984079:000902541][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984079:000902635][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984089:000903749][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984089:000903855][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984099:000904953][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984099:000905058][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984109:000907155][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984109:000907247][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984119:000908358][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984119:000908449][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984129:000909565][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984129:000909663][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984139:000911767][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984139:000911865][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984149:000913975][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984149:000914080][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984159:000915177][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984159:000915272][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984169:000916381][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984169:000916478][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984179:000918584][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984179:000918675][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984189:000919790][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984189:000919885][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984199:000920993][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984199:000921087][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984209:000922199][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984209:000922298][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984219:000924402][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984219:000924499][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984229:000925607][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984229:000925701][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984239:000926810][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984239:000926902][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984249:000929015][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984249:000929123][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984259:000930220][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984259:000930315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984269:000931423][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984269:000931518][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984279:000932631][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984279:000932732][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984289:000934832][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984289:000934946][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984299:000936037][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984299:000936129][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984309:000937241][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984309:000937336][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984319:000938451][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984319:000938571][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984329:000940652][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984329:000940760][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984339:000941863][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984339:000941961][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984349:000943058][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984349:000943157][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984359:000945262][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984359:000945359][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984369:000946469][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984369:000946576][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984379:000947673][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984379:000947771][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984389:000948879][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984389:000948990][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984399:000951080][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984399:000951177][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984409:000952285][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984409:000952384][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984419:000953487][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984419:000953579][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984429:000955695][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984429:000955790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984439:000957897][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984439:000958013][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984449:000959104][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984449:000959209][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984459:000960307][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984459:000960410][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984469:000962509][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984469:000962601][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984479:000963714][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984479:000963807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984489:000964919][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984489:000965017][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984499:000966122][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984499:000966214][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984509:000968327][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984509:000968438][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984519:000969532][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984519:000969625][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984529:000970736][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984529:000970834][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984539:000972940][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984539:000973042][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984549:000975144][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984549:000975239][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984559:000976349][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984559:000976442][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984569:000977554][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984569:000977651][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984579:000979759][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984579:000979853][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984589:000980961][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984589:000981054][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984599:000982166][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984599:000982257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984609:000983371][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984609:000983473][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984619:000985581][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984619:000985700][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984629:000986781][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984629:000986885][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984639:000987986][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984639:000988087][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984649:000990188][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984649:000990293][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984659:000991394][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984659:000991511][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984669:000992598][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984669:000992705][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984679:000993802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984679:000993904][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984689:000996010][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984689:000996119][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984699:000997210][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984699:000997307][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984709:000998413][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984709:000998506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984719:000999618][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984719:000999710][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984730:000001823][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984730:000001919][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984740:000003027][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984740:000003128][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984750:000004234][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984750:000004338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984760:000006437][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984760:000006541][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984770:000007639][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984770:000007735][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984780:000008845][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984780:000008942][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984790:000010049][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984790:000010147][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984800:000012253][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984800:000012345][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984810:000013458][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984810:000013556][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984820:000014662][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984820:000014758][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984830:000016866][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984830:000016962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984840:000019070][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984840:000019158][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984850:000020275][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984850:000020380][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984860:000021479][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984860:000021575][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984870:000023683][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984870:000023779][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984880:000024889][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984880:000025000][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984890:000026091][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984890:000026184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984900:000027296][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984900:000027383][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984910:000029500][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984910:000029596][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984920:000030710][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984920:000030825][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984930:000031911][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984930:000032014][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984940:000034116][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984940:000034230][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104984940:000034321][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x2dc8, discovered 0 times already. [1104984940:000034402][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2dc9. [1104984940:000034491][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2dca. [1104984940:000034546][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2dcb. [1104984940:000034629][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x2dcc, discovered 0 times already. [1104984940:000034693][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104984940:000034756][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dce. [1104984940:000034799][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dcf. [1104984940:000034811][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104984940:000034842][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dd0. [1104984940:000034883][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dd1. [1104984940:000034924][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dd2. [1104984940:000034965][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dd3. [1104984940:000035006][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dd4. [1104984940:000035048][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dd5. [1104984940:000035089][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dd6. [1104984940:000035132][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dd7. [1104984940:000035181][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dd8. [1104984940:000035387][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x2dd9, discovered 0 times already. [1104984940:000035424][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dda. [1104984940:000035460][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ddb. [1104984940:000035495][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ddc. [1104984940:000035532][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ddd. [1104984940:000035568][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dde. [1104984940:000035603][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ddf. [1104984940:000035640][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2de0. [1104984940:000035810][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2de1. [1104984940:000036005][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2de2. [1104984940:000036176][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2de3. [1104984940:000036196][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104984940:000036205][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104984940:000036212][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104984940:000036221][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104984940:000036234][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104984940:000036248][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104984940:000036259][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104984940:000036269][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104984940:000036278][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104984940:000036291][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104984940:000036396][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104984940:000036410][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104984940:000036418][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104984940:000036427][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104984940:000036438][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104984940:000036446][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104984940:000036455][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104984940:000036464][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104984940:000036471][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104984940:000036480][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104984940:000036878][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104984950:000036321][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984950:000036429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984960:000037525][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984960:000037627][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984970:000038729][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984970:000038831][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984980:000040935][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984980:000041040][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104984990:000042139][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104984990:000042244][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985000:000043341][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985000:000043442][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985010:000044545][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985010:000044638][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104985010:000044746][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x2ded, discovered 0 times already. [1104985010:000044825][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2dee. [1104985010:000044909][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2def. [1104985010:000044958][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2df0. [1104985010:000045031][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x2df1, discovered 0 times already. [1104985010:000045088][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104985010:000045151][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2df3. [1104985010:000045187][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2df4. [1104985010:000045252][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2df5. [1104985010:000045301][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2df6. [1104985010:000045341][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2df7. [1104985010:000045389][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2df8. [1104985010:000045430][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2df9. [1104985010:000045470][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dfa. [1104985010:000045519][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dfb. [1104985010:000045566][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dfc. [1104985010:000045744][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104985010:000045756][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x2dfd. [1104985010:000045803][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2dfe. [1104985010:000045994][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x2dff, discovered 0 times already. [1104985010:000046029][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2e00. [1104985010:000046065][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2e01. [1104985010:000046100][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2e02. [1104985010:000046136][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2e03. [1104985010:000046181][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2e04. [1104985010:000046224][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2e05. [1104985010:000046285][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2e06. [1104985010:000046375][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104985010:000046455][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x2e08. [1104985010:000046625][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2e09. [1104985010:000046704][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x2e0a. [1104985010:000046877][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2e0b. [1104985010:000047037][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2e0c. [1104985010:000047057][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104985010:000047068][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104985010:000047079][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104985010:000047088][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104985010:000047099][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104985010:000047108][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104985010:000047300][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104985010:000047311][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104985010:000047324][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104985010:000047430][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104985010:000047440][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104985010:000047448][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104985010:000047457][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104985010:000047467][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104985010:000047483][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104985010:000047492][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104985010:000047510][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104985010:000047519][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104985010:000047527][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104985010:000047684][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104985010:000047870][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104985010:000048481][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104985020:000046752][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985020:000046856][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985030:000047956][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985030:000048060][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985040:000049158][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985040:000049261][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985050:000051364][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985050:000051478][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985060:000052568][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985060:000052672][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985070:000053772][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985070:000053869][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985080:000054977][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985080:000055080][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985090:000057180][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985090:000057277][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985100:000058384][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985100:000058480][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985110:000059588][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985110:000059686][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985120:000061795][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985120:000061897][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985130:000063997][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985130:000064109][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985140:000065204][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985140:000065305][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985150:000066406][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985150:000066501][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985160:000068611][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985160:000068717][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985170:000069814][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985170:000069912][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985180:000071018][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985180:000071108][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985190:000072222][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985190:000072310][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985200:000074427][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985200:000074520][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985210:000075632][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985210:000075727][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985220:000076841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985220:000076958][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985230:000079041][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985230:000079147][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985240:000081248][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985240:000081352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985250:000082457][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985250:000082550][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985260:000083653][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985260:000083747][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985270:000085861][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985270:000085961][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985280:000087063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985280:000087176][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985290:000088271][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985290:000088380][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985300:000089471][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985300:000089561][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985310:000091675][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985310:000091765][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985320:000092879][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985320:000092968][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985330:000094084][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985330:000094172][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985340:000096287][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985340:000096390][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985350:000097494][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985350:000097609][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985360:000098696][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985360:000098793][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985370:000099901][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985370:000099997][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985380:000102105][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985380:000102195][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985390:000103309][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985390:000103398][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985400:000104513][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985400:000104604][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985410:000105719][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985410:000105817][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985420:000107923][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985420:000108020][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985430:000109126][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985430:000109219][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985440:000110330][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985440:000110419][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985450:000112536][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985450:000112642][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985460:000113740][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985460:000113834][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985470:000114946][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985470:000115045][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985480:000116148][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985480:000116242][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985490:000118354][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985490:000118450][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985500:000119557][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985500:000119669][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985510:000120762][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985510:000120858][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985520:000122973][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985520:000123089][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985530:000125173][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985530:000125278][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985540:000126376][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985540:000126478][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985550:000127579][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985550:000127674][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985560:000129784][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985560:000129884][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985570:000130990][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985570:000131092][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985580:000132193][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985580:000132290][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985590:000133400][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985590:000133508][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985600:000135600][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985600:000135698][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985610:000136805][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985610:000136902][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985620:000138009][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985620:000138105][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985630:000140213][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985630:000140313][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985640:000142417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985640:000142511][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985650:000143625][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985650:000143729][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985660:000144828][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985660:000144929][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985670:000147033][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985670:000147135][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985680:000148236][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985680:000148332][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985690:000149440][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985690:000149535][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985700:000150644][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985700:000150737][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985710:000152849][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985710:000152950][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985720:000154054][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985720:000154168][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985730:000155256][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985730:000155352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985740:000157461][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985740:000157560][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985750:000158665][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985750:000158763][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985760:000159873][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985760:000159982][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985770:000161075][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985770:000161187][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985780:000163280][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985780:000163381][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985790:000164484][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985790:000164583][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985800:000165687][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985800:000165790][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985810:000166892][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985810:000166986][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985820:000169101][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985820:000169219][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985830:000170303][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985830:000170410][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985840:000171507][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985840:000171608][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985850:000173709][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985850:000173818][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985860:000174912][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985860:000175009][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985870:000176120][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985870:000176238][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985880:000177322][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985880:000177419][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985890:000179531][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985890:000179639][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985900:000180731][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985900:000180829][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985910:000181935][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985910:000182030][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985920:000184146][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985920:000184246][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985930:000186344][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985930:000186442][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985940:000187547][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985940:000187666][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985950:000188755][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985950:000188856][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985960:000190957][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985960:000191054][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985970:000192161][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985970:000192253][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985980:000193366][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985980:000193470][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104985990:000194570][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104985990:000194665][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986000:000196773][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986000:000196864][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986010:000197979][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986010:000198077][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986020:000199184][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986020:000199283][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986030:000201386][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986030:000201487][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986040:000202591][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986040:000202685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986050:000203798][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986050:000203899][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986060:000205002][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986060:000205101][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986070:000207204][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986070:000207294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986080:000208409][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986080:000208504][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986090:000209613][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986090:000209731][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986100:000210817][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986100:000210905][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986110:000213022][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986110:000213115][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986120:000214225][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986120:000214316][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986130:000215435][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986130:000215554][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986140:000217638][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986140:000217742][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986150:000218840][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986150:000218934][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986160:000220056][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986160:000220165][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986170:000221252][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986170:000221363][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986180:000223455][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986180:000223560][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986190:000224660][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986190:000224764][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986200:000225863][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986200:000225963][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986210:000227066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986210:000227161][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986220:000229272][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986220:000229371][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986230:000230476][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986230:000230579][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986240:000231679][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986240:000231792][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986250:000233883][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986250:000233986][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986260:000235089][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986260:000235190][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986270:000236292][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986270:000236387][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986280:000237497][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986280:000237596][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986290:000239703][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986290:000239806][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986300:000240904][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986300:000241007][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986310:000242109][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986310:000242225][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986320:000244314][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986320:000244415][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986330:000246517][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986330:000246609][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986340:000247722][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986340:000247816][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986350:000248927][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986350:000249024][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986360:000251129][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986360:000251222][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986370:000252336][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986370:000252434][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986380:000253540][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986380:000253637][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986390:000254749][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986390:000254864][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986400:000256948][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986400:000257042][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986410:000258152][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986410:000258247][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986420:000259357][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986420:000259456][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986430:000261567][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986430:000261695][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986440:000263769][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986440:000263871][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986450:000264969][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986450:000265062][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986460:000266176][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986460:000266294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986470:000268379][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986470:000268475][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986480:000269584][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986480:000269684][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104986480:000269774][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x2ea8, discovered 0 times already. [1104986480:000269855][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2ea9. [1104986480:000269949][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2eaa. [1104986480:000270008][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2eab. [1104986480:000270086][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x2eac, discovered 0 times already. [1104986480:000270146][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104986480:000270210][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2eae. [1104986480:000270253][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2eaf. [1104986480:000270278][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104986480:000270293][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2eb0. [1104986480:000270352][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2eb1. [1104986480:000270394][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2eb2. [1104986480:000270439][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2eb3. [1104986480:000270489][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2eb4. [1104986480:000270523][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2eb5. [1104986480:000270575][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2eb6. [1104986480:000270613][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2eb7. [1104986480:000270678][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2eb8. [1104986480:000270875][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x2eb9, discovered 0 times already. [1104986480:000270919][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2eba. [1104986480:000270962][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ebb. [1104986480:000271015][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ebc. [1104986480:000271059][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ebd. [1104986480:000271102][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ebe. [1104986480:000271146][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ebf. [1104986480:000271189][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ec0. [1104986480:000271360][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2ec1. [1104986480:000271546][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2ec2. [1104986480:000271709][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2ec3. [1104986480:000271731][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104986480:000271740][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104986480:000271747][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104986480:000271755][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104986480:000271768][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104986480:000271781][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104986480:000271793][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104986480:000271804][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104986480:000271813][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104986480:000271826][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104986480:000271934][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104986480:000271963][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104986480:000271970][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104986480:000271979][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104986480:000272000][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104986480:000272009][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104986480:000272017][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104986480:000272023][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104986480:000272030][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104986480:000272039][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104986480:000272430][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104986490:000270791][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986490:000270907][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986500:000271993][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986500:000272094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986510:000274195][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986510:000274292][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986520:000275401][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986520:000275517][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986530:000276605][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986530:000276702][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986540:000278809][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986540:000278916][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986550:000280013][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986550:000280111][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104986550:000280201][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x2ecd, discovered 0 times already. [1104986550:000280282][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2ece. [1104986550:000280378][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2ecf. [1104986550:000280437][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2ed0. [1104986550:000280507][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x2ed1, discovered 0 times already. [1104986550:000280569][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104986550:000280632][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ed3. [1104986550:000280675][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ed4. [1104986550:000280728][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ed5. [1104986550:000280754][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ed6. [1104986550:000280798][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ed7. [1104986550:000280830][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ed8. [1104986550:000280890][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ed9. [1104986550:000280934][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2eda. [1104986550:000280995][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2edb. [1104986550:000281045][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2edc. [1104986550:000281233][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104986550:000281252][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x2edd. [1104986550:000281275][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ede. [1104986550:000281491][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x2edf, discovered 0 times already. [1104986550:000281537][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ee0. [1104986550:000281569][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ee1. [1104986550:000281633][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ee2. [1104986550:000281665][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ee3. [1104986550:000281729][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ee4. [1104986550:000281762][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ee5. [1104986550:000281825][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ee6. [1104986550:000281914][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104986550:000281999][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x2ee8. [1104986550:000282163][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2ee9. [1104986550:000282244][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x2eea. [1104986550:000282410][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2eeb. [1104986550:000282564][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2eec. [1104986550:000282583][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104986550:000282595][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104986550:000282605][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104986550:000282614][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104986550:000282634][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104986550:000282642][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104986550:000282839][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104986550:000282851][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104986550:000282864][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104986550:000282973][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104986550:000282983][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104986550:000282990][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104986550:000282999][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104986550:000283010][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104986550:000283019][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104986550:000283027][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104986550:000283036][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104986550:000283043][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104986550:000283050][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104986550:000283206][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104986550:000283395][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104986550:000284014][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104986560:000281222][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986560:000281357][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986570:000282423][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986570:000282524][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986580:000284625][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986580:000284717][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986590:000285832][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986590:000285936][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986600:000287034][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986600:000287129][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986610:000289243][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986610:000289348][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986620:000291444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986620:000291539][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986630:000292648][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986630:000292744][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986640:000293853][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986640:000293951][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986650:000296057][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986650:000296157][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986660:000297260][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986660:000297356][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986670:000298467][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986670:000298561][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986680:000299670][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986680:000299768][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986690:000301874][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986690:000301962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986700:000303078][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986700:000303176][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986710:000304284][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986710:000304399][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986720:000306489][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986720:000306603][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986730:000308698][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986730:000308824][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986740:000309898][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986740:000310010][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986750:000311100][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986750:000311206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986760:000313308][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986760:000313417][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986770:000314510][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986770:000314604][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986780:000315715][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986780:000315828][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986790:000316920][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986790:000317027][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986800:000319124][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986800:000319228][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986810:000320325][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986810:000320419][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986820:000321532][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986820:000321635][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986830:000323736][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986830:000323841][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986840:000324938][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986840:000325033][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104986840:000325125][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x2f12, discovered 0 times already. [1104986840:000325203][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2f13. [1104986840:000325300][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2f14. [1104986840:000325351][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2f15. [1104986840:000325439][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x2f16, discovered 0 times already. [1104986840:000325500][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104986840:000325563][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f18. [1104986840:000325598][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f19. [1104986840:000325607][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104986840:000325666][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f1a. [1104986840:000325719][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f1b. [1104986840:000325745][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f1c. [1104986840:000325790][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f1d. [1104986840:000325830][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f1e. [1104986840:000325874][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f1f. [1104986840:000325914][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f20. [1104986840:000325966][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f21. [1104986840:000325995][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f22. [1104986840:000326213][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x2f23, discovered 0 times already. [1104986840:000326281][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f24. [1104986840:000326307][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f25. [1104986840:000326336][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f26. [1104986840:000326377][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f27. [1104986840:000326421][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f28. [1104986840:000326464][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f29. [1104986840:000326507][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f2a. [1104986840:000326676][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2f2b. [1104986840:000326867][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2f2c. [1104986840:000327025][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2f2d. [1104986840:000327048][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104986840:000327057][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104986840:000327064][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104986840:000327073][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104986840:000327086][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104986840:000327099][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104986840:000327110][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104986840:000327121][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104986840:000327130][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104986840:000327143][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104986840:000327251][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104986840:000327271][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104986840:000327279][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104986840:000327289][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104986840:000327299][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104986840:000327307][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104986840:000327316][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104986840:000327325][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104986840:000327332][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104986840:000327341][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104986840:000327737][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104986850:000326148][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986850:000326269][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986860:000327351][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986860:000327461][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986870:000329554][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986870:000329658][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986880:000330759][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986880:000330864][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986890:000331963][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986890:000332066][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986900:000333165][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986900:000333261][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986910:000335371][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986910:000335473][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104986910:000335585][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x2f37, discovered 0 times already. [1104986910:000335662][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2f38. [1104986910:000335745][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2f39. [1104986910:000335796][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2f3a. [1104986910:000335863][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x2f3b, discovered 0 times already. [1104986910:000335921][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104986910:000335984][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f3d. [1104986910:000336028][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f3e. [1104986910:000336061][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f3f. [1104986910:000336127][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f40. [1104986910:000336169][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f41. [1104986910:000336210][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f42. [1104986910:000336251][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f43. [1104986910:000336291][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f44. [1104986910:000336331][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f45. [1104986910:000336374][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f46. [1104986910:000336564][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104986910:000336581][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x2f47. [1104986910:000336633][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f48. [1104986910:000336819][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x2f49, discovered 0 times already. [1104986910:000336861][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f4a. [1104986910:000336904][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f4b. [1104986910:000336954][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f4c. [1104986910:000336997][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f4d. [1104986910:000337041][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f4e. [1104986910:000337084][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f4f. [1104986910:000337134][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f50. [1104986910:000337224][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104986910:000337310][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x2f52. [1104986910:000337479][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2f53. [1104986910:000337572][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x2f54. [1104986910:000337736][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2f55. [1104986910:000337899][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2f56. [1104986910:000337919][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104986910:000337930][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104986910:000337941][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104986910:000337950][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104986910:000337961][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104986910:000337970][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104986910:000338162][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104986910:000338172][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104986910:000338185][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104986910:000338287][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104986910:000338300][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104986910:000338308][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104986910:000338317][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104986910:000338327][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104986910:000338335][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104986910:000338351][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104986910:000338362][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104986910:000338371][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104986910:000338379][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104986910:000338541][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104986910:000338731][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104986910:000339359][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104986920:000336579][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986920:000336688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986930:000337780][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986930:000337884][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986940:000339982][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986940:000340078][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986950:000341189][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986950:000341291][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986960:000342389][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986960:000342498][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986970:000343596][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986970:000343697][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104986980:000345802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986980:000345908][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104986980:000346004][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x2f66, discovered 0 times already. [1104986980:000346089][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2f67. [1104986980:000346177][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2f68. [1104986980:000346234][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2f69. [1104986980:000346306][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x2f6a, discovered 0 times already. [1104986980:000346364][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104986980:000346427][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f6c. [1104986980:000346471][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f6d. [1104986980:000346496][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104986980:000346510][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f6e. [1104986980:000346569][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f6f. [1104986980:000346610][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f70. [1104986980:000346657][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f71. [1104986980:000346697][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f72. [1104986980:000346738][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f73. [1104986980:000346779][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f74. [1104986980:000346833][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f75. [1104986980:000346878][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f76. [1104986980:000347081][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x2f77, discovered 0 times already. [1104986980:000347124][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f78. [1104986980:000347167][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f79. [1104986980:000347216][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f7a. [1104986980:000347260][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f7b. [1104986980:000347310][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f7c. [1104986980:000347354][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f7d. [1104986980:000347397][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f7e. [1104986980:000347563][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2f7f. [1104986980:000347748][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2f80. [1104986980:000347907][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2f81. [1104986980:000347926][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104986980:000347935][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104986980:000347942][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104986980:000347951][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104986980:000347964][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104986980:000347986][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104986980:000347998][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104986980:000348008][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104986980:000348016][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104986980:000348030][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104986980:000348133][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104986980:000348159][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104986980:000348167][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104986980:000348176][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104986980:000348186][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104986980:000348195][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104986980:000348203][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104986980:000348212][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104986980:000348220][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104986980:000348228][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104986980:000348619][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104986990:000347007][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104986990:000347116][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987000:000348209][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987000:000348312][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987010:000350417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987010:000350519][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987020:000352620][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987020:000352749][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987030:000353827][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987030:000353948][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987040:000355029][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987040:000355136][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104987040:000355226][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x2f8a, discovered 0 times already. [1104987040:000355305][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2f8b. [1104987040:000355392][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2f8c. [1104987040:000355446][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2f8d. [1104987040:000355517][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x2f8e, discovered 0 times already. [1104987040:000355578][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104987040:000355640][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f90. [1104987040:000355673][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f91. [1104987040:000355735][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f92. [1104987040:000355787][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f93. [1104987040:000355810][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f94. [1104987040:000355864][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f95. [1104987040:000355905][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f96. [1104987040:000355950][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f97. [1104987040:000355989][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f98. [1104987040:000356034][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f99. [1104987040:000356225][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104987040:000356244][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x2f9a. [1104987040:000356268][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f9b. [1104987040:000356480][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x2f9c, discovered 0 times already. [1104987040:000356532][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f9d. [1104987040:000356561][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f9e. [1104987040:000356593][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2f9f. [1104987040:000356643][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fa0. [1104987040:000356676][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fa1. [1104987040:000356736][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fa2. [1104987040:000356768][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fa3. [1104987040:000356884][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104987040:000356977][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x2fa5. [1104987040:000357142][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2fa6. [1104987040:000357231][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x2fa7. [1104987040:000357393][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2fa8. [1104987040:000357557][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2fa9. [1104987040:000357577][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104987040:000357589][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104987040:000357600][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104987040:000357609][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104987040:000357620][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104987040:000357629][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104987040:000357815][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104987040:000357836][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104987040:000357855][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104987040:000357959][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104987040:000357971][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104987040:000357979][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104987040:000357988][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104987040:000357998][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104987040:000358007][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104987040:000358016][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104987040:000358025][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104987040:000358034][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104987040:000358042][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104987040:000358194][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104987040:000358378][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104987040:000359006][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104987050:000357233][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987050:000357345][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987060:000358437][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987060:000358565][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987070:000359641][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987070:000359743][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987080:000360845][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987080:000360941][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987090:000363050][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987090:000363156][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987100:000364253][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987100:000364352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987110:000365455][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987110:000365551][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987120:000367661][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987120:000367767][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987130:000369865][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987130:000369958][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987140:000371069][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987140:000371176][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987150:000372274][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987150:000372374][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987160:000374479][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987160:000374575][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987170:000375682][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987170:000375776][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987180:000376889][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987180:000376992][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987190:000378092][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987190:000378184][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987200:000380296][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987200:000380397][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104987200:000380492][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x2fc2, discovered 0 times already. [1104987200:000380601][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2fc3. [1104987200:000380687][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2fc4. [1104987200:000380744][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2fc5. [1104987200:000380810][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x2fc6, discovered 0 times already. [1104987200:000380867][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104987200:000380931][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fc8. [1104987200:000380985][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fc9. [1104987200:000381005][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104987200:000381027][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fca. [1104987200:000381052][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fcb. [1104987200:000381097][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fcc. [1104987200:000381148][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fcd. [1104987200:000381172][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fce. [1104987200:000381217][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fcf. [1104987200:000381270][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fd0. [1104987200:000381296][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fd1. [1104987200:000381348][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fd2. [1104987200:000381545][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x2fd3, discovered 0 times already. [1104987200:000381588][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fd4. [1104987200:000381632][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fd5. [1104987200:000381675][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fd6. [1104987200:000381719][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fd7. [1104987200:000381762][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fd8. [1104987200:000381811][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fd9. [1104987200:000381855][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fda. [1104987200:000382021][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2fdb. [1104987200:000382212][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2fdc. [1104987200:000382377][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x2fdd. [1104987200:000382399][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104987200:000382408][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104987200:000382415][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104987200:000382423][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104987200:000382436][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104987200:000382450][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104987200:000382461][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104987200:000382471][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104987200:000382480][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104987200:000382493][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104987200:000382601][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104987200:000382611][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104987200:000382619][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104987200:000382628][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104987200:000382638][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104987200:000382647][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104987200:000382655][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104987200:000382664][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104987200:000382672][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104987200:000382687][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104987200:000383082][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104987210:000381505][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987210:000381618][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987220:000382705][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987220:000382808][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987230:000384909][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987230:000385011][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987240:000386115][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987240:000386217][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987250:000387318][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987250:000387409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987260:000388521][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987260:000388618][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104987260:000388703][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x2fe6, discovered 0 times already. [1104987260:000388798][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2fe7. [1104987260:000388883][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2fe8. [1104987260:000388934][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x2fe9. [1104987260:000389000][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x2fea, discovered 0 times already. [1104987260:000389057][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104987260:000389124][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fec. [1104987260:000389167][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fed. [1104987260:000389220][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fee. [1104987260:000389246][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fef. [1104987260:000389291][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ff0. [1104987260:000389323][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ff1. [1104987260:000389383][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ff2. [1104987260:000389420][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ff3. [1104987260:000389480][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ff4. [1104987260:000389527][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ff5. [1104987260:000389806][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104987260:000389855][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x2ff6. [1104987260:000389879][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ff7. [1104987260:000390109][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x2ff8, discovered 0 times already. [1104987260:000390141][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ff9. [1104987260:000390206][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ffa. [1104987260:000390238][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ffb. [1104987260:000390303][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ffc. [1104987260:000390336][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ffd. [1104987260:000390424][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2ffe. [1104987260:000390453][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x2fff. [1104987260:000390566][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104987260:000390653][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3001. [1104987260:000390822][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3002. [1104987260:000390908][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3003. [1104987260:000391103][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3004. [1104987260:000391266][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3005. [1104987260:000391287][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104987260:000391298][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104987260:000391310][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104987260:000391318][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104987260:000391330][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104987260:000391338][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104987260:000391530][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104987260:000391541][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104987260:000391554][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104987260:000391661][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104987260:000391672][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104987260:000391680][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104987260:000391689][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104987260:000391699][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104987260:000391707][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104987260:000391723][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104987260:000391732][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104987260:000391741][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104987260:000391749][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104987260:000391915][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104987260:000392097][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104987260:000392765][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104987270:000390729][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987270:000390839][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987280:000391932][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987280:000392046][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987290:000393134][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987290:000393229][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987300:000394338][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987300:000394431][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987310:000396543][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987310:000396658][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987320:000397748][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987320:000397847][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987330:000398957][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987330:000399077][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987340:000401159][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987340:000401270][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987350:000402370][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987350:000402511][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987360:000403567][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987360:000403676][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987370:000404770][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987370:000404866][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987380:000406977][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987380:000407089][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987390:000408182][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987390:000408301][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987400:000409384][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987400:000409479][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987410:000411585][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987410:000411680][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987420:000413792][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987420:000413902][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987430:000414996][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987430:000415097][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987440:000416199][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987440:000416294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987450:000418406][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987450:000418519][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987460:000419609][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987460:000419724][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987470:000420812][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987470:000420908][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987480:000422018][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987480:000422126][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987490:000424223][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987490:000424317][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987500:000425425][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987500:000425522][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104987500:000425611][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x3026, discovered 0 times already. [1104987500:000425690][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3027. [1104987500:000425778][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3028. [1104987500:000425828][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3029. [1104987500:000425900][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x302a, discovered 0 times already. [1104987500:000425966][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104987500:000426029][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x302c. [1104987500:000426081][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x302d. [1104987500:000426105][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104987500:000426120][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x302e. [1104987500:000426196][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x302f. [1104987500:000426247][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3030. [1104987500:000426271][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3031. [1104987500:000426317][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3032. [1104987500:000426348][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3033. [1104987500:000426409][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3034. [1104987500:000426452][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3035. [1104987500:000426487][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3036. [1104987500:000426714][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x3037, discovered 0 times already. [1104987500:000426759][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3038. [1104987500:000426791][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3039. [1104987500:000426855][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x303a. [1104987500:000426887][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x303b. [1104987500:000426958][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x303c. [1104987500:000426990][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x303d. [1104987500:000427054][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x303e. [1104987500:000427216][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x303f. [1104987500:000427409][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3040. [1104987500:000427569][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3041. [1104987500:000427589][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104987500:000427598][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104987500:000427605][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104987500:000427613][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104987500:000427626][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104987500:000427656][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104987500:000427668][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104987500:000427678][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104987500:000427688][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104987500:000427701][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104987500:000427809][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104987500:000427820][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104987500:000427828][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104987500:000427837][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104987500:000427847][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104987500:000427856][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104987500:000427864][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104987500:000427873][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104987500:000427881][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104987500:000427889][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104987500:000428293][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104987510:000426634][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987510:000426748][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987520:000428836][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987520:000428956][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987530:000431041][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987530:000431150][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987540:000432243][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987540:000432347][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987550:000433448][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987550:000433545][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987560:000435652][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987560:000435751][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987570:000436856][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987570:000436954][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104987570:000437041][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x304b, discovered 0 times already. [1104987570:000437118][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x304c. [1104987570:000437205][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x304d. [1104987570:000437259][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x304e. [1104987570:000437334][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x304f, discovered 0 times already. [1104987570:000437391][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104987570:000437472][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3051. [1104987570:000437515][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3052. [1104987570:000437548][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3053. [1104987570:000437609][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3054. [1104987570:000437654][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3055. [1104987570:000437715][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3056. [1104987570:000437749][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3057. [1104987570:000437817][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3058. [1104987570:000437872][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3059. [1104987570:000437897][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x305a. [1104987570:000438094][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104987570:000438112][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x305b. [1104987570:000438136][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x305c. [1104987570:000438356][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x305d, discovered 0 times already. [1104987570:000438400][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x305e. [1104987570:000438433][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x305f. [1104987570:000438497][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3060. [1104987570:000438529][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3061. [1104987570:000438593][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3062. [1104987570:000438626][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3063. [1104987570:000438690][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3064. [1104987570:000438784][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104987570:000438879][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3066. [1104987570:000439044][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3067. [1104987570:000439127][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3068. [1104987570:000439296][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3069. [1104987570:000439452][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x306a. [1104987570:000439472][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104987570:000439483][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104987570:000439494][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104987570:000439503][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104987570:000439514][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104987570:000439523][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104987570:000439719][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104987570:000439730][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104987570:000439743][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104987570:000439846][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104987570:000439857][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104987570:000439865][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104987570:000439874][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104987570:000439884][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104987570:000439892][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104987570:000439901][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104987570:000439909][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104987570:000439918][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104987570:000439925][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104987570:000440101][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104987570:000440296][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104987570:000440906][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104987580:000438064][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987580:000438172][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987590:000439265][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987590:000439373][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987600:000441468][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987600:000441561][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987610:000442675][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987610:000442777][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987620:000443878][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987620:000443976][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987630:000446086][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987630:000446207][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987640:000447289][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987640:000447394][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987650:000448489][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987650:000448585][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987660:000449695][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987660:000449791][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987670:000451899][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987670:000451996][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987680:000453103][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987680:000453200][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987690:000454309][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987690:000454407][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987700:000456518][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987700:000456631][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987710:000458716][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987710:000458831][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987720:000459922][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987720:000460024][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987730:000461127][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987730:000461223][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987740:000463329][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987740:000463422][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987750:000464534][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987750:000464633][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987760:000465738][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987760:000465835][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987770:000466942][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987770:000467034][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987780:000469147][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987780:000469247][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987790:000470351][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987790:000470447][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987800:000471556][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987800:000471654][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987810:000473760][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987810:000473860][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987820:000475964][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987820:000476058][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987830:000477168][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987830:000477259][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987840:000478372][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987840:000478467][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987850:000480577][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987850:000480671][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987860:000481780][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987860:000481876][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987870:000482986][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987870:000483078][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987880:000484191][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987880:000484297][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987890:000486394][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987890:000486485][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987900:000487598][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987900:000487686][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987910:000488802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987910:000488896][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987920:000491008][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987920:000491112][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987930:000492218][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987930:000492355][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987940:000493417][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987940:000493518][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987950:000494620][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987950:000494716][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987960:000496835][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987960:000496935][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987970:000498029][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987970:000498127][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987980:000499235][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987980:000499338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104987990:000500440][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104987990:000500543][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988000:000502643][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988000:000502745][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988010:000503847][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988010:000503939][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988020:000505051][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988020:000505151][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988030:000507256][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988030:000507359][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988040:000508460][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988040:000508557][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988050:000509667][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988050:000509770][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988060:000510869][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988060:000510972][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988070:000513071][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988070:000513164][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988080:000514277][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988080:000514393][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988090:000515481][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988090:000515575][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988100:000517686][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988100:000517784][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988110:000519890][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988110:000519987][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988120:000521093][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988120:000521187][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988130:000522297][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988130:000522389][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988140:000524502][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988140:000524603][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988150:000525707][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988150:000525815][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988160:000526911][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988160:000527009][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988170:000528115][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988170:000528210][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988180:000530320][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988180:000530419][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988190:000531523][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988190:000531619][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988200:000532728][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988200:000532819][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988210:000534933][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988210:000535033][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988220:000537138][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988220:000537233][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988230:000538347][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988230:000538465][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988240:000539547][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988240:000539645][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988250:000541751][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988250:000541844][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988260:000542955][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988260:000543058][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988270:000544159][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988270:000544256][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988280:000545364][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988280:000545462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988290:000547569][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988290:000547667][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988300:000548773][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988300:000548888][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988310:000549976][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988310:000550076][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988320:000552183][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988320:000552284][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988330:000553386][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988330:000553483][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988340:000554590][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988340:000554688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988350:000555794][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988350:000555891][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988360:000557998][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988360:000558094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988370:000559202][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988370:000559294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988380:000560407][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988380:000560505][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988390:000561612][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988390:000561708][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988400:000563816][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988400:000563910][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988410:000565020][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988410:000565118][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988420:000566225][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988420:000566320][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988430:000568428][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988430:000568526][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104988430:000568618][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x30c9, discovered 0 times already. [1104988430:000568704][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x30ca. [1104988430:000568793][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x30cb. [1104988430:000568843][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x30cc. [1104988430:000568939][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x30cd, discovered 0 times already. [1104988430:000568997][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104988430:000569064][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30cf. [1104988430:000569108][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30d0. [1104988430:000569133][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104988430:000569147][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30d1. [1104988430:000569208][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30d2. [1104988430:000569259][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30d3. [1104988430:000569283][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30d4. [1104988430:000569329][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30d5. [1104988430:000569374][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30d6. [1104988430:000569416][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30d7. [1104988430:000569467][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30d8. [1104988430:000569498][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30d9. [1104988430:000569708][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x30da, discovered 0 times already. [1104988430:000569759][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30db. [1104988430:000569788][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30dc. [1104988430:000569820][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30dd. [1104988430:000569870][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30de. [1104988430:000569902][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30df. [1104988430:000569966][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30e0. [1104988430:000569999][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30e1. [1104988430:000570183][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x30e2. [1104988430:000570374][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x30e3. [1104988430:000570537][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x30e4. [1104988430:000570566][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104988430:000570576][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104988430:000570583][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104988430:000570591][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104988430:000570605][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104988430:000570618][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104988430:000570630][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104988430:000570641][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104988430:000570650][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104988430:000570663][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104988430:000570772][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104988430:000570784][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104988430:000570791][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104988430:000570800][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104988430:000570810][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104988430:000570819][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104988430:000570828][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104988430:000570836][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104988430:000570844][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104988430:000570852][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104988430:000571242][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104988440:000569637][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988440:000569752][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988450:000570839][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988450:000570941][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988460:000572042][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988460:000572138][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988470:000574245][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988470:000574347][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988480:000575452][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988480:000575550][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988490:000576653][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988490:000576746][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988500:000578867][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988500:000578959][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104988500:000579065][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x30ee, discovered 0 times already. [1104988500:000579144][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x30ef. [1104988500:000579230][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x30f0. [1104988500:000579283][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x30f1. [1104988500:000579354][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x30f2, discovered 0 times already. [1104988500:000579414][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104988500:000579477][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30f4. [1104988500:000579511][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30f5. [1104988500:000579572][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30f6. [1104988500:000579624][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30f7. [1104988500:000579653][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30f8. [1104988500:000579699][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30f9. [1104988500:000579750][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30fa. [1104988500:000579774][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30fb. [1104988500:000579820][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30fc. [1104988500:000579877][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30fd. [1104988500:000580067][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104988500:000580086][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x30fe. [1104988500:000580110][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x30ff. [1104988500:000580324][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x3100, discovered 0 times already. [1104988500:000580366][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3101. [1104988500:000580398][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3102. [1104988500:000580460][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3103. [1104988500:000580493][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3104. [1104988500:000580553][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3105. [1104988500:000580585][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3106. [1104988500:000580660][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3107. [1104988500:000580751][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104988500:000580835][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3109. [1104988500:000580999][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x310a. [1104988500:000581083][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x310b. [1104988500:000581254][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x310c. [1104988500:000581412][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x310d. [1104988500:000581432][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104988500:000581444][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104988500:000581455][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104988500:000581464][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104988500:000581475][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104988500:000581484][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104988500:000581678][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104988500:000581689][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104988500:000581702][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104988500:000581808][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104988500:000581818][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104988500:000581826][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104988500:000581835][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104988500:000581845][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104988500:000581855][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104988500:000581879][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104988500:000581888][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104988500:000581897][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104988500:000581905][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104988500:000582058][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104988500:000582249][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104988500:000582867][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104988510:000581066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988510:000581174][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988520:000582269][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988520:000582369][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988530:000583476][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988530:000583593][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988540:000585677][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988540:000585791][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988550:000586882][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988550:000587002][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988560:000588087][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988560:000588193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988570:000589290][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988570:000589388][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988580:000591495][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988580:000591596][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988590:000592701][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988590:000592805][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988600:000593902][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988600:000594003][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988610:000596106][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988610:000596206][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988620:000597312][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988620:000597414][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988630:000598515][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988630:000598614][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988640:000599720][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988640:000599823][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988650:000601927][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988650:000602029][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988660:000603129][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988660:000603228][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988670:000604331][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988670:000604418][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988680:000605538][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988680:000605639][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988690:000607742][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988690:000607837][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988700:000608947][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988700:000609047][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988710:000610150][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988710:000610247][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988720:000612355][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988720:000612462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988730:000613557][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988730:000613648][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988740:000614763][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988740:000614859][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988750:000615967][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988750:000616055][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988760:000618171][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988760:000618264][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988770:000619377][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988770:000619484][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988780:000620581][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988780:000620677][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988790:000621784][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988790:000621876][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988800:000623987][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988800:000624078][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988810:000625194][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988810:000625288][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988820:000626398][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988820:000626501][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104988820:000626595][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x3136, discovered 0 times already. [1104988820:000626674][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3137. [1104988820:000626765][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3138. [1104988820:000626821][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3139. [1104988820:000626887][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x313a, discovered 0 times already. [1104988820:000626944][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104988820:000627007][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x313c. [1104988820:000627052][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x313d. [1104988820:000627061][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104988820:000627119][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x313e. [1104988820:000627161][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x313f. [1104988820:000627222][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3140. [1104988820:000627256][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3141. [1104988820:000627303][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3142. [1104988820:000627344][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3143. [1104988820:000627384][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3144. [1104988820:000627425][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3145. [1104988820:000627470][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3146. [1104988820:000627674][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x3147, discovered 0 times already. [1104988820:000627716][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3148. [1104988820:000627758][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3149. [1104988820:000627801][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x314a. [1104988820:000627845][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x314b. [1104988820:000627889][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x314c. [1104988820:000627932][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x314d. [1104988820:000627981][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x314e. [1104988820:000628147][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x314f. [1104988820:000628331][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3150. [1104988820:000628489][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3151. [1104988820:000628511][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104988820:000628528][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104988820:000628536][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104988820:000628544][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104988820:000628557][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104988820:000628570][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104988820:000628583][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104988820:000628593][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104988820:000628602][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104988820:000628615][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104988820:000628728][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104988820:000628739][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104988820:000628746][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104988820:000628755][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104988820:000628765][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104988820:000628774][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104988820:000628782][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104988820:000628791][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104988820:000628799][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104988820:000628807][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104988820:000629212][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104988830:000628609][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988830:000628747][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988840:000629808][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988840:000629911][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988850:000631013][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988850:000631113][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988860:000632217][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988860:000632322][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988870:000634422][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988870:000634522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988880:000635624][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988880:000635725][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988890:000636830][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988890:000636933][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104988890:000637025][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x315b, discovered 0 times already. [1104988890:000637103][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x315c. [1104988890:000637191][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x315d. [1104988890:000637253][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x315e. [1104988890:000637326][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x315f, discovered 0 times already. [1104988890:000637385][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104988890:000637448][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3161. [1104988890:000637492][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3162. [1104988890:000637545][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3163. [1104988890:000637579][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3164. [1104988890:000637615][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3165. [1104988890:000637662][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3166. [1104988890:000637712][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3167. [1104988890:000637736][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3168. [1104988890:000637781][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3169. [1104988890:000637834][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x316a. [1104988890:000638007][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104988890:000638024][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x316b. [1104988890:000638063][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x316c. [1104988890:000638252][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x316d, discovered 0 times already. [1104988890:000638300][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x316e. [1104988890:000638344][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x316f. [1104988890:000638387][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3170. [1104988890:000638430][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3171. [1104988890:000638480][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3172. [1104988890:000638530][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3173. [1104988890:000638583][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3174. [1104988890:000638665][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104988890:000638745][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3176. [1104988890:000638924][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3177. [1104988890:000639005][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3178. [1104988890:000639169][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3179. [1104988890:000639326][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x317a. [1104988890:000639346][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104988890:000639357][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104988890:000639368][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104988890:000639377][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104988890:000639388][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104988890:000639397][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104988890:000639597][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104988890:000639608][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104988890:000639621][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104988890:000639723][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104988890:000639734][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104988890:000639741][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104988890:000639751][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104988890:000639761][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104988890:000639769][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104988890:000639777][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104988890:000639785][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104988890:000639800][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104988890:000639809][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104988890:000639970][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104988890:000640167][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104988890:000640779][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104988900:000639037][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988900:000639148][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988910:000641237][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988910:000641337][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988920:000642442][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988920:000642545][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988930:000643646][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988930:000643752][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988940:000645852][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988940:000645956][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988950:000647054][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988950:000647155][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988960:000648259][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988960:000648355][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988970:000649461][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988970:000649553][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988980:000651668][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988980:000651770][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104988990:000652873][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104988990:000652978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989000:000654076][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989000:000654171][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989010:000656281][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989010:000656394][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989020:000657485][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989020:000657598][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989030:000658688][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989030:000658783][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989040:000659892][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989040:000659986][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989050:000662098][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989050:000662191][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989060:000663302][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989060:000663399][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989070:000664508][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989070:000664611][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989080:000665711][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989080:000665807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989090:000667915][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989090:000668015][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989100:000669120][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989100:000669217][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989110:000670324][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989110:000670420][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989120:000672527][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989120:000672629][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989130:000673737][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989130:000673852][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989140:000674938][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989140:000675045][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989150:000676142][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989150:000676243][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989160:000678345][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989160:000678438][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989170:000679551][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989170:000679667][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989180:000680758][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989180:000680865][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989190:000682963][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989190:000683074][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989200:000685164][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989200:000685261][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989210:000686366][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989210:000686462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989220:000687573][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989220:000687671][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989230:000689775][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989230:000689874][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989240:000690978][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989240:000691093][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989250:000692186][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989250:000692295][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989260:000693389][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989260:000693492][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989270:000695592][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989270:000695687][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989280:000696798][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989280:000696898][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989290:000698001][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989290:000698096][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989300:000700206][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989300:000700306][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989310:000702410][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989310:000702507][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989320:000703616][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989320:000703714][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989330:000704818][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989330:000704917][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989340:000707024][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989340:000707122][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989350:000708227][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989350:000708322][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989360:000709432][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989360:000709528][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989370:000710636][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989370:000710738][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989380:000712841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989380:000712936][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989390:000714044][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989390:000714153][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989400:000715247][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989400:000715338][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989410:000717453][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989410:000717549][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989420:000718657][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989420:000718755][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989430:000719862][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989430:000719956][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989440:000721072][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989440:000721188][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989450:000723272][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989450:000723375][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989460:000724475][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989460:000724583][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104989460:000724692][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x31bc, discovered 0 times already. [1104989460:000724779][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x31bd. [1104989460:000724864][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x31be. [1104989460:000724928][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x31bf. [1104989460:000724994][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x31c0, discovered 0 times already. [1104989460:000725051][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104989460:000725114][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31c2. [1104989460:000725158][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31c3. [1104989460:000725183][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104989460:000725198][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31c4. [1104989460:000725257][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31c5. [1104989460:000725298][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31c6. [1104989460:000725344][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31c7. [1104989460:000725384][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31c8. [1104989460:000725425][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31c9. [1104989460:000725465][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31ca. [1104989460:000725508][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31cb. [1104989460:000725552][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31cc. [1104989460:000725747][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x31cd, discovered 0 times already. [1104989460:000725789][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31ce. [1104989460:000725833][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31cf. [1104989460:000725876][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31d0. [1104989460:000725929][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31d1. [1104989460:000725972][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31d2. [1104989460:000726022][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31d3. [1104989460:000726066][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31d4. [1104989460:000726239][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x31d5. [1104989460:000726425][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x31d6. [1104989460:000726584][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x31d7. [1104989460:000726606][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104989460:000726616][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104989460:000726623][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104989460:000726631][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104989460:000726644][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104989460:000726658][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104989460:000726669][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104989460:000726680][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104989460:000726688][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104989460:000726701][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104989460:000726808][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104989460:000726821][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104989460:000726828][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104989460:000726838][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104989460:000726848][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104989460:000726857][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104989460:000726865][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104989460:000726874][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104989460:000726889][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104989460:000726908][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104989460:000727299][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104989470:000725684][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989470:000725791][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989480:000726886][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989480:000726989][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989490:000729090][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989490:000729193][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989500:000730294][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989500:000730398][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989510:000731497][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989510:000731595][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989520:000733701][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989520:000733807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989530:000734905][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989530:000735001][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104989530:000735098][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x31e1, discovered 0 times already. [1104989530:000735177][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x31e2. [1104989530:000735273][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x31e3. [1104989530:000735322][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x31e4. [1104989530:000735387][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x31e5, discovered 0 times already. [1104989530:000735445][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104989530:000735508][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31e7. [1104989530:000735552][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31e8. [1104989530:000735603][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31e9. [1104989530:000735630][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31ea. [1104989530:000735674][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31eb. [1104989530:000735725][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31ec. [1104989530:000735749][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31ed. [1104989530:000735796][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31ee. [1104989530:000735827][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31ef. [1104989530:000735886][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31f0. [1104989530:000736073][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104989530:000736090][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x31f1. [1104989530:000736129][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31f2. [1104989530:000736315][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x31f3, discovered 0 times already. [1104989530:000736362][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31f4. [1104989530:000736406][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31f5. [1104989530:000736461][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31f6. [1104989530:000736504][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31f7. [1104989530:000736548][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31f8. [1104989530:000736591][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31f9. [1104989530:000736634][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x31fa. [1104989530:000736721][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104989530:000736803][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x31fc. [1104989530:000736978][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x31fd. [1104989530:000737062][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x31fe. [1104989530:000737232][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x31ff. [1104989530:000737400][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3200. [1104989530:000737419][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104989530:000737431][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104989530:000737441][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104989530:000737450][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104989530:000737461][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104989530:000737470][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104989530:000737662][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104989530:000737673][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104989530:000737686][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104989530:000737788][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104989530:000737808][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104989530:000737816][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104989530:000737825][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104989530:000737835][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104989530:000737844][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104989530:000737852][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104989530:000737860][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104989530:000737869][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104989530:000737877][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104989530:000738036][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104989530:000738228][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104989530:000738842][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104989540:000736113][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989540:000736218][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989550:000737315][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989550:000737422][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989560:000739519][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989560:000739615][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989570:000740724][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989570:000740827][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989580:000741927][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989580:000742028][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989590:000744137][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989590:000744235][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989600:000746336][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989600:000746442][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989610:000747542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989610:000747647][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989620:000748744][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989620:000748839][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989630:000750948][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989630:000751039][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989640:000752153][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989640:000752274][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989650:000753359][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989650:000753461][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989660:000754560][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989660:000754654][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989670:000756768][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989670:000756870][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989680:000757970][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989680:000758064][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989690:000759175][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989690:000759269][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989700:000761380][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989700:000761486][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989710:000763583][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989710:000763672][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989720:000764787][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989720:000764878][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989730:000765993][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989730:000766089][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989740:000768203][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989740:000768318][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989750:000769402][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989750:000769494][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989760:000770605][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989760:000770714][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104989760:000770807][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x3220, discovered 0 times already. [1104989760:000770885][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3221. [1104989760:000770973][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3222. [1104989760:000771023][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3223. [1104989760:000771094][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x3224, discovered 0 times already. [1104989760:000771153][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104989760:000771216][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3226. [1104989760:000771260][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3227. [1104989760:000771313][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104989760:000771326][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3228. [1104989760:000771385][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3229. [1104989760:000771428][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x322a. [1104989760:000771469][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x322b. [1104989760:000771516][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x322c. [1104989760:000771557][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x322d. [1104989760:000771597][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x322e. [1104989760:000771638][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x322f. [1104989760:000771695][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3230. [1104989760:000771890][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x3231, discovered 0 times already. [1104989760:000771932][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3232. [1104989760:000771975][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3233. [1104989760:000772018][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3234. [1104989760:000772062][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3235. [1104989760:000772105][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3236. [1104989760:000772149][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3237. [1104989760:000772192][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3238. [1104989760:000772371][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3239. [1104989760:000772557][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x323a. [1104989760:000772715][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x323b. [1104989760:000772738][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104989760:000772748][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104989760:000772754][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104989760:000772777][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104989760:000772790][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104989760:000772803][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104989760:000772815][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104989760:000772825][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104989760:000772833][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104989760:000772846][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104989760:000772952][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104989760:000772963][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104989760:000772970][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104989760:000772980][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104989760:000772990][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104989760:000772998][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104989760:000773008][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104989760:000773016][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104989760:000773024][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104989760:000773033][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104989760:000773425][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104989770:000771813][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989770:000771924][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989780:000774028][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989780:000774134][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989790:000775219][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989790:000775323][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989800:000776424][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989800:000776527][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989810:000778627][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989810:000778731][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989820:000779831][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989820:000779929][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989830:000781037][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989830:000781134][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104989830:000781227][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x3245, discovered 0 times already. [1104989830:000781307][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3246. [1104989830:000781398][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3247. [1104989830:000781456][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3248. [1104989830:000781543][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x3249, discovered 0 times already. [1104989830:000781600][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104989830:000781676][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x324b. [1104989830:000781709][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x324c. [1104989830:000781771][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x324d. [1104989830:000781810][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x324e. [1104989830:000781870][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x324f. [1104989830:000781921][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3250. [1104989830:000781945][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3251. [1104989830:000781989][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3252. [1104989830:000782041][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3253. [1104989830:000782065][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3254. [1104989830:000782263][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104989830:000782282][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x3255. [1104989830:000782306][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3256. [1104989830:000782528][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x3257, discovered 0 times already. [1104989830:000782580][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3258. [1104989830:000782609][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3259. [1104989830:000782651][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x325a. [1104989830:000782684][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x325b. [1104989830:000782733][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x325c. [1104989830:000782765][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x325d. [1104989830:000782826][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x325e. [1104989830:000782914][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104989830:000782992][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3260. [1104989830:000783152][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3261. [1104989830:000783237][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3262. [1104989830:000783404][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3263. [1104989830:000783564][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3264. [1104989830:000783583][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104989830:000783595][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104989830:000783606][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104989830:000783615][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104989830:000783627][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104989830:000783637][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104989830:000783833][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104989830:000783844][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104989830:000783857][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104989830:000783960][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104989830:000783973][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104989830:000783980][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104989830:000783989][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104989830:000784000][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104989830:000784008][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104989830:000784016][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104989830:000784026][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104989830:000784035][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104989830:000784050][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104989830:000784209][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104989830:000784397][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104989830:000785020][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104989840:000782243][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989840:000782351][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989850:000784448][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989850:000784562][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989860:000785650][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989860:000785745][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989870:000786854][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989870:000786952][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989880:000788059][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989880:000788159][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989890:000790262][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989890:000790371][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989900:000791466][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989900:000791560][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989910:000792672][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989910:000792778][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989920:000794875][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989920:000794972][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989930:000796079][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989930:000796175][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989940:000797283][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989940:000797375][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989950:000798488][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989950:000798591][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104989950:000798684][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x3279, discovered 0 times already. [1104989950:000798762][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x327a. [1104989950:000798849][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x327b. [1104989950:000798912][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x327c. [1104989950:000798984][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x327d, discovered 0 times already. [1104989950:000799047][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104989950:000799110][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x327f. [1104989950:000799154][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3280. [1104989950:000799179][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104989950:000799194][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3281. [1104989950:000799253][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3282. [1104989950:000799295][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3283. [1104989950:000799337][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3284. [1104989950:000799378][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3285. [1104989950:000799425][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3286. [1104989950:000799465][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3287. [1104989950:000799508][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3288. [1104989950:000799552][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3289. [1104989950:000799749][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x328a, discovered 0 times already. [1104989950:000799791][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x328b. [1104989950:000799834][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x328c. [1104989950:000799877][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x328d. [1104989950:000799921][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x328e. [1104989950:000799965][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x328f. [1104989950:000800009][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3290. [1104989950:000800058][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3291. [1104989950:000800225][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3292. [1104989950:000800417][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3293. [1104989950:000800584][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3294. [1104989950:000800606][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104989950:000800615][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104989950:000800622][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104989950:000800631][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104989950:000800644][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104989950:000800657][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104989950:000800669][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104989950:000800679][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104989950:000800688][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104989950:000800701][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104989950:000800809][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104989950:000800820][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104989950:000800827][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104989950:000800837][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104989950:000800847][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104989950:000800855][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104989950:000800864][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104989950:000800873][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104989950:000800881][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104989950:000800889][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104989950:000801287][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104989960:000800695][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989960:000800804][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989970:000801898][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989970:000802003][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989980:000803103][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989980:000803198][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104989990:000805306][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104989990:000805408][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990000:000807512][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990000:000807611][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990010:000808714][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990010:000808820][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104990010:000808912][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x329d, discovered 0 times already. [1104990010:000808990][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x329e. [1104990010:000809077][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x329f. [1104990010:000809143][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x32a0. [1104990010:000809217][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x32a1, discovered 0 times already. [1104990010:000809283][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104990010:000809347][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32a3. [1104990010:000809391][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32a4. [1104990010:000809442][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32a5. [1104990010:000809468][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32a6. [1104990010:000809516][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32a7. [1104990010:000809567][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32a8. [1104990010:000809591][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32a9. [1104990010:000809639][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32aa. [1104990010:000809689][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32ab. [1104990010:000809717][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32ac. [1104990010:000809911][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104990010:000809928][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x32ad. [1104990010:000809966][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32ae. [1104990010:000810153][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x32af, discovered 0 times already. [1104990010:000810193][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32b0. [1104990010:000810236][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32b1. [1104990010:000810290][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32b2. [1104990010:000810333][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32b3. [1104990010:000810376][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32b4. [1104990010:000810419][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32b5. [1104990010:000810463][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32b6. [1104990010:000810548][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104990010:000810631][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x32b8. [1104990010:000810804][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x32b9. [1104990010:000810884][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x32ba. [1104990010:000811052][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x32bb. [1104990010:000811209][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x32bc. [1104990010:000811228][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104990010:000811240][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104990010:000811250][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990010:000811259][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104990010:000811281][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104990010:000811290][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104990010:000811480][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104990010:000811491][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104990010:000811504][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104990010:000811610][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104990010:000811621][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104990010:000811628][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104990010:000811637][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104990010:000811647][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104990010:000811655][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104990010:000811663][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104990010:000811672][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990010:000811688][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104990010:000811697][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104990010:000811848][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104990010:000812041][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104990010:000812661][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104990020:000809921][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990020:000810023][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990030:000812126][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990030:000812237][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990040:000813334][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990040:000813456][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990050:000814532][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990050:000814635][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990060:000815736][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990060:000815832][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990070:000817941][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990070:000818044][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990080:000819146][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990080:000819248][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990090:000820350][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990090:000820452][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990100:000822554][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990100:000822666][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990110:000823757][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990110:000823850][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990120:000824962][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990120:000825064][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990130:000826167][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990130:000826257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990140:000828369][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990140:000828475][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990150:000829576][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990150:000829671][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990160:000830780][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990160:000830876][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990170:000831983][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990170:000832074][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990180:000834189][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990180:000834289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990190:000835392][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990190:000835485][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990200:000836597][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990200:000836698][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990210:000838801][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990210:000838907][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990220:000840005][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990220:000840099][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990230:000841209][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990230:000841299][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990240:000842414][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990240:000842509][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990250:000844618][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990250:000844713][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104990250:000844820][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x32dd, discovered 0 times already. [1104990250:000844898][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x32de. [1104990250:000844985][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x32df. [1104990250:000845036][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x32e0. [1104990250:000845101][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x32e1, discovered 0 times already. [1104990250:000845159][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104990250:000845222][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32e3. [1104990250:000845266][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32e4. [1104990250:000845291][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104990250:000845305][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32e5. [1104990250:000845363][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32e6. [1104990250:000845424][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32e7. [1104990250:000845471][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32e8. [1104990250:000845512][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32e9. [1104990250:000845553][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32ea. [1104990250:000845593][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32eb. [1104990250:000845642][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32ec. [1104990250:000845688][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32ed. [1104990250:000845886][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x32ee, discovered 0 times already. [1104990250:000845927][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32ef. [1104990250:000845971][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32f0. [1104990250:000846015][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32f1. [1104990250:000846059][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32f2. [1104990250:000846103][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32f3. [1104990250:000846152][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32f4. [1104990250:000846195][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x32f5. [1104990250:000846368][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x32f6. [1104990250:000846554][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x32f7. [1104990250:000846720][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x32f8. [1104990250:000846740][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104990250:000846749][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104990250:000846756][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104990250:000846764][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104990250:000846786][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104990250:000846800][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104990250:000846813][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104990250:000846830][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990250:000846840][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104990250:000846853][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104990250:000846961][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104990250:000846972][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104990250:000846979][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104990250:000846988][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104990250:000846999][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104990250:000847007][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104990250:000847016][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990250:000847025][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104990250:000847032][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104990250:000847041][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104990250:000847440][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104990260:000845825][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990260:000845927][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990270:000847027][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990270:000847125][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990280:000849234][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990280:000849336][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990290:000851436][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990290:000851533][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990300:000852640][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990300:000852730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990310:000853845][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990310:000853939][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990320:000856048][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990320:000856154][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104990320:000856246][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x3302, discovered 0 times already. [1104990320:000856331][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3303. [1104990320:000856418][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3304. [1104990320:000856470][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3305. [1104990320:000856535][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x3306, discovered 0 times already. [1104990320:000856592][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104990320:000856656][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3308. [1104990320:000856691][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3309. [1104990320:000856765][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x330a. [1104990320:000856808][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x330b. [1104990320:000856849][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x330c. [1104990320:000856895][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x330d. [1104990320:000856935][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x330e. [1104990320:000856975][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x330f. [1104990320:000857017][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3310. [1104990320:000857063][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3311. [1104990320:000857255][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104990320:000857272][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x3312. [1104990320:000857310][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3313. [1104990320:000857507][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x3314, discovered 0 times already. [1104990320:000857549][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3315. [1104990320:000857593][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3316. [1104990320:000857637][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3317. [1104990320:000857680][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3318. [1104990320:000857724][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3319. [1104990320:000857768][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x331a. [1104990320:000857812][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x331b. [1104990320:000857897][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104990320:000857979][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x331d. [1104990320:000858164][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x331e. [1104990320:000858255][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x331f. [1104990320:000858424][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3320. [1104990320:000858589][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3321. [1104990320:000858616][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104990320:000858628][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104990320:000858638][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990320:000858647][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104990320:000858658][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104990320:000858667][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104990320:000858855][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104990320:000858865][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104990320:000858878][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104990320:000858980][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104990320:000858990][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104990320:000858998][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104990320:000859007][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104990320:000859017][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104990320:000859025][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104990320:000859033][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104990320:000859043][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990320:000859052][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104990320:000859060][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104990320:000859219][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104990320:000859412][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104990320:000860018][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104990330:000857254][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990330:000857357][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990340:000858464][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990340:000858597][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990350:000859661][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990350:000859760][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990360:000861865][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990360:000861953][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990370:000863072][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990370:000863175][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990380:000864275][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990380:000864378][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104990380:000864472][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x3330, discovered 0 times already. [1104990380:000864568][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3331. [1104990380:000864663][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3332. [1104990380:000864715][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3333. [1104990380:000864785][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x3334, discovered 0 times already. [1104990380:000864843][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104990380:000864907][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3336. [1104990380:000864951][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3337. [1104990380:000864975][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104990380:000864990][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3338. [1104990380:000865061][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3339. [1104990380:000865103][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x333a. [1104990380:000865151][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x333b. [1104990380:000865191][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x333c. [1104990380:000865231][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x333d. [1104990380:000865272][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x333e. [1104990380:000865319][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x333f. [1104990380:000865364][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3340. [1104990380:000865552][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x3341, discovered 0 times already. [1104990380:000865593][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3342. [1104990380:000865643][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3343. [1104990380:000865687][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3344. [1104990380:000865731][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3345. [1104990380:000865774][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3346. [1104990380:000865817][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3347. [1104990380:000865873][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3348. [1104990380:000866046][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3349. [1104990380:000866231][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x334a. [1104990380:000866396][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x334b. [1104990380:000866416][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104990380:000866425][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104990380:000866432][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104990380:000866440][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104990380:000866453][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104990380:000866466][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104990380:000866478][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104990380:000866489][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990380:000866497][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104990380:000866510][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104990380:000866614][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104990380:000866625][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104990380:000866632][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104990380:000866642][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104990380:000866652][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104990380:000866660][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104990380:000866669][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990380:000866676][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104990380:000866683][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104990380:000866699][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104990380:000867106][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104990390:000866484][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990390:000866596][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990400:000868685][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990400:000868791][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990410:000869888][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990410:000869980][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990420:000871093][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990420:000871199][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990430:000873299][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990430:000873417][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990440:000874502][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990440:000874609][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104990440:000874697][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x3354, discovered 0 times already. [1104990440:000874795][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3355. [1104990440:000874881][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3356. [1104990440:000874933][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3357. [1104990440:000875000][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x3358, discovered 0 times already. [1104990440:000875057][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104990440:000875123][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x335a. [1104990440:000875166][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x335b. [1104990440:000875197][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x335c. [1104990440:000875259][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x335d. [1104990440:000875291][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x335e. [1104990440:000875351][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x335f. [1104990440:000875392][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3360. [1104990440:000875432][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3361. [1104990440:000875473][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3362. [1104990440:000875505][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3363. [1104990440:000875719][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104990440:000875737][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x3364. [1104990440:000875762][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3365. [1104990440:000875980][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x3366, discovered 0 times already. [1104990440:000876032][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3367. [1104990440:000876061][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3368. [1104990440:000876094][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3369. [1104990440:000876137][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x336a. [1104990440:000876181][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x336b. [1104990440:000876223][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x336c. [1104990440:000876266][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x336d. [1104990440:000876365][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104990440:000876448][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x336f. [1104990440:000876613][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3370. [1104990440:000876701][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3371. [1104990440:000876872][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3372. [1104990440:000877031][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3373. [1104990440:000877051][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104990440:000877062][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104990440:000877073][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990440:000877082][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104990440:000877094][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104990440:000877102][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104990440:000877304][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104990440:000877314][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104990440:000877328][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104990440:000877430][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104990440:000877442][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104990440:000877450][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104990440:000877459][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104990440:000877470][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104990440:000877478][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104990440:000877495][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104990440:000877504][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990440:000877513][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104990440:000877520][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104990440:000877672][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104990440:000877867][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104990440:000878502][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104990450:000875712][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990450:000875832][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990460:000876913][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990460:000877022][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990470:000879115][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990470:000879217][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990480:000880320][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990480:000880423][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990490:000881524][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990490:000881646][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990500:000883726][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990500:000883831][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990510:000884932][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990510:000885034][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990520:000886136][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990520:000886225][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990530:000887339][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990530:000887427][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990540:000889547][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990540:000889650][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990550:000890748][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990550:000890847][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990560:000891953][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990560:000892048][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990570:000893157][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990570:000893257][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990580:000895362][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990580:000895459][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990590:000896565][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990590:000896661][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990600:000897772][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990600:000897873][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990610:000899974][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990610:000900071][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990620:000901177][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990620:000901271][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990630:000902382][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990630:000902481][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990640:000903592][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990640:000903729][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990650:000905793][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990650:000905896][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990660:000906996][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990660:000907087][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990670:000908203][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990670:000908306][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990680:000910408][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990680:000910506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990690:000912612][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990690:000912720][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990700:000913814][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990700:000913915][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990710:000915019][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990710:000915117][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990720:000917225][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990720:000917336][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990730:000918427][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990730:000918523][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990740:000919631][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990740:000919726][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990750:000920836][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990750:000920940][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104990750:000921035][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x339b, discovered 0 times already. [1104990750:000921114][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x339c. [1104990750:000921202][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x339d. [1104990750:000921258][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x339e. [1104990750:000921329][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x339f, discovered 0 times already. [1104990750:000921387][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104990750:000921450][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33a1. [1104990750:000921494][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33a2. [1104990750:000921519][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104990750:000921533][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33a3. [1104990750:000921592][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33a4. [1104990750:000921655][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33a5. [1104990750:000921696][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33a6. [1104990750:000921737][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33a7. [1104990750:000921785][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33a8. [1104990750:000921825][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33a9. [1104990750:000921868][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33aa. [1104990750:000921912][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33ab. [1104990750:000922117][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x33ac, discovered 0 times already. [1104990750:000922158][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33ad. [1104990750:000922201][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33ae. [1104990750:000922245][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33af. [1104990750:000922288][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33b0. [1104990750:000922331][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33b1. [1104990750:000922386][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33b2. [1104990750:000922430][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33b3. [1104990750:000922593][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x33b4. [1104990750:000922781][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x33b5. [1104990750:000922942][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x33b6. [1104990750:000922962][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104990750:000922971][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104990750:000922978][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104990750:000922986][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104990750:000923000][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104990750:000923013][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104990750:000923025][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104990750:000923043][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990750:000923052][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104990750:000923065][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104990750:000923171][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104990750:000923182][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104990750:000923189][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104990750:000923199][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104990750:000923209][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104990750:000923217][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104990750:000923226][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990750:000923234][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104990750:000923242][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104990750:000923250][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104990750:000923645][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104990760:000923043][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990760:000923155][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990770:000924245][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990770:000924346][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990780:000925449][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990780:000925545][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990790:000927653][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990790:000927758][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990800:000929857][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990800:000929956][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990810:000931062][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990810:000931160][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990820:000932266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990820:000932365][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104990820:000932452][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x33c0, discovered 0 times already. [1104990820:000932534][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x33c1. [1104990820:000932620][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x33c2. [1104990820:000932673][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x33c3. [1104990820:000932744][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x33c4, discovered 0 times already. [1104990820:000932806][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104990820:000932869][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33c6. [1104990820:000932912][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33c7. [1104990820:000932957][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33c8. [1104990820:000933016][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33c9. [1104990820:000933061][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33ca. [1104990820:000933102][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33cb. [1104990820:000933137][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33cc. [1104990820:000933196][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33cd. [1104990820:000933238][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33ce. [1104990820:000933284][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33cf. [1104990820:000933481][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104990820:000933500][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x33d0. [1104990820:000933524][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33d1. [1104990820:000933746][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x33d2, discovered 0 times already. [1104990820:000933799][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33d3. [1104990820:000933832][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33d4. [1104990820:000933895][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33d5. [1104990820:000933928][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33d6. [1104990820:000933992][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33d7. [1104990820:000934024][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33d8. [1104990820:000934088][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x33d9. [1104990820:000934182][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104990820:000934262][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x33db. [1104990820:000934426][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x33dc. [1104990820:000934507][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x33dd. [1104990820:000934672][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x33de. [1104990820:000934826][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x33df. [1104990820:000934853][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104990820:000934865][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104990820:000934876][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990820:000934884][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104990820:000934896][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104990820:000934904][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104990820:000935101][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104990820:000935122][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104990820:000935135][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104990820:000935242][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104990820:000935254][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104990820:000935261][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104990820:000935270][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104990820:000935280][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104990820:000935289][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104990820:000935297][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104990820:000935306][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104990820:000935314][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104990820:000935322][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104990820:000935479][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104990820:000935680][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104990820:000936305][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104990830:000934473][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990830:000934586][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990840:000935677][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990840:000935778][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990850:000936878][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990850:000936977][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990860:000938084][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990860:000938186][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990870:000940288][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990870:000940386][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990880:000941492][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990880:000941594][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990890:000942695][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990890:000942807][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990900:000944902][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990900:000945016][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990910:000946104][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990910:000946204][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990920:000947311][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990920:000947403][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990930:000948514][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990930:000948625][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990940:000950723][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990940:000950843][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990950:000951925][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990950:000952028][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990960:000953127][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990960:000953225][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990970:000954331][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990970:000954429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990980:000956536][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990980:000956637][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104990990:000957744][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104990990:000957862][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991000:000958945][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991000:000959049][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991010:000961150][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991010:000961265][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991020:000962354][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991020:000962462][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991030:000963556][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991030:000963646][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991040:000964760][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991040:000964880][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991050:000966969][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991050:000967080][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991060:000968171][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991060:000968276][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991070:000969373][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991070:000969472][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991080:000971588][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991080:000971697][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991090:000973784][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991090:000973887][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991100:000974989][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991100:000975093][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991110:000976192][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991110:000976313][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991120:000978397][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991120:000978507][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991130:000979600][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991130:000979692][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991140:000980806][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991140:000980917][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991150:000982008][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991150:000982109][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991160:000984214][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991160:000984316][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991170:000985419][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991170:000985522][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991180:000986624][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991180:000986730][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991190:000988826][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991190:000988936][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991200:000991031][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991200:000991134][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991210:000992235][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991210:000992340][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991220:000993441][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991220:000993547][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991230:000995645][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991230:000995746][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991240:000996853][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991240:000996975][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991250:000998053][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991250:000998157][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991260:000999257][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991260:000999384][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991271:000001464][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991271:000001576][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991281:000002665][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991281:000002770][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991291:000003873][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991291:000003984][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991301:000006075][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991301:000006189][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991311:000007279][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991311:000007386][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991321:000008484][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991321:000008590][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991331:000009688][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991331:000009795][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991341:000011892][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991341:000011996][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991351:000013097][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991351:000013205][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991361:000014300][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991361:000014405][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991371:000016507][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991371:000016608][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991381:000018712][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991381:000018822][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991391:000019914][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991391:000020021][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991401:000021119][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991401:000021226][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991411:000023322][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991411:000023429][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991421:000024528][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991421:000024630][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991431:000025731][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991431:000025832][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991441:000026936][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991441:000027038][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991451:000029141][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991451:000029248][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991461:000030345][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991461:000030449][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991471:000031548][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991471:000031650][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991481:000033754][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991481:000033881][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991491:000035956][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991491:000036058][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991501:000037161][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991501:000037261][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991511:000038366][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991511:000038471][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991521:000040571][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991521:000040677][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991531:000041775][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991531:000041878][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991541:000042984][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991541:000043106][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991551:000044184][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991551:000044286][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991561:000046388][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991561:000046503][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991571:000047593][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991571:000047704][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991581:000048798][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991581:000048906][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991591:000051013][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991591:000051126][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991601:000053207][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991601:000053315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991611:000054410][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991611:000054514][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104991611:000054602][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x3437, discovered 0 times already. [1104991611:000054682][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3438. [1104991611:000054770][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3439. [1104991611:000054821][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x343a. [1104991611:000054919][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x343b, discovered 0 times already. [1104991611:000054981][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104991611:000055040][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x343d. [1104991611:000055086][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x343e. [1104991611:000055112][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104991611:000055125][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x343f. [1104991611:000055184][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3440. [1104991611:000055226][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3441. [1104991611:000055276][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3442. [1104991611:000055300][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3443. [1104991611:000055345][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3444. [1104991611:000055395][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3445. [1104991611:000055419][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3446. [1104991611:000055465][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3447. [1104991611:000055675][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x3448, discovered 0 times already. [1104991611:000055726][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3449. [1104991611:000055755][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x344a. [1104991611:000055788][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x344b. [1104991611:000055832][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x344c. [1104991611:000055874][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x344d. [1104991611:000055916][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x344e. [1104991611:000055961][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x344f. [1104991611:000056136][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3450. [1104991611:000056330][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3451. [1104991611:000056486][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3452. [1104991611:000056523][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104991611:000056532][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104991611:000056540][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104991611:000056548][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104991611:000056562][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104991611:000056576][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104991611:000056588][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104991611:000056598][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104991611:000056607][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104991611:000056620][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104991611:000056729][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104991611:000056741][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104991611:000056748][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104991611:000056757][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104991611:000056767][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104991611:000056776][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104991611:000056785][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104991611:000056794][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104991611:000056801][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104991611:000056810][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104991611:000057219][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104991621:000055616][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991621:000055733][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991631:000057820][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991631:000057927][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991641:000059023][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991641:000059130][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991651:000060230][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991651:000060347][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991661:000061432][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991661:000061537][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991671:000063635][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991671:000063735][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991681:000064841][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991681:000064950][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104991681:000065037][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x345c, discovered 0 times already. [1104991681:000065130][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x345d. [1104991681:000065215][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x345e. [1104991681:000065267][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x345f. [1104991681:000065332][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x3460, discovered 0 times already. [1104991681:000065392][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104991681:000065457][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3462. [1104991681:000065491][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3463. [1104991681:000065553][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3464. [1104991681:000065608][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3465. [1104991681:000065631][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3466. [1104991681:000065678][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3467. [1104991681:000065718][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3468. [1104991681:000065759][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3469. [1104991681:000065810][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x346a. [1104991681:000065833][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x346b. [1104991681:000066035][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104991681:000066055][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x346c. [1104991681:000066079][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x346d. [1104991681:000066290][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x346e, discovered 0 times already. [1104991681:000066341][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x346f. [1104991681:000066384][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3470. [1104991681:000066413][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3471. [1104991681:000066448][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3472. [1104991681:000066499][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3473. [1104991681:000066531][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3474. [1104991681:000066602][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3475. [1104991681:000066689][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104991681:000066776][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3477. [1104991681:000066949][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3478. [1104991681:000067022][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3479. [1104991681:000067190][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x347a. [1104991681:000067348][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x347b. [1104991681:000067378][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104991681:000067390][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104991681:000067401][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104991681:000067410][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104991681:000067422][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104991681:000067430][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104991681:000067619][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104991681:000067630][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104991681:000067643][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104991681:000067743][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104991681:000067753][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104991681:000067761][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104991681:000067770][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104991681:000067780][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104991681:000067788][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104991681:000067804][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104991681:000067813][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104991681:000067821][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104991681:000067831][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104991681:000067986][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104991681:000068179][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104991681:000068802][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104991691:000066047][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991691:000066162][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991701:000068251][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991701:000068370][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991711:000069454][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991711:000069559][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991721:000070659][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991721:000070770][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991731:000071861][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991731:000071982][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991741:000074066][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991741:000074166][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991751:000075271][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991751:000075374][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991761:000076475][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991761:000076579][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991771:000078681][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991771:000078786][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991781:000080884][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991781:000080985][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991791:000082087][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991791:000082179][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991801:000083292][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991801:000083394][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991811:000085498][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991811:000085799][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991821:000086703][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991821:000086804][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991831:000087908][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991831:000088207][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991841:000089115][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991841:000089238][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991851:000091315][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991851:000091416][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991861:000092519][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991861:000092623][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991871:000093721][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991871:000093805][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991881:000095927][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991881:000096053][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991891:000098133][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991891:000098238][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991901:000099336][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991901:000099435][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991911:000100540][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991911:000100637][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991921:000102746][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991921:000102852][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991931:000103950][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991931:000104063][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991941:000105153][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991941:000105255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991951:000106358][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991951:000106479][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991961:000108561][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991961:000108670][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991971:000109766][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991971:000109877][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991981:000110972][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991981:000111079][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104991991:000113176][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104991991:000113289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992001:000114379][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992001:000114478][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992011:000115584][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992011:000115688][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992021:000116788][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992021:000116890][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992031:000118992][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992031:000119092][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992041:000120196][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992041:000120294][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992051:000121401][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992051:000121506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992061:000122606][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992061:000122708][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992071:000124809][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992071:000124909][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992081:000126014][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992081:000126111][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992091:000127218][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992091:000127321][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992101:000129422][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992101:000129550][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992111:000130628][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992111:000130729][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992121:000131830][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992121:000131928][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992131:000133036][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992131:000133139][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992141:000135244][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992141:000135366][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992151:000136444][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992151:000136554][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992161:000137649][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992161:000137754][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992171:000139857][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992171:000139962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992181:000142058][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992181:000142164][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992191:000143263][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992191:000143369][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992201:000144466][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992201:000144568][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992211:000146670][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992211:000146776][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992221:000147875][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992221:000147984][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992231:000149080][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992231:000149185][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992241:000150284][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992241:000150383][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992251:000152490][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992251:000152600][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992261:000153693][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992261:000153798][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992271:000154895][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992271:000154994][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992281:000157102][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992281:000157213][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992291:000159306][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992291:000159409][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992301:000160509][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992301:000160612][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992311:000161713][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992311:000161817][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992321:000163919][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992321:000164038][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992331:000165121][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992331:000165220][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992341:000166327][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992341:000166431][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992351:000167531][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992351:000167636][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992361:000169736][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992361:000169836][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992371:000170939][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992371:000171041][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992381:000172145][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992381:000172248][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992391:000174347][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992391:000174453][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992401:000175553][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992401:000175651][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992411:000176758][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992411:000176861][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104992411:000176950][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x34cd, discovered 0 times already. [1104992411:000177029][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x34ce. [1104992411:000177116][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x34cf. [1104992411:000177165][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x34d0. [1104992411:000177232][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x34d1, discovered 0 times already. [1104992411:000177290][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104992411:000177372][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34d3. [1104992411:000177399][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34d4. [1104992411:000177408][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104992411:000177465][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34d5. [1104992411:000177500][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34d6. [1104992411:000177560][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34d7. [1104992411:000177606][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34d8. [1104992411:000177660][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34d9. [1104992411:000177690][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34da. [1104992411:000177736][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34db. [1104992411:000177781][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34dc. [1104992411:000177815][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34dd. [1104992411:000178065][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x34de, discovered 0 times already. [1104992411:000178109][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34df. [1104992411:000178153][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34e0. [1104992411:000178203][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34e1. [1104992411:000178246][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34e2. [1104992411:000178290][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34e3. [1104992411:000178334][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34e4. [1104992411:000178387][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34e5. [1104992411:000178557][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x34e6. [1104992411:000178744][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x34e7. [1104992411:000178908][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x34e8. [1104992411:000178927][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104992411:000178936][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104992411:000178943][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104992411:000178951][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104992411:000178964][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104992411:000178978][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104992411:000178989][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104992411:000178999][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104992411:000179008][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104992411:000179021][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104992411:000179124][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104992411:000179135][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104992411:000179150][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104992411:000179160][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104992411:000179170][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104992411:000179178][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104992411:000179187][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104992411:000179195][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104992411:000179203][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104992411:000179211][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104992411:000179615][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104992421:000177965][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992421:000178084][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992431:000180167][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992431:000180273][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992441:000181374][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992441:000181491][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992451:000182575][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992451:000182685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992461:000183779][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992461:000183889][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992471:000185984][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992471:000186092][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992481:000187188][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992481:000187297][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104992481:000187395][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x34f2, discovered 0 times already. [1104992481:000187473][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x34f3. [1104992481:000187561][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x34f4. [1104992481:000187613][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x34f5. [1104992481:000187680][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x34f6, discovered 0 times already. [1104992481:000187745][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104992481:000187809][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34f8. [1104992481:000187848][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34f9. [1104992481:000187908][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34fa. [1104992481:000187950][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34fb. [1104992481:000187990][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34fc. [1104992481:000188032][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34fd. [1104992481:000188079][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34fe. [1104992481:000188125][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x34ff. [1104992481:000188166][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3500. [1104992481:000188221][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3501. [1104992481:000188409][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104992481:000188426][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x3502. [1104992481:000188465][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3503. [1104992481:000188655][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x3504, discovered 0 times already. [1104992481:000188696][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3505. [1104992481:000188749][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3506. [1104992481:000188793][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3507. [1104992481:000188838][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3508. [1104992481:000188882][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3509. [1104992481:000188925][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x350a. [1104992481:000188968][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x350b. [1104992481:000189051][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104992481:000189135][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x350d. [1104992481:000189312][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x350e. [1104992481:000189395][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x350f. [1104992481:000189560][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3510. [1104992481:000189725][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3511. [1104992481:000189746][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104992481:000189758][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104992481:000189769][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104992481:000189778][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104992481:000189789][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104992481:000189807][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104992481:000190000][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104992481:000190011][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104992481:000190024][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104992481:000190126][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104992481:000190139][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104992481:000190146][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104992481:000190156][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104992481:000190166][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104992481:000190175][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104992481:000190184][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104992481:000190192][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104992481:000190201][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104992481:000190209][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104992481:000190362][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104992481:000190546][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104992481:000191160][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104992491:000188395][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992491:000188506][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992501:000190599][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992501:000190717][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992511:000191800][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992511:000191902][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992521:000193006][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992521:000193115][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992531:000194210][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992531:000194317][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992541:000196413][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992541:000196516][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992551:000197617][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992551:000197718][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992561:000198823][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992561:000198927][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992571:000201026][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992571:000201143][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992581:000203232][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992581:000203339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992591:000204436][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992591:000204538][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992601:000205639][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992601:000205735][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992611:000207844][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992611:000207959][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104992611:000208054][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x3527, discovered 0 times already. [1104992611:000208143][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3528. [1104992611:000208230][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3529. [1104992611:000208288][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x352a. [1104992611:000208360][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x352b, discovered 0 times already. [1104992611:000208418][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104992611:000208481][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x352d. [1104992611:000208525][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x352e. [1104992611:000208549][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104992611:000208565][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x352f. [1104992611:000208639][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3530. [1104992611:000208681][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3531. [1104992611:000208722][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3532. [1104992611:000208763][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3533. [1104992611:000208803][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3534. [1104992611:000208844][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3535. [1104992611:000208886][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3536. [1104992611:000208930][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3537. [1104992611:000209131][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x3538, discovered 0 times already. [1104992611:000209172][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3539. [1104992611:000209216][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x353a. [1104992611:000209260][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x353b. [1104992611:000209303][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x353c. [1104992611:000209348][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x353d. [1104992611:000209397][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x353e. [1104992611:000209441][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x353f. [1104992611:000209604][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3540. [1104992611:000209787][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3541. [1104992611:000209958][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3542. [1104992611:000209978][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104992611:000209986][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104992611:000209994][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104992611:000210002][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104992611:000210015][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104992611:000210029][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104992611:000210048][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104992611:000210059][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104992611:000210068][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104992611:000210081][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104992611:000210185][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104992611:000210196][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104992611:000210204][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104992611:000210213][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104992611:000210223][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104992611:000210231][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104992611:000210240][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104992611:000210249][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104992611:000210256][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104992611:000210265][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104992611:000210656][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104992621:000209050][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992621:000209162][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992631:000210252][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992631:000210375][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992641:000211458][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992641:000211565][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992651:000213664][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992651:000213770][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992661:000214866][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992661:000214969][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992671:000216070][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992671:000216172][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992681:000218274][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992681:000218387][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104992681:000218475][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x354c, discovered 0 times already. [1104992681:000218562][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x354d. [1104992681:000218653][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x354e. [1104992681:000218706][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x354f. [1104992681:000218779][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x3550, discovered 0 times already. [1104992681:000218841][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104992681:000218904][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3552. [1104992681:000218950][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3553. [1104992681:000219010][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3554. [1104992681:000219058][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3555. [1104992681:000219099][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3556. [1104992681:000219141][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3557. [1104992681:000219180][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3558. [1104992681:000219220][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3559. [1104992681:000219261][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x355a. [1104992681:000219325][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x355b. [1104992681:000219497][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104992681:000219519][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x355c. [1104992681:000219558][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x355d. [1104992681:000219751][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x355e, discovered 0 times already. [1104992681:000219792][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x355f. [1104992681:000219836][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3560. [1104992681:000219879][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3561. [1104992681:000219922][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3562. [1104992681:000219966][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3563. [1104992681:000220009][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3564. [1104992681:000220052][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3565. [1104992681:000220141][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104992681:000220232][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3567. [1104992681:000220407][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3568. [1104992681:000220490][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3569. [1104992681:000220657][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x356a. [1104992681:000220817][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x356b. [1104992681:000220837][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104992681:000220849][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104992681:000220859][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104992681:000220869][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104992681:000220880][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104992681:000220888][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104992681:000221080][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104992681:000221091][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104992681:000221104][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104992681:000221213][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104992681:000221225][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104992681:000221233][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104992681:000221242][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104992681:000221252][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104992681:000221262][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104992681:000221270][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104992681:000221279][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104992681:000221287][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104992681:000221296][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104992681:000221459][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104992681:000221658][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104992681:000222268][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104992691:000219481][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992691:000219591][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992701:000220683][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992701:000220789][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992711:000221888][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992711:000221989][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992721:000224092][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992721:000224199][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992731:000225295][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992731:000225400][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992741:000226500][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992741:000226604][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992751:000227707][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992751:000227825][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992761:000229909][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992761:000230016][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992771:000231113][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992771:000231217][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992781:000232320][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992781:000232431][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992791:000234524][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992791:000234640][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992801:000235726][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992801:000235830][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992811:000236929][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992811:000237033][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992821:000238134][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992821:000238255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992831:000240339][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992831:000240443][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992841:000241543][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992841:000241646][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992851:000242749][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992851:000242858][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992861:000244953][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992861:000245055][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992871:000247155][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992871:000247251][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992881:000248361][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992881:000248468][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992891:000249565][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992891:000249668][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992901:000251768][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992901:000251876][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992911:000252974][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992911:000253076][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992921:000254178][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992921:000254282][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992931:000255381][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992931:000255476][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992941:000257582][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992941:000257660][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992951:000258791][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992951:000258891][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992961:000259996][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992961:000260107][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992971:000262199][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992971:000262331][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992981:000264406][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992981:000264509][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104992991:000265609][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104992991:000265706][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993001:000266814][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993001:000266921][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993011:000269019][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993011:000269123][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993021:000270222][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993021:000270322][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993031:000271428][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993031:000271534][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993041:000272631][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993041:000272754][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993051:000274839][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993051:000274962][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993061:000276041][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993061:000276147][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993071:000277245][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993071:000277349][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104993071:000277444][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x359b, discovered 0 times already. [1104993071:000277531][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x359c. [1104993071:000277616][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x359d. [1104993071:000277667][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x359e. [1104993071:000277734][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x359f, discovered 0 times already. [1104993071:000277792][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104993071:000277865][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35a1. [1104993071:000277905][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35a2. [1104993071:000277915][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104993071:000277973][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35a3. [1104993071:000278025][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35a4. [1104993071:000278066][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35a5. [1104993071:000278116][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35a6. [1104993071:000278140][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35a7. [1104993071:000278186][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35a8. [1104993071:000278237][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35a9. [1104993071:000278270][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35aa. [1104993071:000278335][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35ab. [1104993071:000278527][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x35ac, discovered 0 times already. [1104993071:000278574][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35ad. [1104993071:000278618][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35ae. [1104993071:000278662][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35af. [1104993071:000278706][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35b0. [1104993071:000278749][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35b1. [1104993071:000278793][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35b2. [1104993071:000278836][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35b3. [1104993071:000279021][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x35b4. [1104993071:000279207][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x35b5. [1104993071:000279420][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x35b6. [1104993071:000279440][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104993071:000279449][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104993071:000279456][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104993071:000279464][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104993071:000279477][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104993071:000279490][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104993071:000279503][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104993071:000279513][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104993071:000279522][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104993071:000279543][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104993071:000279658][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104993071:000279669][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104993071:000279676][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104993071:000279686][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104993071:000279696][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104993071:000279704][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104993071:000279713][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104993071:000279722][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104993071:000279729][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104993071:000279737][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104993071:000280141][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104993081:000279451][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993081:000279577][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993091:000280654][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993091:000280766][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993101:000281857][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993101:000281978][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993111:000283061][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993111:000283166][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993121:000285266][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993121:000285373][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993131:000286470][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993131:000286578][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993141:000287673][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993141:000287775][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104993141:000287862][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x35c0, discovered 0 times already. [1104993141:000287943][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x35c1. [1104993141:000288031][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x35c2. [1104993141:000288084][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x35c3. [1104993141:000288155][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x35c4, discovered 0 times already. [1104993141:000288217][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104993141:000288280][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35c6. [1104993141:000288331][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35c7. [1104993141:000288392][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35c8. [1104993141:000288426][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35c9. [1104993141:000288470][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35ca. [1104993141:000288514][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35cb. [1104993141:000288571][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35cc. [1104993141:000288613][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35cd. [1104993141:000288663][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35ce. [1104993141:000288688][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35cf. [1104993141:000288892][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104993141:000288911][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x35d0. [1104993141:000288936][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35d1. [1104993141:000289150][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x35d2, discovered 0 times already. [1104993141:000289200][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35d3. [1104993141:000289229][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35d4. [1104993141:000289262][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35d5. [1104993141:000289313][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35d6. [1104993141:000289346][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35d7. [1104993141:000289422][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35d8. [1104993141:000289455][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x35d9. [1104993141:000289573][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104993141:000289653][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x35db. [1104993141:000289818][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x35dc. [1104993141:000289901][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x35dd. [1104993141:000290073][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x35de. [1104993141:000290234][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x35df. [1104993141:000290253][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104993141:000290265][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104993141:000290284][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104993141:000290293][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104993141:000290305][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104993141:000290313][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104993141:000290511][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104993141:000290522][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104993141:000290535][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104993141:000290640][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104993141:000290652][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104993141:000290660][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104993141:000290670][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104993141:000290680][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104993141:000290689][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104993141:000290697][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104993141:000290705][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104993141:000290713][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104993141:000290719][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104993141:000290879][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104993141:000291068][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104993141:000291688][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104993151:000288881][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993151:000288995][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993161:000291084][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993161:000291194][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993171:000292287][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993171:000292394][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993181:000293491][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993181:000293599][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993191:000295697][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993191:000295811][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993201:000296900][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993201:000297002][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993211:000298106][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993211:000298211][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993221:000299309][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993221:000299431][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993231:000301512][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993231:000301615][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993241:000302717][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993241:000302826][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993251:000303922][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993251:000304025][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993261:000306128][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993261:000306235][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993271:000308330][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993271:000308433][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993281:000309534][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993281:000309636][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993291:000310738][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993291:000310849][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993301:000312943][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993301:000313059][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993311:000314147][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993311:000314250][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993321:000315352][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993321:000315453][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993331:000316556][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993331:000316657][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993341:000318762][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993341:000318869][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993351:000319968][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993351:000320088][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993361:000321169][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993361:000321278][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993371:000323373][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993371:000323480][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993381:000325579][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993381:000325696][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993391:000326783][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993391:000326892][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993401:000327985][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993401:000328090][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993411:000330189][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993411:000330289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993421:000331395][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993421:000331502][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993431:000332599][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993431:000332703][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993441:000333802][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993441:000333917][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993451:000336009][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993451:000336116][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993461:000337212][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993461:000337315][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993471:000338416][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993471:000338515][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993481:000340621][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993481:000340728][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993491:000341825][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993491:000341929][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993501:000343030][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993501:000343136][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993511:000344234][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993511:000344339][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993521:000346437][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993521:000346539][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993531:000347641][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993531:000347737][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993541:000348846][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993541:000348948][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993551:000350051][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993551:000350152][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993561:000352255][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993561:000352352][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993571:000353460][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993571:000353563][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993581:000354665][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993581:000354769][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993591:000356868][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993591:000356994][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993601:000358073][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993601:000358174][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993611:000359277][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993611:000359380][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993621:000360482][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993621:000360588][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993631:000362687][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993631:000362788][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993641:000363890][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993641:000363988][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993651:000365098][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993651:000365219][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993661:000367308][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993661:000367434][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993671:000369505][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993671:000369610][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993681:000370708][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993681:000370813][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993691:000371914][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993691:000372021][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993701:000374118][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993701:000374228][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993711:000375320][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993711:000375418][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993721:000376527][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993721:000376635][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993731:000377731][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993731:000377838][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993741:000379934][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993741:000380036][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104993741:000380123][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x3624, discovered 0 times already. [1104993741:000380213][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3625. [1104993741:000380300][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3626. [1104993741:000380350][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3627. [1104993741:000380422][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x3628, discovered 0 times already. [1104993741:000380484][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104993741:000380547][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x362a. [1104993741:000380591][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x362b. [1104993741:000380615][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104993741:000380630][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x362c. [1104993741:000380689][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x362d. [1104993741:000380730][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x362e. [1104993741:000380770][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x362f. [1104993741:000380829][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3630. [1104993741:000380875][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3631. [1104993741:000380916][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3632. [1104993741:000380966][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3633. [1104993741:000380996][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3634. [1104993741:000381222][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x3635, discovered 0 times already. [1104993741:000381255][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3636. [1104993741:000381317][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3637. [1104993741:000381349][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3638. [1104993741:000381434][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3639. [1104993741:000381467][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x363a. [1104993741:000381531][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x363b. [1104993741:000381564][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x363c. [1104993741:000381750][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x363d. [1104993741:000381944][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x363e. [1104993741:000382104][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x363f. [1104993741:000382124][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104993741:000382133][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104993741:000382150][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104993741:000382158][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104993741:000382171][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104993741:000382185][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104993741:000382197][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104993741:000382207][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104993741:000382216][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104993741:000382229][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104993741:000382338][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104993741:000382349][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104993741:000382356][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104993741:000382366][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104993741:000382376][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104993741:000382392][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104993741:000382401][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104993741:000382410][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104993741:000382418][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104993741:000382426][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104993741:000382812][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104993751:000381142][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993751:000381255][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993761:000382345][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993761:000382453][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993771:000384547][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993771:000384662][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993781:000386752][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993781:000386859][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993791:000387957][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993791:000388062][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993801:000389160][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993801:000389260][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993811:000391365][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993811:000391469][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104993811:000391568][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x3649, discovered 0 times already. [1104993811:000391646][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x364a. [1104993811:000391733][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x364b. [1104993811:000391786][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x364c. [1104993811:000391855][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x364d, discovered 0 times already. [1104993811:000391912][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104993811:000391981][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x364f. [1104993811:000392015][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3650. [1104993811:000392077][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3651. [1104993811:000392117][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3652. [1104993811:000392176][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3653. [1104993811:000392228][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3654. [1104993811:000392252][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3655. [1104993811:000392298][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3656. [1104993811:000392329][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3657. [1104993811:000392390][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3658. [1104993811:000392577][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104993811:000392597][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x3659. [1104993811:000392620][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x365a. [1104993811:000392850][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x365b, discovered 0 times already. [1104993811:000392902][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x365c. [1104993811:000392931][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x365d. [1104993811:000392964][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x365e. [1104993811:000393013][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x365f. [1104993811:000393045][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3660. [1104993811:000393110][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3661. [1104993811:000393142][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3662. [1104993811:000393255][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104993811:000393336][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3664. [1104993811:000393512][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3665. [1104993811:000393595][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x3666. [1104993811:000393761][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3667. [1104993811:000393923][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x3668. [1104993811:000393943][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104993811:000393955][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104993811:000393966][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104993811:000393974][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104993811:000393986][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104993811:000393994][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104993811:000394190][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104993811:000394201][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104993811:000394221][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104993811:000394324][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104993811:000394334][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104993811:000394342][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104993811:000394352][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104993811:000394362][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104993811:000394370][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104993811:000394379][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104993811:000394388][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104993811:000394396][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104993811:000394405][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104993811:000394559][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104993811:000394743][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104993811:000395347][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104993821:000392571][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993821:000392685][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993831:000393775][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993831:000393880][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993841:000394976][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993841:000395094][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993851:000397183][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993851:000397289][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993861:000398386][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993861:000398494][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993871:000399591][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993871:000399697][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993881:000401795][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993881:000401909][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993891:000402999][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993891:000403103][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993901:000404204][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993901:000404313][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993911:000405408][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993911:000405527][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993921:000407612][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993921:000407715][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993931:000408816][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993931:000408920][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993941:000410020][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993941:000410125][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993951:000412230][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993951:000412349][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993961:000414430][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993961:000414537][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993971:000415634][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993971:000415742][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993981:000416839][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993981:000416954][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104993991:000419043][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104993991:000419161][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994001:000420248][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994001:000420363][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994011:000421451][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994011:000421556][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994021:000422657][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994021:000422769][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994031:000424860][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994031:000424955][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994041:000426063][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994041:000426167][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104994041:000426260][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x3688, discovered 0 times already. [1104994041:000426339][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x3689. [1104994041:000426427][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x368a. [1104994041:000426489][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x368b. [1104994041:000426581][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x368c, discovered 0 times already. [1104994041:000426639][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104994041:000426702][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x368e. [1104994041:000426737][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x368f. [1104994041:000426747][43005960] -> __osm_pi_rcv_process_switch_port: Unlinking local node 0x6170000000009, port 0x1 and remote node 0x2c901097651d0, port 0x1. [1104994041:000426804][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3690. [1104994041:000426846][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3691. [1104994041:000426887][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3692. [1104994041:000426929][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3693. [1104994041:000426970][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3694. [1104994041:000427011][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3695. [1104994041:000427052][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3696. [1104994041:000427094][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3697. [1104994041:000427138][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x3698. [1104994041:000427335][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x3699, discovered 0 times already. [1104994041:000427376][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x369a. [1104994041:000427420][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x369b. [1104994041:000427463][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x369c. [1104994041:000427507][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x369d. [1104994041:000427559][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x369e. [1104994041:000427602][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x369f. [1104994041:000427652][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36a0. [1104994041:000427816][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x36a1. [1104994041:000427995][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x36a2. [1104994041:000428156][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x36a3. [1104994041:000428186][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104994041:000428195][43005960] -> __osm_drop_mgr_process_node: Unreachable node 0x0002c901097651d0. [1104994041:000428202][43005960] -> __osm_drop_mgr_remove_port: Unreachable port 0x0002c901097651d1. [1104994041:000428211][43005960] -> __osm_drop_mgr_remove_port: Clearing abandoned LID range [0x2,0x2]. [1104994041:000428224][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:65 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104994041:000428237][43005960] -> Removed port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104994041:000428249][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104994041:000428259][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104994041:000428268][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104994041:000428282][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104994041:000428390][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104994041:000428401][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104994041:000428408][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104994041:000428417][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104994041:000428428][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104994041:000428436][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104994041:000428445][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104994041:000428453][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104994041:000428461][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104994041:000428470][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104994041:000428873][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104994051:000427272][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994051:000427388][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994061:000429474][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994061:000429591][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994071:000431677][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994071:000431779][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994081:000432882][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994081:000432992][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994091:000434087][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994091:000434195][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994101:000436289][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994101:000436392][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994111:000437495][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994111:000437602][43005960] -> __osm_state_mgr_sweep_heavy_msg: ****************************************************************** ******************** INITIATING HEAVY SWEEP ********************** ****************************************************************** [1104994111:000437703][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c9010a99e030 TID = 0x36ad, discovered 0 times already. [1104994111:000437798][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x36ae. [1104994111:000437894][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x36af. [1104994111:000437947][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c9010a99e031 for parent node GUID = 0x2c9010a99e030, TID = 0x36b0. [1104994111:000438013][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Switch node 0x6170000000009 TID = 0x36b1, discovered 0 times already. [1104994111:000438071][43005960] -> __osm_si_rcv_process_existing: discovery_count is:1 [1104994111:000438134][43005960] -> osm_pi_rcv_process: Discovered port num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36b3. [1104994111:000438178][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36b4. [1104994111:000438212][43005960] -> osm_pi_rcv_process: Discovered port num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36b5. [1104994111:000438272][43005960] -> osm_pi_rcv_process: Discovered port num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36b6. [1104994111:000438314][43005960] -> osm_pi_rcv_process: Discovered port num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36b7. [1104994111:000438354][43005960] -> osm_pi_rcv_process: Discovered port num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36b8. [1104994111:000438394][43005960] -> osm_pi_rcv_process: Discovered port num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36b9. [1104994111:000438434][43005960] -> osm_pi_rcv_process: Discovered port num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36ba. [1104994111:000438475][43005960] -> osm_pi_rcv_process: Discovered port num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36bb. [1104994111:000438518][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 0 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36bc. [1104994111:000438706][43005960] -> Received a SMP on a 2 hop path: Initial path = [0][1][1] Return path = [0][7][1] [1104994111:000438723][43005960] -> __osm_ni_rcv_process_new: Discovered new Channel Adapter node, GUID = 0x2c901097651d0, TID = 0x36bd. [1104994111:000438761][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36be. [1104994111:000438950][43005960] -> __osm_ni_rcv_process_existing: Rediscovered Channel Adapter node 0x2c90108cd8890 TID = 0x36bf, discovered 0 times already. [1104994111:000438992][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 2 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36c0. [1104994111:000439036][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 3 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36c1. [1104994111:000439080][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 4 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36c2. [1104994111:000439129][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 5 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36c3. [1104994111:000439173][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 6 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36c4. [1104994111:000439216][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 7 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36c5. [1104994111:000439266][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 8 with GUID = 0x6170000000009 for parent node GUID = 0x6170000000009, TID = 0x36c6. [1104994111:000439354][43005960] -> __osm_nd_rcv_process_nd: Node 0x2c901097651d0 Description = MT23108 InfiniHost Mellanox Technologies. [1104994111:000439435][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x36c8. [1104994111:000439606][43005960] -> osm_pi_rcv_process: Discovered port num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x36c9. [1104994111:000439695][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c901097651d1 for parent node GUID = 0x2c901097651d0, TID = 0x36ca. [1104994111:000439858][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:0 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x36cb. [1104994111:000440025][43005960] -> osm_pkey_rcv_process: Got GetResp(PKey) block:1 port_num 1 with GUID = 0x2c90108cd8891 for parent node GUID = 0x2c90108cd8890, TID = 0x36cc. [1104994111:000440045][43005960] -> __osm_state_mgr_sweep_heavy_done_msg: ****************************************************************** ********************* HEAVY SWEEP COMPLETE *********************** ****************************************************************** [1104994111:000440057][43005960] -> __osm_lid_mgr_process_our_sm_node: Assigning SM's port 0x0002c9010a99e031 to LID range [0x1,0x1]. [1104994111:000440067][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104994111:000440076][43005960] -> __osm_state_mgr_set_sm_lid_done_msg: ****************************************************************** **** SM LID ASSIGNMENT COMPLETE - STARTING SUBNET LID CONFIG ***** ****************************************************************** [1104994111:000440087][43005960] -> __osm_lid_mgr_process_unassigned: Assigning port 0x0002c901097651d1 to LID [0x2,0x2]. [1104994111:000440096][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104994111:000440285][43005960] -> __osm_state_mgr_lid_assign_msg: ****************************************************************** ***** LID ASSIGNMENT COMPLETE - STARTING SWITCH TABLE CONFIG ***** ****************************************************************** [1104994111:000440296][43005960] -> osm_report_notice: Reporting Generic Notice type:3 num:64 from LID:0x0001 GUID:0xfe80000000000000,0x0002c9010a99e031 [1104994111:000440309][43005960] -> Discovered new port with GUID:0x0002c901097651d1 LID range [0x2,0x2] of node:MT23108 InfiniHost Mellanox Technologies [1104994111:000440411][43005960] -> __osm_state_mgr_switch_config_msg: ****************************************************************** ***************** SWITCHES CONFIGURED FOR UNICAST **************** ****************************************************************** [1104994111:000440422][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC000 has no members--nothing to do. [1104994111:000440429][43005960] -> __osm_mcast_mgr_build_spanning_tree: MLID 0xC001 has no members--nothing to do. [1104994111:000440438][43005960] -> __osm_state_mgr_multicast_config_msg: ****************************************************************** **************** SWITCHES CONFIGURED FOR MULTICAST *************** ****************************************************************** [1104994111:000440449][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x1 and port 0x0002c901097651d1, port# 0x1. Using lower MTU of 4. [1104994111:000440457][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x2 and port 0x0002c90108cd8891, port# 0x1. Using lower MTU of 4. [1104994111:000440473][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0006170000000009, port# 0x7 and port 0x0002c9010a99e031, port# 0x1. Using lower MTU of 4. [1104994111:000440483][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c9010a99e031, port# 0x1 and port 0x0006170000000009, port# 0x7. Using lower MTU of 4. [1104994111:000440492][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c90108cd8891, port# 0x1 and port 0x0006170000000009, port# 0x2. Using lower MTU of 4. [1104994111:000440500][43005960] -> osm_physp_calc_link_mtu: MTU mismatch between ports. Port 0x0002c901097651d1, port# 0x1 and port 0x0006170000000009, port# 0x1. Using lower MTU of 4. [1104994111:000440648][43005960] -> __osm_state_mgr_links_ports_msg: ****************************************************************** ************* LINKS PORTS CONFIGURED - SET LINKS TO ARMED STATE ************ ****************************************************************** [1104994111:000440841][43005960] -> __osm_state_mgr_links_armed_msg: ****************************************************************** ************* LINKS ARMED - SET LINKS TO ACTIVE STATE ************ ****************************************************************** [1104994111:000441464][43005960] -> __osm_state_mgr_up_msg: ****************************************************************** **************************** SUBNET UP *************************** ****************************************************************** [1104994121:000438701][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994121:000438815][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994131:000439903][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994131:000440010][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994141:000442107][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994141:000442209][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994151:000443313][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994151:000443423][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994161:000444516][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994161:000444638][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994171:000446722][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994171:000446834][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994181:000447927][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994181:000448029][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994191:000449130][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994191:000449232][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994201:000450336][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** [1104994201:000450443][43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** [1104994208:000136814][43005960] -> __osm_pr_rcv_get_end_points: No source port with GUID = 0x0000000000000000. [1104994209:000506813][43005960] -> PortInfo dump: port number.............0x1 node_guid...............0x0002c901097651d0 port_guid...............0x0002c901097651d1 m_key...................0x0000000000000000 subnet_prefix...........0xfe80000000000000 base_lid................0x2 master_sm_base_lid......0x1 capability_mask.........0x500A68 diag_code...............0x0 m_key_lease_period......0x0 local_port_num..........0x1 link_width_enabled......0x3 link_width_supported....0x3 link_width_active.......0x2 link_speed_supported....0x1 port_state..............ACTIVE state_info2.............0x52 m_key_protect_bits......0x0 lmc.....................0x0 link_speed..............0x11 mtu_smsl................0x40 vl_cap..................0x40 vl_high_limit...........0x0 vl_arb_high_cap.........0x8 vl_arb_low_cap..........0x8 mtu_cap.................0x4 vl_stall_life...........0xF4 vl_enforce..............0x10 m_key_violations........0x0 p_key_violations........0x0 q_key_violations........0x0 guid_cap................0x10 subnet_timeout..........0x12 resp_time_value.........0x1 error_threshold.........0x88 [1104994209:000506845][43005960] -> Capabilities Mask: IB_PORT_CAP_HAS_TRAP IB_PORT_CAP_HAS_AUTO_MIG IB_PORT_CAP_HAS_SL_MAP IB_PORT_CAP_HAS_LED_INFO IB_PORT_CAP_HAS_SYS_IMG_GUID IB_PORT_CAP_HAS_VEND_CLS IB_PORT_CAP_HAS_CAP_NTC [1104994209:000507332][43005960] -> PortInfo dump: port number.............0x0 node_guid...............0x0006170000000009 port_guid...............0x0006170000000009 m_key...................0x0000000000000000 subnet_prefix...........0xfe80000000000000 base_lid................0x3 master_sm_base_lid......0x1 capability_mask.........0x24C diag_code...............0x0 m_key_lease_period......0x0 local_port_num..........0x7 link_width_enabled......0x0 link_width_supported....0x0 link_width_active.......0x0 link_speed_supported....0x0 port_state..............No State Change (NOP) state_info2.............0x0 m_key_protect_bits......0x0 lmc.....................0x0 link_speed..............0x0 mtu_smsl................0x0 vl_cap..................0x0 vl_high_limit...........0x0 vl_arb_high_cap.........0x0 vl_arb_low_cap..........0x0 mtu_cap.................0x0 vl_stall_life...........0x0 vl_enforce..............0x0 m_key_violations........0x0 p_key_violations........0x0 q_key_violations........0x0 guid_cap................0x0 subnet_timeout..........0x12 resp_time_value.........0x3 error_threshold.........0x0 [1104994209:000507343][43005960] -> Capabilities Mask: IB_PORT_CAP_HAS_NOTICE IB_PORT_CAP_HAS_TRAP IB_PORT_CAP_HAS_SL_MAP IB_PORT_CAP_HAS_LED_INFO [1104994209:000507365][43005960] -> PortInfo dump: port number.............0x1 node_guid...............0x0006170000000009 port_guid...............0x0006170000000009 m_key...................0x0000000000000000 subnet_prefix...........0x0000000000000000 base_lid................0x0 master_sm_base_lid......0x0 capability_mask.........0x0 diag_code...............0x0 m_key_lease_period......0x0 local_port_num..........0x7 link_width_enabled......0x3 link_width_supported....0x3 link_width_active.......0x2 link_speed_supported....0x1 port_state..............ARMED state_info2.............0x52 m_key_protect_bits......0x0 lmc.....................0x0 link_speed..............0x11 mtu_smsl................0x40 vl_cap..................0x40 vl_high_limit...........0x0 vl_arb_high_cap.........0x20 vl_arb_low_cap..........0x20 mtu_cap.................0x5 vl_stall_life...........0x14 vl_enforce..............0x10 m_key_violations........0x0 p_key_violations........0x0 q_key_violations........0x0 guid_cap................0x0 subnet_timeout..........0x0 resp_time_value.........0x0 error_threshold.........0x88 [1104994209:000507371][43005960] -> Capabilities Mask: [1104994209:000507389][43005960] -> PortInfo dump: port number.............0x2 node_guid...............0x0006170000000009 port_guid...............0x0006170000000009 m_key...................0x0000000000000000 subnet_prefix...........0x0000000000000000 base_lid................0x0 master_sm_base_lid......0x0 capability_mask.........0x0 diag_code...............0x0 m_key_lease_period......0x0 local_port_num..........0x7 link_width_enabled......0x3 link_width_supported....0x3 link_width_active.......0x2 link_speed_supported....0x1 port_state..............ACTIVE state_info2.............0x52 m_key_protect_bits......0x0 lmc.....................0x0 link_speed..............0x11 mtu_smsl................0x40 vl_cap..................0x40 vl_high_limit...........0x0 vl_arb_high_cap.........0x20 vl_arb_low_cap..........0x20 mtu_cap.................0x5 vl_stall_life...........0x14 vl_enforce..............0x10 m_key_violations........0x0 p_key_violations........0x0 q_key_violations........0x0 guid_cap................0x0 subnet_timeout..........0x0 resp_time_value.........0x0 error_threshold.........0x88 [1104994209:000507396][43005960] -> Capabilities Mask: [1104994209:000507414][43005960] -> PortInfo dump: port number.............0x3 node_guid...............0x0006170000000009 port_guid...............0x0006170000000009 m_key...................0x0000000000000000 subnet_prefix...........0x0000000000000000 base_lid................0x0 master_sm_base_lid......0x0 capability_mask.........0x0 diag_code...............0x0 m_key_lease_period......0x0 local_port_num..........0x7 link_width_enabled......0x3 link_width_supported....0x3 link_width_active.......0x0 link_speed_supported....0x1 port_state..............DOWN state_info2.............0x22 m_key_protect_bits......0x0 lmc.....................0x0 link_speed..............0x11 mtu_smsl................0x50 vl_cap..................0x40 vl_high_limit...........0x0 vl_arb_high_cap.........0x20 vl_arb_low_cap..........0x20 mtu_cap.................0x3 vl_stall_life...........0x8 vl_enforce..............0x40 m_key_violations........0x0 p_key_violations........0x0 q_key_violations........0x0 guid_cap................0x0 subnet_timeout..........0x0 resp_time_value.........0x0 error_threshold.........0xFF [1104994209:000507435][43005960] -> Capabilities Mask: [1104994209:000507454][43005960] -> PortInfo dump: port number.............0x4 node_guid...............0x0006170000000009 port_guid...............0x0006170000000009 m_key...................0x0000000000000000 subnet_prefix...........0x0000000000000000 base_lid................0x0 master_sm_base_lid......0x0 capability_mask.........0x0 diag_code...............0x0 m_key_lease_period......0x0 local_port_num..........0x7 link_width_enabled......0x3 link_width_supported....0x3 link_width_active.......0x0 link_speed_supported....0x1 port_state..............DOWN state_info2.............0x22 m_key_protect_bits......0x0 lmc.....................0x0 link_speed..............0x11 mtu_smsl................0x50 vl_cap..................0x40 vl_high_limit...........0x0 vl_arb_high_cap.........0x20 vl_arb_low_cap..........0x20 mtu_cap.................0x3 vl_stall_life...........0x8 vl_enforce..............0x40 m_key_violations........0x0 p_key_violations........0x0 q_key_violations........0x0 guid_cap................0x0 subnet_timeout..........0x0 resp_time_value.........0x0 error_threshold.........0xFF [1104994209:000507460][43005960] -> Capabilities Mask: [1104994209:000507478][43005960] -> PortInfo dump: port number.............0x5 node_guid...............0x0006170000000009 port_guid...............0x0006170000000009 m_key...................0x0000000000000000 subnet_prefix...........0x0000000000000000 base_lid................0x0 master_sm_base_lid......0x0 capability_mask.........0x0 diag_code...............0x0 m_key_lease_period......0x0 local_port_num..........0x7 link_width_enabled......0x3 link_width_supported....0x3 link_width_active.......0x0 link_speed_supported....0x1 port_state..............DOWN state_info2.............0x22 m_key_protect_bits......0x0 lmc.....................0x0 link_speed..............0x11 mtu_smsl................0x50 vl_cap..................0x40 vl_high_limit...........0x0 vl_arb_high_cap.........0x20 vl_arb_low_cap..........0x20 mtu_cap.................0x3 vl_stall_life...........0x8 vl_enforce..............0x40 m_key_violations........0x0 p_key_violations........0x0 q_key_violations........0x0 guid_cap................0x0 subnet_timeout..........0x0 resp_time_value.........0x0 error_threshold.........0xFF [1104994209:000507486][43005960] -> Capabilities Mask: [1104994209:000507504][43005960] -> PortInfo dump: port number.............0x6 node_guid...............0x0006170000000009 port_guid...............0x0006170000000009 m_key...................0x0000000000000000 subnet_prefix...........0x0000000000000000 base_lid................0x0 master_sm_base_lid......0x0 capability_mask.........0x0 diag_code...............0x0 m_key_lease_period......0x0 local_port_num..........0x7 link_width_enabled......0x3 link_width_supported....0x3 link_width_active.......0x0 link_speed_supported....0x1 port_state..............DOWN state_info2.............0x22 m_key_protect_bits......0x0 lmc.....................0x0 link_speed..............0x11 mtu_smsl................0x50 vl_cap..................0x40 vl_high_limit...........0x0 vl_arb_high_cap.........0x20 vl_arb_low_cap..........0x20 mtu_cap.................0x3 vl_stall_life...........0x8 vl_enforce..............0x40 m_key_violations........0x0 p_key_violations........0x0 q_key_violations........0x0 guid_cap................0x0 subnet_timeout..........0x0 resp_time_value.........0x0 error_threshold.........0xFF [1104994209:000507516][43005960] -> Capabilities Mask: [1104994209:000507535][43005960] -> PortInfo dump: port number.............0x7 node_guid...............0x0006170000000009 port_guid...............0x0006170000000009 m_key...................0x0000000000000000 subnet_prefix...........0x0000000000000000 base_lid................0x0 master_sm_base_lid......0x0 capability_mask.........0x0 diag_code...............0x0 m_key_lease_period......0x0 local_port_num..........0x7 link_width_enabled......0x3 link_width_supported....0x3 link_width_active.......0x2 link_speed_supported....0x1 port_state..............ACTIVE state_info2.............0x52 m_key_protect_bits......0x0 lmc.....................0x0 link_speed..............0x11 mtu_smsl................0x40 vl_cap..................0x40 vl_high_limit...........0x0 vl_arb_high_cap.........0x20 vl_arb_low_cap..........0x20 mtu_cap.................0x5 vl_stall_life...........0x14 vl_enforce..............0x10 m_key_violations........0x0 p_key_violations........0x0 q_key_violations........0x0 guid_cap................0x0 subnet_timeout..........0x0 resp_time_value.........0x0 error_threshold.........0x88 [1104994209:000507541][43005960] -> Capabilities Mask: [1104994209:000507560][43005960] -> PortInfo dump: port number.............0x8 node_guid...............0x0006170000000009 port_guid...............0x0006170000000009 m_key...................0x0000000000000000 subnet_prefix...........0x0000000000000000 base_lid................0x0 master_sm_base_lid......0x0 capability_mask.........0x0 diag_code...............0x0 m_key_lease_period......0x0 local_port_num..........0x7 link_width_enabled......0x3 link_width_supported....0x3 link_width_active.......0x0 link_speed_supported....0x1 port_state..............DOWN state_info2.............0x22 m_key_protect_bits......0x0 lmc.....................0x0 link_speed..............0x11 mtu_smsl................0x50 vl_cap..................0x40 vl_high_limit...........0x0 vl_arb_high_cap.........0x20 vl_arb_low_cap..........0x20 mtu_cap.................0x3 vl_stall_life...........0x8 vl_enforce..............0x40 m_key_violations........0x0 p_key_violations........0x0 q_key_violations........0x0 guid_cap................0x0 subnet_timeout..........0x0 resp_time_value.........0x0 error_threshold.........0xFF [1104994209:000507566][43005960] -> Capabilities Mask: [1104994209:000507584][43005960] -> PortInfo dump: port number.............0x1 node_guid...............0x0002c9010a99e030 port_guid...............0x0002c9010a99e031 m_key...................0x0000000000000000 subnet_prefix...........0xfe80000000000000 base_lid................0x1 master_sm_base_lid......0x1 capability_mask.........0x500A68 diag_code...............0x0 m_key_lease_period......0x0 local_port_num..........0x1 link_width_enabled......0x3 link_width_supported....0x3 link_width_active.......0x2 link_speed_supported....0x1 port_state..............ACTIVE state_info2.............0x52 m_key_protect_bits......0x0 lmc.....................0x0 link_speed..............0x11 mtu_smsl................0x40 vl_cap..................0x40 vl_high_limit...........0x0 vl_arb_high_cap.........0x8 vl_arb_low_cap..........0x8 mtu_cap.................0x4 vl_stall_life...........0xF4 vl_enforce..............0x10 m_key_violations........0x0 p_key_violations........0x0 q_key_violations........0x0 guid_cap................0x20 subnet_timeout..........0x12 resp_time_value.........0x10 error_threshold.........0x88 [1104994209:000507604][43005960] -> Capabilities Mask: IB_PORT_CAP_HAS_TRAP IB_PORT_CAP_HAS_AUTO_MIG IB_PORT_CAP_HAS_SL_MAP IB_PORT_CAP_HAS_LED_INFO IB_PORT_CAP_HAS_SYS_IMG_GUID IB_PORT_CAP_HAS_VEND_CLS IB_PORT_CAP_HAS_CAP_NTC [1104994209:000507623][43005960] -> PortInfo dump: port number.............0x1 node_guid...............0x0002c90108cd8890 port_guid...............0x0002c90108cd8891 m_key...................0x0000000000000000 subnet_prefix...........0xfe80000000000000 base_lid................0x4 master_sm_base_lid......0x1 capability_mask.........0x500A68 diag_code...............0x0 m_key_lease_period......0x0 local_port_num..........0x1 link_width_enabled......0x3 link_width_supported....0x3 link_width_active.......0x2 link_speed_supported....0x1 port_state..............ACTIVE state_info2.............0x52 m_key_protect_bits......0x0 lmc.....................0x0 link_speed..............0x11 mtu_smsl................0x40 vl_cap..................0x40 vl_high_limit...........0x0 vl_arb_high_cap.........0x8 vl_arb_low_cap..........0x8 mtu_cap.................0x4 vl_stall_life...........0xF4 vl_enforce..............0x10 m_key_violations........0x0 p_key_violations........0x0 q_key_violations........0x0 guid_cap................0x20 subnet_timeout..........0x12 resp_time_value.........0x1 error_threshold.........0x88 [1104994209:000507634][43005960] -> Capabilities Mask: IB_PORT_CAP_HAS_TRAP IB_PORT_CAP_HAS_AUTO_MIG IB_PORT_CAP_HAS_SL_MAP IB_PORT_CAP_HAS_LED_INFO IB_PORT_CAP_HAS_SYS_IMG_GUID IB_PORT_CAP_HAS_VEND_CLS IB_PORT_CAP_HAS_CAP_NTC [1104994209:000507653][43005960] -> PortInfo dump: port number.............0x1 node_guid...............0x0002c901097651d0 port_guid...............0x0002c901097651d1 m_key...................0x0000000000000000 subnet_prefix...........0xfe80000000000000 base_lid................0x2 master_sm_base_lid......0x1 capability_mask.........0x500A68 diag_code...............0x0 m_key_lease_period......0x0 local_port_num..........0x1 link_width_enabled......0x3 link_width_supported....0x3 link_width_active.......0x2 link_speed_supported....0x1 port_state..............ACTIVE state_info2.............0x52 m_key_protect_bits......0x0 lmc.....................0x0 link_speed..............0x11 mtu_smsl................0x40 vl_cap..................0x40 vl_high_limit...........0x0 vl_arb_high_cap.........0x8 vl_arb_low_cap..........0x8 mtu_cap.................0x4 vl_stall_life...........0xF4 vl_enforce..............0x10 m_key_violations........0x0 p_key_violations........0x0 q_key_violations........0x0 guid_cap................0x10 subnet_timeout..........0x12 resp_time_value.........0x1 error_threshold.........0x88 [1104994209:000507663][43005960] -> Capabilities Mask: IB_PORT_CAP_HAS_TRAP IB_PORT_CAP_HAS_AUTO_MIG IB_PORT_CAP_HAS_SL_MAP IB_PORT_CAP_HAS_LED_INFO IB_PORT_CAP_HAS_SYS_IMG_GUID IB_PORT_CAP_HAS_VEND_CLS IB_PORT_CAP_HAS_CAP_NTC [1104994211:000452542][44007960] -> __osm_state_mgr_sweep_light_msg: ****************************************************************** ******************** INITIATING LIGHT SWEEP ********************** ****************************************************************** -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mlleinin at hpcn.ca.sandia.gov Wed Jan 5 15:02:21 2005 From: mlleinin at hpcn.ca.sandia.gov (Matt Leininger) Date: Wed, 05 Jan 2005 15:02:21 -0800 Subject: [openib-general] another shutdown reminder In-Reply-To: <1104962739.4645.433.camel@localhost.localdomain> References: <1104962779.8311.0.camel@acheron.ca.sandia.gov> <1104962739.4645.433.camel@localhost.localdomain> Message-ID: <1104966142.2603.262.camel@localhost> The openib server will be down from 3:30pm to 4:30pm PST. Sorry for the trouble, but we have to me the machine into our new building. Thanks, - Matt On Wed, 2005-01-05 at 17:08 -0500, Hal Rosenstock wrote: > On Wed, 2005-01-05 at 17:06, Michael Paichi Lee wrote: > > This is another reminder that the openib.org site will be down from > > 3:30pm to 4:30pm for a system move. All mail, http, and subversion > > subversions will be unavailable during this window. > > What TZ ? PST ? > > Thanks. > > -- Hal > > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general > From lindahl at pathscale.com Wed Jan 5 15:05:34 2005 From: lindahl at pathscale.com (Greg Lindahl) Date: Wed, 5 Jan 2005 15:05:34 -0800 Subject: [openib-general] another shutdown reminder In-Reply-To: <1104962739.4645.433.camel@localhost.localdomain> References: <1104962779.8311.0.camel@acheron.ca.sandia.gov> <1104962739.4645.433.camel@localhost.localdomain> Message-ID: <20050105230534.GG3873@greglaptop.internal.keyresearch.com> On Wed, Jan 05, 2005 at 05:08:31PM -0500, Hal Rosenstock wrote: > What TZ ? PST ? Ah, if only you knew how funny that question is! 2 beer penalty and loss of down for failure to appreciate the uniqueness of Sandia's geography. -- greg From mplee at hpcn.ca.sandia.gov Wed Jan 5 16:14:30 2005 From: mplee at hpcn.ca.sandia.gov (Michael Lee) Date: Wed, 05 Jan 2005 16:14:30 -0800 Subject: [openib-general] openib.org is up Message-ID: <1104970470.8311.4.camel@acheron.ca.sandia.gov> The openib.org domain is back up again. All services have resumed as normal. -- Michael Lee HPCN Sandia From tduffy at sun.com Wed Jan 5 16:18:13 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 05 Jan 2005 16:18:13 -0800 Subject: [openib-general] IB turned on in latest FC (RH) kernels Message-ID: <1104970693.10911.18.camel@duffman> I was just looking over the latest Fedora Core rawhide tree and noticed that the kernel was rebased to 2.6.10-bk5. I downloaded the source rpm, looked in the various arch configs, and IB, MTHCA, and IPoIB are all turned on as modules in i568, i686, x86_64, ia64, ppc, ppc64, s390, and their smp counterparts. Looks like we will soon have a distribution which supports OpenIB out of the box. Woo! -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From halr at voltaire.com Wed Jan 5 17:03:07 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 05 Jan 2005 20:03:07 -0500 Subject: [openib-general] OpenSM died a horrible death In-Reply-To: <1104963701.26324.54.camel@duffman> References: <1104963701.26324.54.camel@duffman> Message-ID: <1104973382.4645.464.camel@localhost.localdomain> On Wed, 2005-01-05 at 17:21, Tom Duffy wrote: > I noticed this on the console of opensm > > *** glibc detected *** double free or corruption (!prev): 0x0000002a95901eb0 *** > OpenSM[4593]: *** exception handler: died with signal 6 > exception handler: entering tight loop ... pid 4593 It looks like it died shortly after the following error: [1104994208:000136814][43005960] -> __osm_pr_rcv_get_end_points: No source port with GUID = 0x0000000000000000 To state the obvious, OpenSM must have a (non-obvious) bug (a double free of some memory) when this occurs. I will try to recreate this. Do you know what was going on on the subnet at the time ? Did a end node SA client request a PathRecord with a SGID of 0 but turn the component mask bit for SGID on ? Also, out of curiousity, what were the options that OpenSM was started with ? -- Hal From robert.j.woodruff at intel.com Wed Jan 5 17:34:59 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Wed, 5 Jan 2005 17:34:59 -0800 Subject: [openib-general] IB turned on in latest FC (RH) kernels Message-ID: <1AC79F16F5C5284499BB9591B33D6F0003340492@orsmsx408> >Looks like we will soon have a distribution which supports OpenIB out of >the box. Woo! >-tduffy Cool!!! woody From roland.list at gmail.com Wed Jan 5 18:23:46 2005 From: roland.list at gmail.com (Roland Dreier) Date: Wed, 5 Jan 2005 18:23:46 -0800 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <1104959952.4645.375.camel@localhost.localdomain> References: <1104959952.4645.375.camel@localhost.localdomain> Message-ID: > 1. The SM needs the ability to write (set/clear) the 'is_sm' PortInfo > capability mask bit (from user space). Yes, I'll implement this. > 2. There are some additional fields which would be useful to support: > per port > PortInfo:PortPhysicalState Why is this useful? > NodeInfo:PortGUID I think the low 64 bits of the GID at index 0 can be used to get this. > per device > NodeInfo:NodeType Makes sense, I'll add this. - Roland From roland.list at gmail.com Wed Jan 5 18:24:52 2005 From: roland.list at gmail.com (Roland Dreier) Date: Wed, 5 Jan 2005 18:24:52 -0800 Subject: [openib-general] IB turned on in latest FC (RH) kernels In-Reply-To: <1104970693.10911.18.camel@duffman> References: <1104970693.10911.18.camel@duffman> Message-ID: > I was just looking over the latest Fedora Core rawhide tree and noticed > that the kernel was rebased to 2.6.10-bk5. I downloaded the source rpm, > looked in the various arch configs, and IB, MTHCA, and IPoIB are all > turned on as modules in i568, i686, x86_64, ia64, ppc, ppc64, s390, and > their smp counterparts. > > Looks like we will soon have a distribution which supports OpenIB out of > the box. Woo! That's very cool... (although to nitpick, surely IB isn't enabled for s390, since CONFIG_PCI=n for that platform) - R. From tduffy at sun.com Wed Jan 5 18:32:29 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 05 Jan 2005 18:32:29 -0800 Subject: [openib-general] IB turned on in latest FC (RH) kernels In-Reply-To: References: <1104970693.10911.18.camel@duffman> Message-ID: <1104978749.22586.2.camel@duffman> On Wed, 2005-01-05 at 18:24 -0800, Roland Dreier wrote: > That's very cool... (although to nitpick, surely IB isn't enabled for > s390, since CONFIG_PCI=n for that platform) Weird, it is in the .config. Also for s390x. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From roland.list at gmail.com Wed Jan 5 20:35:50 2005 From: roland.list at gmail.com (Roland Dreier) Date: Wed, 5 Jan 2005 20:35:50 -0800 Subject: [openib-general] IB turned on in latest FC (RH) kernels In-Reply-To: <1104978749.22586.2.camel@duffman> References: <1104970693.10911.18.camel@duffman> <1104978749.22586.2.camel@duffman> Message-ID: > Weird, it is in the .config. Also for s390x. I took a look at the Fedora CVS. It seems they build their configs by gluing together a generic config with arch-specific options. CONFIG_INFINIBAND=m etc. is in the generic config so it ends up everywhere, including s390/s390x. I think when they actually build the kernel, the equivalent of 'make oldconfig' strips the IB stuff out for s390. - R. From halr at voltaire.com Wed Jan 5 21:03:29 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 00:03:29 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: <1104959952.4645.375.camel@localhost.localdomain> Message-ID: <1104987809.4645.474.camel@localhost.localdomain> On Wed, 2005-01-05 at 21:23, Roland Dreier wrote: > > 1. The SM needs the ability to write (set/clear) the 'is_sm' PortInfo > > capability mask bit (from user space). > > Yes, I'll implement this. Thanks. > > 2. There are some additional fields which would be useful to support: > > per port > > PortInfo:PortPhysicalState > > Why is this useful? This is useful when link is not coming up: you can see what is going on better. It replaces the need to view the LED for this. > > NodeInfo:PortGUID > > I think the low 64 bits of the GID at index 0 can be used to get this. Right. > > per device > > NodeInfo:NodeType > > Makes sense, I'll add this. Thanks. -- Hal From eitan at mellanox.co.il Wed Jan 5 22:50:08 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Thu, 6 Jan 2005 08:50:08 +0200 Subject: [openib-general] OpenSM died a horrible death Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEB9C@mtlex01.yok.mtl.com> OpenSM asserts on guid=0x0000000000000000 EZ [Hal] >It looks like it died shortly after the following error: [Hal] >[1104994208:000136814][43005960] -> __osm_pr_rcv_get_end_points: No source [Hal] >port with GUID = 0x0000000000000000 _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From spoole at lanl.gov Thu Jan 6 00:44:39 2005 From: spoole at lanl.gov (Stephen Poole) Date: Thu, 6 Jan 2005 01:44:39 -0700 Subject: [openib-general] ip over ib throughtput In-Reply-To: <25AE7F432672D511B8DC00B0D0DF11DA043F1957@MTIEX01> References: <25AE7F432672D511B8DC00B0D0DF11DA043F1957@MTIEX01> Message-ID: Have you done any "load" analysis of a 2K .vs. 4K MTU ? Your analogy of having 2G as a total message size is potentially flawed. You seem to assume that 2G is the end-all in size, it is not. What about when you want to (down the road) use IB for files in the 1-10TB in size. Granted, we can live with 2G, but it is not some nirvana number. Second, with the 2G limit on messages sizes, only determines the upper bound in overall size, I could send 2G @ 32bytes MTU. So, the question is, how much less of a system load/impact would a 4K MTU be over a 2K MTU. Remember, even Ethernet finally decided to go to Jumbo Frames, why, system impact and more. Remember HIPPI/GSN, the MTU was 64K, reason, system impact. The numbers I have seen running IPoIB really impact the system. Steve... At 10:38 AM -0800 1/5/05, Diego Crupnicoff wrote: >Note however that the relevant IB limit is the max ***message >size*** which happens to be equal to the ***IB*** MTU for the >current IPoIB (that runs on top of IB UD transport service where IB >messages are limited to a single packet). > >A connected mode IPoIB (that runs on top of IB RC/UC transport >service) would allow IB messages up to 2GB long. That will allow for >much larger (effectively as large as you may ever dream of) ***IP*** >MTUs, regardless of the underlying IB MTU. > >Diego > > > -----Original Message----- >> From: Hal Rosenstock [mailto:halr at voltaire.com] >> Sent: Wednesday, January 05, 2005 2:21 PM >> To: Peter Buckingham >> Cc: openib-general at openib.org >> Subject: Re: [openib-general] ip over ib throughtput >> >> >> On Wed, 2005-01-05 at 12:23, Peter Buckingham wrote: >> > stupid question: why are we limited to a 2K MTU for IPoIB? >> >> The IB max MTU is 4K. The current HCAs support a max MTU of 2K. >> >> -- Hal >> >> _______________________________________________ >> openib-general mailing list >> openib-general at openib.org >> >>http://openib.org/mailman/listinfo/openib-> >>general >> >> To >> unsubscribe, please visit >> >>http://openib.org/mailman/listinfo/openib-general >> > > >_______________________________________________ >openib-general mailing list >openib-general at openib.org >http://openib.org/mailman/listinfo/openib-general > >To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -- Steve Poole (spoole at lanl.gov) Office: 505.665.9662 Los Alamos National Laboratory Cell: 505.699.3807 CCN - Special Projects / Advanced Development Fax: 505.665.7793 P.O. Box 1663, MS B255 Los Alamos, NM. 87545 03149801S -------------- next part -------------- An HTML attachment was scrubbed... URL: From spoole at lanl.gov Thu Jan 6 00:54:48 2005 From: spoole at lanl.gov (Stephen Poole) Date: Thu, 6 Jan 2005 01:54:48 -0700 Subject: [openib-general] ip over ib throughtput In-Reply-To: <25AE7F432672D511B8DC00B0D0DF11DA043F196E@MTIEX01> References: <25AE7F432672D511B8DC00B0D0DF11DA043F196E@MTIEX01> Message-ID: First, I love Hardware Reliability. 1QP per node, this might be fine for small clusters, but what about larger clusters, where I have an all-to-all communications pattern ? What about say *IF* something like IB was ever designed into a BG/L class cluster ? What about if I happen to want to run a multi-protocol application, how is that currently handled ? *IF* I am allowed to do that and I had an all-2-all communication pattern, looks like I would exhaust the QP allocation table. Sounds like potentially, as clusters/nodes increase in number, we could easily bump our heads on some of the IBTA artificial limits set. IMHO Instead of 1 QP for every node, don't you mean 1 QP for every HCA/Node ? That assumes that I can have multiple HCAs per node. Currently even at the IPoIB level, we can not do "bonding/trunking", correct ? Steve... At 12:11 PM -0800 1/5/05, Diego Crupnicoff wrote: > > -----Original Message----- >> From: Woodruff, Robert J >>[mailto:robert.j.woodruff at intel.com] >> Sent: Wednesday, January 05, 2005 3:53 PM >> To: Diego Crupnicoff; Hal Rosenstock; Peter Buckingham >> Cc: openib-general at openib.org >> Subject: RE: [openib-general] ip over ib throughtput >> >> >> The trade off is that a fully connected model requires each >> node to burn a QP for every node in the cluster and thus does >> not scale as well as the UD model. My guess is that if >> people need really high performance >> socket access, they will use SDP instead. >> >> woody >> > >1 QP for every node in the cluster does not sound that bad. > >SDP is a good alternative too. It has even further benefits as >compared to IPoIB (built in HW reliability that eliminates the >TCP/IP stack, potential for zero copy, etc). However, in terms of QP >requirements, SDP would consume even more than what a connected mode >IPoIB would (still not too bad given the IB HW capabilities). > >Diego > > > > >_______________________________________________ >openib-general mailing list >openib-general at openib.org >http://openib.org/mailman/listinfo/openib-general > >To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -- Steve Poole (spoole at lanl.gov) Office: 505.665.9662 Los Alamos National Laboratory Cell: 505.699.3807 CCN - Special Projects / Advanced Development Fax: 505.665.7793 P.O. Box 1663, MS B255 Los Alamos, NM. 87545 03149801S -------------- next part -------------- An HTML attachment was scrubbed... URL: From mst at mellanox.co.il Thu Jan 6 02:39:39 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 6 Jan 2005 12:39:39 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <1104959829.26324.38.camel@duffman> References: <1104959829.26324.38.camel@duffman> Message-ID: <20050106103939.GC25420@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "mstflint failing on sparc64": > I have just tried running the mstflint utility on Linux/sparc64: > > tat:~# lspci > 0000:80:00.0 Host bridge: Sun Microsystems Computer Corp. Psycho PCI Bus > Module > 0000:80:01.0 PCI bridge: Mellanox Technology MT23108 PCI Bridge (rev a1) > 0000:81:00.0 InfiniBand: Mellanox Technology MT23108 InfiniHost (rev a1) > tat:~# ./mstflint -d 0000:81:00.0 q > Can not parse device 0000:81:00.0 > *** ERROR *** Invalid argument I wander what 0000: is for? Anyway, I added support for names format 0000:xx:xx.x just for convenience. But its not a real issue. By the way, looking at drivers/pci/proc.c it seems that domains>0 are not really supported in linux yet. Do you see 8100 in a first column in /proc/bus/pci/devices, too? If not, could you cat /proc/bus/pci/devices please? Please try sending it as an attachment, your mailer seems to wrap lines. > tat:~# ./mstflint -d 81:00.0 q > Bus error Interesting. Maybe mmap does not work as it should? Could you run it under gdb and do a backtrace? I also added a sanity checks on mmap result, maybe that will help us see what is the problem. > tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q > *** ERROR *** cannot obtain GPIO semaphore (63) > tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q > *** ERROR *** Flash gateway timeout: CMD doesn't become zero > > Any ideas? > > -tduffy Hmm. I think I forgot about endian-ness for the /proc/bus/pci case. I fixed that, could you try again please? If that does not help, could you please locate the line #if 1 around flint.cpp line 297 , and change this to #if 0? This will turn on lots of messages on each memory access. MST From mst at mellanox.co.il Thu Jan 6 02:53:46 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 6 Jan 2005 12:53:46 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: <1104959952.4645.375.camel@localhost.localdomain> Message-ID: <20050106105346.GD25420@mellanox.co.il> Hello, Roland! Quoting r. Roland Dreier (roland.list at gmail.com) "Re: [openib-general] Some Missing Features from mthca/user MAD access": > > 1. The SM needs the ability to write (set/clear) the 'is_sm' PortInfo > > capability mask bit (from user space). > > Yes, I'll implement this. Didnt Shahar already do this? Anyway, as a reminder, there are a couple of issues to consider with this: 1. there shall, properly, be only one sm at the same time so I think an attempt to set it when its already set shall fail or block. 2. when sm exits the bit shall be auto-cleared I guess the proper way to do it is on closing the file. HTH mst From Diego at Mellanox.com Thu Jan 6 04:43:34 2005 From: Diego at Mellanox.com (Diego Crupnicoff) Date: Thu, 6 Jan 2005 04:43:34 -0800 Subject: [openib-general] ip over ib throughtput Message-ID: <25AE7F432672D511B8DC00B0D0DF11DA02985149@MTIEX01> I feel like we are talking about different things here: The ***IP*** MTU is relevant for IPoIB performance because it determines the number of times that you are going to be hit by the per-packet overhead of the ***host*** networking stack. My point was that the ***IP MTU*** will not be tied to the ***IB*** MTU if a connected mode IPoIB (or SDP) is used instead of the current IPoIB that uses IB UD transport service. The IB MTU would then be irrelevant to this discussion. As for the eventual 2G ***IP*** MTU limit, it still sounds more than reasonable to me. I wouldn't mind if a 10TB file gets split into some IP packets up to 2GB?!?!? each. (With the exception of the UD transport service where IB messages are limited to be single packet), the choice of ***IB*** MTU and its impact on performance is a completely unrelated issue. IB messages are split into packets and reassembled by the HCA HW. So the per-IB-message overhead of the SW stack is independent of the IB MTU. The choice of IB MTU may indeed affect performance for other reasons but it is not immediately obvious that the largest available IB MTU is the best option for all cases. For example, latency optimization of small high priority packets under load may benefit from smaller IB MTUs (e.g. 256). Diego -----Original Message----- From: Stephen Poole [mailto:spoole at lanl.gov] Sent: Thursday, January 06, 2005 5:45 AM To: Diego Crupnicoff Cc: 'openib-general at openib.org' Subject: RE: [openib-general] ip over ib throughtput Have you done any "load" analysis of a 2K .vs. 4K MTU ? Your analogy of having 2G as a total message size is potentially flawed. You seem to assume that 2G is the end-all in size, it is not. What about when you want to (down the road) use IB for files in the 1-10TB in size. Granted, we can live with 2G, but it is not some nirvana number. Second, with the 2G limit on messages sizes, only determines the upper bound in overall size, I could send 2G @ 32bytes MTU. So, the question is, how much less of a system load/impact would a 4K MTU be over a 2K MTU. Remember, even Ethernet finally decided to go to Jumbo Frames, why, system impact and more. Remember HIPPI/GSN, the MTU was 64K, reason, system impact. The numbers I have seen running IPoIB really impact the system. Steve... At 10:38 AM -0800 1/5/05, Diego Crupnicoff wrote: Note however that the relevant IB limit is the max ***message size*** which happens to be equal to the ***IB*** MTU for the current IPoIB (that runs on top of IB UD transport service where IB messages are limited to a single packet). A connected mode IPoIB (that runs on top of IB RC/UC transport service) would allow IB messages up to 2GB long. That will allow for much larger (effectively as large as you may ever dream of) ***IP*** MTUs, regardless of the underlying IB MTU. Diego > -----Original Message----- > From: Hal Rosenstock [ mailto:halr at voltaire.com] > Sent: Wednesday, January 05, 2005 2:21 PM > To: Peter Buckingham > Cc: openib-general at openib.org > Subject: Re: [openib-general] ip over ib throughtput > > > On Wed, 2005-01-05 at 12:23, Peter Buckingham wrote: > > stupid question: why are we limited to a 2K MTU for IPoIB? > > The IB max MTU is 4K. The current HCAs support a max MTU of 2K. > > -- Hal > > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-> general > > To > unsubscribe, please visit > http://openib.org/mailman/listinfo/openib-general > _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -- Steve Poole (spoole at lanl.gov) Office: 505.665.9662 Los Alamos National Laboratory Cell: 505.699.3807 CCN - Special Projects / Advanced Development Fax: 505.665.7793 P.O. Box 1663, MS B255 Los Alamos, NM. 87545 03149801S -------------- next part -------------- An HTML attachment was scrubbed... URL: From tziporet at mellanox.co.il Thu Jan 6 05:37:00 2005 From: tziporet at mellanox.co.il (Tziporet Koren) Date: Thu, 6 Jan 2005 15:37:00 +0200 Subject: [openib-general] getting updated Mellanox FW images Message-ID: <506C3D7B14CDD411A52C00025558DED6064BED41@mtlex01.yok.mtl.com> Hi, The policy of releasing FW by Mellanox is this: Since every OEM has its own FW customization, the most appropriate way to get FW update is from the one who sold you the card, and not from general open source. In any case the most updated FW releases are located in the Mellanox Website: http://www.mellanox.com/products/firmware.html Tziporet -----Original Message----- From: Grant Grundler [mailto:iod00d at hp.com] Sent: Wednesday, January 05, 2005 8:58 PM To: Roland Dreier Cc: openib-general at openib.org Subject: Re: [openib-general] ip over ib throughtput On Wed, Jan 05, 2005 at 07:24:11AM -0800, Roland Dreier wrote: > Grant, what FW are you running? I just realized that all FW prior to > 3.3.1 has issues with MSI-X. So if you want to use MSI-X then you > should upgrade to FW 3.3.2 (since 3.3.1 has a bug in CQ handling). I'm pretty sure it's 3.2.0. Can you point me at the equivalent of fw-cougarcub-a1-3.2.0.bin and fw-cougar-a1-3.2.0.bin? (Consider this another call for posting firmware revs on openib.org) thanks, grant _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From shaharf at voltaire.com Thu Jan 6 07:03:12 2005 From: shaharf at voltaire.com (shaharf) Date: Thu, 6 Jan 2005 17:03:12 +0200 Subject: [openib-general] OpenSM died a horrible death Message-ID: Hi Tom, Can you send me the original mail concerning the SM horrible death? It was corrupted in our Exchange or it was very large (over 5 MB). If you want to send very large log files, please send it tared and zipped. If it is only local Exchange problem (praise Bill), then please just resend it. Anyhow, I missed the exact context that it happened. From the below email I got the impression that it occurred after get path record with dest=null. I didn't find any relevant assert in the code, and I also issued synthetic path record with dest gid = 0 and it works (return status 500). Eitan - where is this assert that you think it hit? I know that it is assert but did anyone understand from where? It should be written in the log, and in the panic message and you can get it using a gdb. The process should enter a tight loop to enable to debug it with gdb. The dump of the backtrace (bt) of the gdb will be very helpful. Shahar ________________________________ From: openib-general-bounces at openib.org [mailto:openib-general-bounces at openib.org] On Behalf Of Eitan Zahavi Sent: Thursday, January 06, 2005 8:50 AM To: Hal Rosenstock; Tom Duffy Cc: openib-general at openib.org Subject: RE: [openib-general] OpenSM died a horrible death OpenSM asserts on guid=0x0000000000000000 EZ [Hal] >It looks like it died shortly after the following error: [Hal] >[1104994208:000136814][43005960] -> __osm_pr_rcv_get_end_points: No source [Hal] >port with GUID = 0x0000000000000000 _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From eitan at mellanox.co.il Thu Jan 6 07:11:01 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Thu, 6 Jan 2005 17:11:01 +0200 Subject: [openib-general] OpenSM died a horrible death Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEBAE@mtlex01.yok.mtl.com> Hi Shahaf The assert are in: osm_lid_mgr.c:968: CL_ASSERT( p_mgr->p_subn->sm_port_guid ); osm_lid_mgr.c:1011: CL_ASSERT( p_mgr->p_subn->sm_port_guid ); osm_mcast_mgr.c:1150: CL_ASSERT( port_guid ); osm_port.c:977: CL_ASSERT( port_guid ); osm_state_mgr.c:806: CL_ASSERT( port_guid ); osm_state_mgr.c:866: CL_ASSERT( port_guid ); osm_vendor_al.c:573: CL_ASSERT( ca_guid ); osm_vendor_al.c:604: CL_ASSERT( p_guids ); osm_vendor_al.c:804: CL_ASSERT( port_guid ); osm_vendor_al.c:864: CL_ASSERT( port_guid ); Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -----Original Message----- From: shaharf [mailto:shaharf at voltaire.com] Sent: Thursday, January 06, 2005 5:03 PM To: Tom Duffy Cc: openib-general at openib.org; Eitan Zahavi; Hal Rosenstock Subject: RE: [openib-general] OpenSM died a horrible death Hi Tom, Can you send me the original mail concerning the SM horrible death? It was corrupted in our Exchange or it was very large (over 5 MB). If you want to send very large log files, please send it tared and zipped. If it is only local Exchange problem (praise Bill), then please just resend it. Anyhow, I missed the exact context that it happened. From the below email I got the impression that it occurred after get path record with dest=null. I didn't find any relevant assert in the code, and I also issued synthetic path record with dest gid = 0 and it works (return status 500). Eitan - where is this assert that you think it hit? I know that it is assert but did anyone understand from where? It should be written in the log, and in the panic message and you can get it using a gdb. The process should enter a tight loop to enable to debug it with gdb. The dump of the backtrace (bt) of the gdb will be very helpful. Shahar _____ From: openib-general-bounces at openib.org [mailto:openib-general-bounces at openib.org] On Behalf Of Eitan Zahavi Sent: Thursday, January 06, 2005 8:50 AM To: Hal Rosenstock; Tom Duffy Cc: openib-general at openib.org Subject: RE: [openib-general] OpenSM died a horrible death OpenSM asserts on guid=0x0000000000000000 EZ [Hal] >It looks like it died shortly after the following error: [Hal] >[1104994208:000136814][43005960] -> __osm_pr_rcv_get_end_points: No source [Hal] >port with GUID = 0x0000000000000000 _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From halr at voltaire.com Thu Jan 6 07:16:50 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 10:16:50 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <20050106105346.GD25420@mellanox.co.il> References: <1104959952.4645.375.camel@localhost.localdomain> <20050106105346.GD25420@mellanox.co.il> Message-ID: <1105024456.4645.499.camel@localhost.localdomain> On Thu, 2005-01-06 at 05:53, Michael S. Tsirkin wrote: > Hello, Roland! > Quoting r. Roland Dreier (roland.list at gmail.com) "Re: [openib-general] Some Missing Features from mthca/user MAD access": > > > 1. The SM needs the ability to write (set/clear) the 'is_sm' PortInfo > > > capability mask bit (from user space). > > > > Yes, I'll implement this. > > Didnt Shahar already do this? Not as far as I know. He was inquiring about this and I don't think he got to implementing anything. > Anyway, as a reminder, there are a couple of issues to consider with this: > 1. there shall, properly, be only one sm at the same time > > so I think an attempt to set it when its already set > shall fail or block. I would think failing is a better solution for this. That way the second SM attempting to be started on the port can indicate that there already is an SM running on the port. > 2. when sm exits the bit shall be auto-cleared > > I guess the proper way to do it is on closing the file. Making sure the bit is cleared is indeed important. It is simple when SM exits properly. Hopefully something can occur at process cleanup time to ensure this does happen even in the case where the SM dies. Otherwise a special utility might be required to turn this off (so an OpenSM can be restarted (when #1 is implemented)). -- Hal From halr at voltaire.com Thu Jan 6 07:20:04 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 10:20:04 -0500 Subject: [openib-general] OpenSM died a horrible death In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEBAE@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6047EEBAE@mtlex01.yok.mtl.com> Message-ID: <1105024610.4645.502.camel@localhost.localdomain> On Thu, 2005-01-06 at 10:11, Eitan Zahavi wrote: > The assert are in: > > osm_lid_mgr.c:968: CL_ASSERT( p_mgr->p_subn->sm_port_guid ); > > osm_lid_mgr.c:1011: CL_ASSERT( p_mgr->p_subn->sm_port_guid ); > > osm_mcast_mgr.c:1150: CL_ASSERT( port_guid ); > > osm_port.c:977: CL_ASSERT( port_guid ); > > osm_state_mgr.c:806: CL_ASSERT( port_guid ); > > osm_state_mgr.c:866: CL_ASSERT( port_guid ); > > osm_vendor_al.c:573: CL_ASSERT( ca_guid ); > > osm_vendor_al.c:604: CL_ASSERT( p_guids ); > > osm_vendor_al.c:804: CL_ASSERT( port_guid ); > > osm_vendor_al.c:864: CL_ASSERT( port_guid ); Are you sure it's one of those ? Maybe it's one of the osm_vendor_al.c ones. It looks to me like the SGID in the SA PathRecord request is 0. That doesn't look like any of the above although it might be one of the osm_vendor_al ones. -- Hal From mst at mellanox.co.il Thu Jan 6 07:32:16 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 6 Jan 2005 17:32:16 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <1105024456.4645.499.camel@localhost.localdomain> References: <1104959952.4645.375.camel@localhost.localdomain> <20050106105346.GD25420@mellanox.co.il> <1105024456.4645.499.camel@localhost.localdomain> Message-ID: <20050106153216.GC25955@mellanox.co.il> Hello! Quoting r. Hal Rosenstock (halr at voltaire.com) "Re: [openib-general] Some Missing Features from mthca/user MAD access": > On Thu, 2005-01-06 at 05:53, Michael S. Tsirkin wrote: > > Hello, Roland! > > Quoting r. Roland Dreier (roland.list at gmail.com) "Re: [openib-general] Some Missing Features from mthca/user MAD access": > > > > 1. The SM needs the ability to write (set/clear) the 'is_sm' PortInfo > > > > capability mask bit (from user space). > > > > > > Yes, I'll implement this. > > > > Didnt Shahar already do this? > > Not as far as I know. He was inquiring about this and I don't think he > got to implementing anything. > > Anyway, as a reminder, there are a couple of issues to consider with this: > > 1. there shall, properly, be only one sm at the same time > > > > so I think an attempt to set it when its already set > > shall fail or block. > > I would think failing is a better solution for this. That way the second > SM attempting to be started on the port can indicate that there already > is an SM running on the port. What about writing 1 to a special file for this, and looking at O_NONBLOCK to decide what to do (block or fail)? For symmetry, reading will let you know if is_sm is set. > > 2. when sm exits the bit shall be auto-cleared > > > > I guess the proper way to do it is on closing the file. > > Making sure the bit is cleared is indeed important. It is simple when SM > exits properly. Hopefully something can occur at process cleanup time to > ensure this does happen even in the case where the SM dies. Otherwise a > special utility might be required to turn this off (so an OpenSM can be > restarted (when #1 is implemented)). > > -- Hal Ugh. The simplest approach I think is, keep some file open, when its closed (which happends automatically when the process dies) clean the is_sm bit. MST From halr at voltaire.com Thu Jan 6 07:27:34 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 10:27:34 -0500 Subject: [openib-general] OpenSM died a horrible death In-Reply-To: References: Message-ID: <1105025061.4645.511.camel@localhost.localdomain> On Thu, 2005-01-06 at 10:03, shaharf wrote: > Hi Tom, > > Can you send me the original mail concerning the SM horrible death? > It was corrupted in our Exchange or it was very large (over 5 MB). If > you want to send very large log files, please send it tared and > zipped. If it is only local Exchange problem (praise Bill), then > please just resend it. I am enclosing a gzip'd form of his email which should make it through. > Anyhow, I missed the exact context that it happened. From the below > email I got the impression that it occurred after get path record with > dest=null. I didn’t find any relevant assert in the code, and I also > issued synthetic path record with dest gid = 0 and it works (return > status 500). I think it is an SGID of 0 in the PathRecord request. The error message in the log came from osm/opensm/osm_sa_path_record.c: static ib_net16_t __osm_pr_rcv_get_end_points( ... if( *pp_src_port == (osm_port_t*)cl_qmap_end( &p_rcv->p_subn->port_guid_tbl ) ) { /* This 'error' is the client's fault (bad gid) so don't enter it as an error in our own log. Return an error response to the client. */ osm_log( p_rcv->p_log, OSM_LOG_VERBOSE, "__osm_pr_rcv_get_end_points: " "No source port with GUID = 0x%016" PRIx64 ".\n", cl_ntoh64( p_pr->sgid.unicast.interface_id) ); sa_status = IB_SA_MAD_STATUS_INVALID_GID; goto Exit; -- Hal -------------- next part -------------- A non-text attachment was scrubbed... Name: opensm_pathrec_crash_tduffy.gz Type: application/x-gzip Size: 145019 bytes Desc: not available URL: From halr at voltaire.com Thu Jan 6 07:34:59 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 10:34:59 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <20050106153216.GC25955@mellanox.co.il> References: <1104959952.4645.375.camel@localhost.localdomain> <20050106105346.GD25420@mellanox.co.il> <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> Message-ID: <1105025595.4645.520.camel@localhost.localdomain> On Thu, 2005-01-06 at 10:32, Michael S. Tsirkin wrote: > > Making sure the bit is cleared is indeed important. It is simple when SM > > exits properly. Hopefully something can occur at process cleanup time to > > ensure this does happen even in the case where the SM dies. Otherwise a > > special utility might be required to turn this off (so an OpenSM can be > > restarted (when #1 is implemented)). > > > > -- Hal > > Ugh. > > The simplest approach I think is, keep some file open, when its closed > (which happends automatically when the process dies) clean the is_sm bit. I was only saying that _if_ the mechanism used for this does not clear the bit during process cleanup that some (ugly) utility would be needed. I don't expect that to be the case. And yes, a special file is one solution to this. There may be others. -- Hal From roland.list at gmail.com Thu Jan 6 07:56:27 2005 From: roland.list at gmail.com (Roland Dreier) Date: Thu, 6 Jan 2005 07:56:27 -0800 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <1104987809.4645.474.camel@localhost.localdomain> References: <1104959952.4645.375.camel@localhost.localdomain> <1104987809.4645.474.camel@localhost.localdomain> Message-ID: > > > PortInfo:PortPhysicalState > > Why is this useful? > This is useful when link is not coming up: you can see what is going on > better. It replaces the need to view the LED for this. I don't understand this. The (logical) port state shows everything the LEDs show: a state of INIT means one LED is on, ACTIVE means both are on. Also, the justification for doing this in the kernel is that otherwise userspace needs to send a MAD to the local node to get this information. But so does the kernel. So why does this code really need to be in the kernel? - Roland From roland.list at gmail.com Thu Jan 6 08:01:58 2005 From: roland.list at gmail.com (Roland Dreier) Date: Thu, 6 Jan 2005 08:01:58 -0800 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <20050106153216.GC25955@mellanox.co.il> References: <1104959952.4645.375.camel@localhost.localdomain> <20050106105346.GD25420@mellanox.co.il> <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> Message-ID: > The simplest approach I think is, keep some file open, when its closed > (which happends automatically when the process dies) clean the is_sm bit. This does seem to be the simplest approach. However, there are two issues I'm still trying to figure out: - Where should the file be? Do we really want to create a bunch of issm files in /dev that only support open() and close()? I can't think of anything better, though. - How does this interact with the kernel's own use of the IsSM bit? Should ib_port_modify() fail if an attempt to set the IsSM bit is made when the bit is already sent? - Roland From halr at voltaire.com Thu Jan 6 07:56:07 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 10:56:07 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: <1104959952.4645.375.camel@localhost.localdomain> <1104987809.4645.474.camel@localhost.localdomain> Message-ID: <1105026967.4645.546.camel@localhost.localdomain> On Thu, 2005-01-06 at 10:56, Roland Dreier wrote: > I don't understand this. The (logical) port state shows everything > the LEDs show: > a state of INIT means one LED is on, ACTIVE means both are on. What if it doesn't get to INIT ? > Also, the justification for doing this in the kernel is that otherwise > userspace needs > to send a MAD to the local node to get this information. But so does > the kernel. > So why does this code really need to be in the kernel? Isn't the kernel code already obtaining PortInfo ? It seems like a minor addition to me. -- Hal From halr at voltaire.com Thu Jan 6 08:07:38 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 11:07:38 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: <1104959952.4645.375.camel@localhost.localdomain> <20050106105346.GD25420@mellanox.co.il> <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> Message-ID: <1105027658.4645.561.camel@localhost.localdomain> On Thu, 2005-01-06 at 11:01, Roland Dreier wrote: > > The simplest approach I think is, keep some file open, when its closed > > (which happends automatically when the process dies) clean the is_sm bit. > > This does seem to be the simplest approach. However, there are two issues > I'm still trying to figure out: > > - Where should the file be? Do we really want to create a bunch of issm > files in /dev that only support open() and close()? I can't think > of anything > better, though. There may be other is_xxx files too at some point. > - How does this interact with the kernel's own use of the IsSM bit? Should > ib_port_modify() fail if an attempt to set the IsSM bit is made when the bit > is already sent? The kernel has no need to set IsSM on its own; only on behalf of the SM. I think the kernel just has to be trusted on this. I don't see a way for the kernel to know whether the bit is being properly set or cleared for that matter. I would presume one has to be root from user space to set or clear this bit too so there is a level of trust there too. -- Hal From mst at mellanox.co.il Thu Jan 6 08:27:11 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 6 Jan 2005 18:27:11 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <1105027658.4645.561.camel@localhost.localdomain> References: <1104959952.4645.375.camel@localhost.localdomain> <20050106105346.GD25420@mellanox.co.il> <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> <1105027658.4645.561.camel@localhost.localdomain> Message-ID: <20050106162710.GF25955@mellanox.co.il> Hello! Quoting r. Hal Rosenstock (halr at voltaire.com) "Re: [openib-general] Some Missing Features from mthca/user MAD access": > On Thu, 2005-01-06 at 11:01, Roland Dreier wrote: > > > The simplest approach I think is, keep some file open, when its closed > > > (which happends automatically when the process dies) clean the is_sm bit. > > > > This does seem to be the simplest approach. However, there are two issues > > I'm still trying to figure out: > > > > - Where should the file be? Do we really want to create a bunch of issm > > files in /dev that only support open() and close()? I can't think > > of anything > > better, though. I wander if sysfs can be used for this somehow. > > There may be other is_xxx files too at some point. It *is* possible to reuse the umad files for this. Pass command either with an ioctl, or write/read to a special offset (force opensm to always access offset 0), or reuse some flag for open (like O_SYNC ?) ... Ugh :) . MST From iod00d at hp.com Thu Jan 6 08:27:15 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 6 Jan 2005 08:27:15 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: References: <25AE7F432672D511B8DC00B0D0DF11DA043F1957@MTIEX01> Message-ID: <20050106162715.GA22785@esmail.cup.hp.com> On Thu, Jan 06, 2005 at 01:44:39AM -0700, Stephen Poole wrote: > Remember, even Ethernet finally decided to go to Jumbo > Frames, why, system impact and more. I think jumbo frames was proposed because it was easier to implement than TCP segmentation offloading. The result is effectively the same by reducing the per message overhead. Jumbo frames also required the switches support 9K frames and my understanding is few do. And having a 2G upper limit on the message size seems far in excess of where system load would matter. Today, with mass storage, the "sweet spot" in transfer size is ~256KB. I.e. bigger sizes don't measurable reduce the system overhead. I expect IB to see similar results - possibly with even smaller message sizes. grant From roland.list at gmail.com Thu Jan 6 08:40:38 2005 From: roland.list at gmail.com (Roland Dreier) Date: Thu, 6 Jan 2005 08:40:38 -0800 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <20050106162710.GF25955@mellanox.co.il> References: <1104959952.4645.375.camel@localhost.localdomain> <20050106105346.GD25420@mellanox.co.il> <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> <1105027658.4645.561.camel@localhost.localdomain> <20050106162710.GF25955@mellanox.co.il> Message-ID: > I wander if sysfs can be used for this somehow. Not as we're discussing, because all the file operations are already set by the sysfs code. However, is it so bad to make the existing cap_mask sysfs file writable and just say that userspace has to clean up if the SM exits uncleanly? - R. From roland.list at gmail.com Thu Jan 6 08:42:54 2005 From: roland.list at gmail.com (Roland Dreier) Date: Thu, 6 Jan 2005 08:42:54 -0800 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <1105026967.4645.546.camel@localhost.localdomain> References: <1104959952.4645.375.camel@localhost.localdomain> <1104987809.4645.474.camel@localhost.localdomain> <1105026967.4645.546.camel@localhost.localdomain> Message-ID: > What if it doesn't get to INIT ? Then I don't see how either the LEDs or PortPhysState provide useful info. > Isn't the kernel code already obtaining PortInfo ? It seems like a minor > addition to me. Yes, I guess it's not so bad to add port_phys_state to struct ib_port_attr. But I'm still wondering whether it's useful at all. - R. From mshefty at ichips.intel.com Thu Jan 6 09:01:35 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 06 Jan 2005 09:01:35 -0800 Subject: [openib-general] suggestions for features Message-ID: <41DD6EEF.3080808@ichips.intel.com> While working on the CM, I came up with the following list of features that could be useful. I don't have time currently to implement any of these properly, but they're probably worth discussing. * It would be nice to be able to take a received MAD and turn it around as a send. * When reporting ib_device's (after the user calls ib_register_client), receiving the device attributes would be nice. * Having a way to access cached attributes directly from the ib_device structure would be nice for that matter. Specifically, the CM needs access to the CA GUID and cached GIDs. * An address handle cache would also be useful. - Sean From krause at cup.hp.com Thu Jan 6 08:55:12 2005 From: krause at cup.hp.com (Michael Krause) Date: Thu, 06 Jan 2005 08:55:12 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050106162715.GA22785@esmail.cup.hp.com> References: <25AE7F432672D511B8DC00B0D0DF11DA043F1957@MTIEX01> <20050106162715.GA22785@esmail.cup.hp.com> Message-ID: <6.2.0.14.2.20050106084706.02c40828@esmail.cup.hp.com> Please keep in mind that: (a) IEEE rejected jumbo frames as part of the standard. They may be implemented by many (ASIC, adapter, switch) but that is outside the scope of the specification. (b) The IETF has a new draft out that defines a connected mode of IP over IB which should enable jumbo datagrams as well as regular datagrams to be used. Connected mode provides the equivalent of TSO. (c) The objective for IP over IB should be reasonable performance / quality of implementation while the emphasis for applications should be to focus on the capabilities inherent in any RDMA capable interconnect. At 08:27 AM 1/6/2005, Grant Grundler wrote: >On Thu, Jan 06, 2005 at 01:44:39AM -0700, Stephen Poole wrote: > > Remember, even Ethernet finally decided to go to Jumbo > > Frames, why, system impact and more. > >I think jumbo frames was proposed because it was easier to implement >than TCP segmentation offloading. The result is effectively the same >by reducing the per message overhead. It did not require any significant network stack changes so the software impact was minimal. >Jumbo frames also required the switches support 9K frames and my >understanding is few do. It varies by vendors. >And having a 2G upper limit on the message size seems far in excess of >where system load would matter. Today, with mass storage, the "sweet spot" >in transfer size is ~256KB. I.e. bigger sizes don't measurable reduce the >system overhead. I expect IB to see similar results - possibly with even >smaller message sizes. Storage workloads vary by usage model so there isn't a one-size-fits-all objective. The larger message size was put into place to provide headroom as one increases link speed and data set sizes increase. However, many storage workloads make heavy use of random read / write operations as well as access to meta data. So, depending upon the mix of stream / random as well as the type of data being accessed, the impact of the message size may not be relevant. What is relevant is to enable packet based arbitration within the associated software and hardware. This allows different messages to be interleaved to the wire without resulting HOL blocking should a large message be ahead of a series of smaller messages. VL arbitration was provided to enable simple segregation but isn't sufficient since there are not enough VL to handle a diverse workload (fine for fairly simple workloads such as HPC). In any case, while it is not part of the IB specification, I provided how this should be done in hardware a few years back now and was informed that some may have implemented this according to my work at that time. Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From krause at cup.hp.com Thu Jan 6 09:05:00 2005 From: krause at cup.hp.com (Michael Krause) Date: Thu, 06 Jan 2005 09:05:00 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <25AE7F432672D511B8DC00B0D0DF11DA02985149@MTIEX01> References: <25AE7F432672D511B8DC00B0D0DF11DA02985149@MTIEX01> Message-ID: <6.2.0.14.2.20050106090212.02c14298@esmail.cup.hp.com> At 04:43 AM 1/6/2005, Diego Crupnicoff wrote: >I feel like we are talking about different things here: > >The ***IP*** MTU is relevant for IPoIB performance because it determines >the number of times that you are going to be hit by the per-packet >overhead of the ***host*** networking stack. My point was that the ***IP >MTU*** will not be tied to the ***IB*** MTU if a connected mode IPoIB (or >SDP) is used instead of the current IPoIB that uses IB UD transport >service. The IB MTU would then be irrelevant to this discussion. > >As for the eventual 2G ***IP*** MTU limit, it still sounds more than >reasonable to me. I wouldn't mind if a 10TB file gets split into some IP >packets up to 2GB?!?!? each. Keep in mind that IP has a limit on its datagram size (normal and jumbo datagrams) which is far below 2GB. IP datagrams are datagrams. Large messages are expected to use SAR across a set of datagrams to insure forward progress with minimal impact to overall performance in the event of a transmission error. >(With the exception of the UD transport service where IB messages are >limited to be single packet), the choice of ***IB*** MTU and its impact on >performance is a completely unrelated issue. IB messages are split into >packets and reassembled by the HCA HW. So the per-IB-message overhead of >the SW stack is independent of the IB MTU. The choice of IB MTU may indeed >affect performance for other reasons but it is not immediately obvious >that the largest available IB MTU is the best option for all cases. For >example, latency optimization of small high priority packets under load >may benefit from smaller IB MTUs (e.g. 256). This is best handled by VL arbitration. Changing the IB MTU to 256 for a UD based implementation would violate the IP minimum datagram size requirement. Mike > >Diego > >-----Original Message----- >From: Stephen Poole [mailto:spoole at lanl.gov] >Sent: Thursday, January 06, 2005 5:45 AM >To: Diego Crupnicoff >Cc: 'openib-general at openib.org' >Subject: RE: [openib-general] ip over ib throughtput > >Have you done any "load" analysis of a 2K .vs. 4K MTU ? Your analogy of >having 2G as a total message size is potentially flawed. You seem to >assume that 2G is the end-all in size, it is not. What about when you want >to (down the road) use IB for files in the 1-10TB in size. Granted, we can >live with 2G, but it is not some nirvana number. Second, with the 2G limit >on messages sizes, only determines the upper bound in overall size, I >could send 2G @ 32bytes MTU. So, the question is, how much less of a >system load/impact would a 4K MTU be over a 2K MTU. Remember, even >Ethernet finally decided to go to Jumbo Frames, why, system impact and >more. Remember HIPPI/GSN, the MTU was 64K, reason, system impact. The >numbers I have seen running IPoIB really impact the system. > >Steve... > >At 10:38 AM -0800 1/5/05, Diego Crupnicoff wrote: >>Note however that the relevant IB limit is the max ***message size*** >>which happens to be equal to the ***IB*** MTU for the current IPoIB (that >>runs on top of IB UD transport service where IB messages are limited to a >>single packet). >>A connected mode IPoIB (that runs on top of IB RC/UC transport service) >>would allow IB messages up to 2GB long. That will allow for much larger >>(effectively as large as you may ever dream of) ***IP*** MTUs, regardless >>of the underlying IB MTU. >>Diego >> > -----Original Message----- >> > From: Hal Rosenstock [mailto:halr at voltaire.com] >> > Sent: Wednesday, January 05, 2005 2:21 PM >> > To: Peter Buckingham >> > Cc: openib-general at openib.org >> > Subject: Re: [openib-general] ip over ib throughtput >> > >> > >> > On Wed, 2005-01-05 at 12:23, Peter Buckingham wrote: >> > > stupid question: why are we limited to a 2K MTU for IPoIB? >> > >> > The IB max MTU is 4K. The current HCAs support a max MTU of 2K. >> > >> > -- Hal >> > >> > _______________________________________________ >> > openib-general mailing list >> > openib-general at openib.org >> > >> http://openib.org/mailman/listinfo/openib-> >> general >> > >> > To >> > unsubscribe, please visit >> > >> http://openib.org/mailman/listinfo/openib-general >> > >> >>_______________________________________________ >>openib-general mailing list >>openib-general at openib.org >>http://openib.org/mailman/listinfo/openib-general >> >>To unsubscribe, please visit >>http://openib.org/mailman/listinfo/openib-general > > > >-- >Steve Poole (spoole at lanl.gov) Office: >505.665.9662 >Los Alamos National >Laboratory Cell: 505.699.3807 >CCN - Special Projects / Advanced >Development Fax: 505.665.7793 >P.O. Box 1663, MS B255 >Los Alamos, NM. 87545 >03149801S > >_______________________________________________ >openib-general mailing list >openib-general at openib.org >http://openib.org/mailman/listinfo/openib-general > >To unsubscribe, please visit >http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From rminnich at lanl.gov Thu Jan 6 09:10:18 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Thu, 6 Jan 2005 10:10:18 -0700 (MST) Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050106162715.GA22785@esmail.cup.hp.com> References: <25AE7F432672D511B8DC00B0D0DF11DA043F1957@MTIEX01> <20050106162715.GA22785@esmail.cup.hp.com> Message-ID: On Thu, 6 Jan 2005, Grant Grundler wrote: > Jumbo frames also required the switches support 9K frames and > my understanding is few do. and lest we forget, there is (I am told) still the issue of running for 32 days or so and then asking for 2 physically contiguous pages :-) jumbo frames just didn't pan out it seems. kron From mst at mellanox.co.il Thu Jan 6 09:38:55 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 6 Jan 2005 19:38:55 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: <1104959952.4645.375.camel@localhost.localdomain> <20050106105346.GD25420@mellanox.co.il> <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> <1105027658.4645.561.camel@localhost.localdomain> <20050106162710.GF25955@mellanox.co.il> Message-ID: <20050106173855.GB26303@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland.list at gmail.com) "Re: [openib-general] Some Missing Features from mthca/user MAD access": > > I wander if sysfs can be used for this somehow. > > Not as we're discussing, because all the file operations are already set by > the sysfs code. I know, I was thinking about modifying the f_ops and calling back to the original. A bit ugly ... > However, is it so bad to make the existing cap_mask sysfs file writable and > just say that userspace has to clean up if the SM exits uncleanly? > > - R. Yes, I think it is. It involves catching CTRL-C in the application and other such horror, and it never works 100%. And what about running to opensms on the same HCA? I think it is clearly kernel's job to handle synchronisation and do cleanups when application exits. After consideration, I think the proper way is add a reference count and clean is_sm when it falls to 0. This way runnning two opensms on the same HCA and two different HCAs in the same subnet behaves the same. To do this, I think either and ioctl on umad, or a flag to open to set this bit is not too bad though. MST From shaharf at voltaire.com Thu Jan 6 09:53:59 2005 From: shaharf at voltaire.com (shaharf) Date: Thu, 6 Jan 2005 19:53:59 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access Message-ID: > Hello, Roland! > Quoting r. Roland Dreier (roland.list at gmail.com) "Re: [openib-general] > Some Missing Features from mthca/user MAD access": > > > 1. The SM needs the ability to write (set/clear) the 'is_sm' PortInfo > > > capability mask bit (from user space). > > > > Yes, I'll implement this. > > Didnt Shahar already do this? No I didn't. The gen2 opensm doesn't set the IS SM bit for now. > Anyway, as a reminder, there are a couple of issues to consider with this: > 1. there shall, properly, be only one sm at the same time > > so I think an attempt to set it when its already set > shall fail or block. > > 2. when sm exits the bit shall be auto-cleared > > I guess the proper way to do it is on closing the file. > > HTH > mst I agree with Michael that it would be nice of the kernel to coordinate this and to clean it automatically if (and when) the SM fails. How ever, to Roland's question, no, it is not critical. I can try to clean it up when exiting. If the process will be killed, the cleanup process will not happen. This is not critical, but it may delay other SM from taking over. They would attempt to ping the node with SMINFO until they timeout (SM depended) and then they would take over. This may repeat every heavy sweep, so it would be nice to have some sort of cleaning mechanism. I am not sure what is so bad with having a file controlling it (and if it is closed, cleaning it automatically). Alternate cleaning mechanisms may be a small local agent that will probe (using sminfo) the local SM and will clean this bit once it stops responding. This is feasible (a small script will do), but I am not sure it is cleaner then a sysfs file. Shahar From shaharf at voltaire.com Thu Jan 6 10:02:36 2005 From: shaharf at voltaire.com (shaharf) Date: Thu, 6 Jan 2005 20:02:36 +0200 Subject: FW: [openib-general] Some Missing Features from mthca/user MAD access Message-ID: > Yes, I guess it's not so bad to add port_phys_state to struct > ib_port_attr. > But I'm still wondering whether it's useful at all. > > - R. You are correct that this is not critical. The Logical state is enough for most cases. It is just cleaner for the umad library to check the Phys state to select a port and not the Logical state, because the last one can (at least theoretically) be transiently DOWN. Physical state is the one that I really want to check. As I already say, it is not critical. Shahar From shaharf at voltaire.com Thu Jan 6 10:05:36 2005 From: shaharf at voltaire.com (shaharf) Date: Thu, 6 Jan 2005 20:05:36 +0200 Subject: [openib-general] OpenSM died a horrible death Message-ID: Hi Tom, Are you able to reproduce this problem? If you are I would like you to reproduce it will full verbosity (-V). If you can't or the scenario is not consistent, please tell me too. It might direct us to some other directions. Shahar -------------- next part -------------- An HTML attachment was scrubbed... URL: From tduffy at sun.com Thu Jan 6 10:09:52 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 06 Jan 2005 10:09:52 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050106103939.GC25420@mellanox.co.il> References: <1104959829.26324.38.camel@duffman> <20050106103939.GC25420@mellanox.co.il> Message-ID: <1105034992.14325.9.camel@duffman> On Thu, 2005-01-06 at 12:39 +0200, Michael S. Tsirkin wrote: > I wander what 0000: is for? Anyway, I added support for names format > 0000:xx:xx.x just for convenience. > But its not a real issue. Cool, thanks. > By the way, looking at drivers/pci/proc.c it seems that domains>0 are not > really supported in linux yet. Do you see 8100 in a first column in > /proc/bus/pci/devices, too? > If not, could you cat /proc/bus/pci/devices please? > Please try sending it as an attachment, your mailer seems to wrap lines. I thought I preformatted it, oh well. It is attached. > > tat:~# ./mstflint -d 81:00.0 q > > Bus error > > Interesting. Maybe mmap does not work as it should? > Could you run it under gdb and do a backtrace? I also added > a sanity checks on mmap result, maybe that will help us > see what is the problem. tat:~# gdb ./mstflint GNU gdb 6.3-debian Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "sparc-linux"...Using host libthread_db library "/lib/libthread_db.so.1". (gdb) run -d 81:00.0 q Starting program: /root/mstflint -d 81:00.0 q warning: linux_test_for_tracefork: unexpected result from waitpid (10830, status 0xb7f) Program received signal SIGBUS, Bus error. 0x00011400 in mread4 (mf=0x2c050, offset=984060, value=0xeffff1cc) at mtcr.h:355 355 mtcr.h: No such file or directory. in mtcr.h (gdb) bt #0 0x00011400 in mread4 (mf=0x2c050, offset=984060, value=0xeffff1cc) at mtcr.h:355 #1 0x00011b24 in Flash::open (this=0xeffff6e8, device=0x2c050 "") at flint.cpp:909 #2 0x00017554 in main (ac=4, av=0xeffffda4) at flint.cpp:3589 > Hmm. I think I forgot about endian-ness for the /proc/bus/pci case. > I fixed that, could you try again please? > > If that does not help, could you please locate the line > > #if 1 > > around flint.cpp line 297 , and change this to #if 0? > > This will turn on lots of messages on each memory access. this looks ok except for the Board ID. tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q Image type: FailSafe Chip rev.: A1 GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 50d0000100c90200 Board ID: guoCC ra -- Tom Duffy -------------- next part -------------- 0000 108e8000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0008 108e1000 0 1fff0000000 1fff1000000 0 0 0 0 1ff81000001 1000000 800000 0 0 0 0 1000000 0009 108e1001 7af260 1ff80008000 0 0 0 0 0 1ff82000001 8000 0 0 0 0 0 1000000 0018 1000000f 7af240 1fe02010401 1ff80010000 1ff80012000 0 0 0 0 100 100 1000 0 0 0 0 sym53c8xx 0019 1000000f 7af300 1fe02010801 1ff80014000 1ff80016000 0 0 0 0 100 100 1000 0 0 0 0 sym53c8xx 8000 108e8000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8008 15b35a46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8100 15b35a44 7aee40 1ff00100004 0 1ff0080000c 0 1ff0800000c 0 0 100000 0 800000 0 8000000 0 0 ib_mthca -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From iod00d at hp.com Thu Jan 6 10:12:31 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 6 Jan 2005 10:12:31 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: References: <25AE7F432672D511B8DC00B0D0DF11DA043F1957@MTIEX01> <20050106162715.GA22785@esmail.cup.hp.com> Message-ID: <20050106181231.GF22785@esmail.cup.hp.com> On Thu, Jan 06, 2005 at 10:10:18AM -0700, Ronald G. Minnich wrote: > and lest we forget, there is (I am told) still the issue of running for 32 > days or so and then asking for 2 physically contiguous pages :-) That's a limitation of linux. Linux drivers assume physically contigous pages are available for anything that crosses a page boundary. KISS when it works but not robust. FWIW, I had the impression most arches now can support bigger page sizes. mips and ia64 implement bigger pages today. I thought ppc, sparc, i386, and x86-64 could also support pages sizes > 4k but am not really sure about all those. grant From rminnich at lanl.gov Thu Jan 6 10:15:42 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Thu, 6 Jan 2005 11:15:42 -0700 (MST) Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050106181231.GF22785@esmail.cup.hp.com> References: <25AE7F432672D511B8DC00B0D0DF11DA043F1957@MTIEX01> <20050106162715.GA22785@esmail.cup.hp.com> <20050106181231.GF22785@esmail.cup.hp.com> Message-ID: On Thu, 6 Jan 2005, Grant Grundler wrote: > That's a limitation of linux. Linux drivers assume physically > contigous pages are available for anything that crosses > a page boundary. KISS when it works but not robust. yeah, I know, freebsd never had this problem ... > FWIW, I had the impression most arches now can support bigger page sizes. > mips and ia64 implement bigger pages today. I thought ppc, sparc, > i386, and x86-64 could also support pages sizes > 4k but am not really > sure about all those. 386 at least will let you play with 4m and 2m pages. x86-64 IIRC will let you do 2m pages. On the soft tlb machines you can pretty much do what you like on that score. ron From halr at voltaire.com Thu Jan 6 10:10:53 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 13:10:53 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <20050106173855.GB26303@mellanox.co.il> References: <1104959952.4645.375.camel@localhost.localdomain> <20050106105346.GD25420@mellanox.co.il> <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> <1105027658.4645.561.camel@localhost.localdomain> <20050106162710.GF25955@mellanox.co.il> <20050106173855.GB26303@mellanox.co.il> Message-ID: <1105034860.4653.24.camel@localhost.localdomain> On Thu, 2005-01-06 at 12:38, Michael S. Tsirkin wrote: > After consideration, I think the proper way is add a reference count > and clean is_sm when it falls to 0. Why is a reference count needed ? (Just want to understand). > This way runnning two opensms on the same HCA and two different > HCAs in the same subnet behaves the same. Aren't the different SMs on different ports of the same or different HCA and the IsSM bit is per port ? What am I missing ? -- Hal From roland.list at gmail.com Thu Jan 6 10:23:44 2005 From: roland.list at gmail.com (Roland Dreier) Date: Thu, 6 Jan 2005 10:23:44 -0800 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <20050106173855.GB26303@mellanox.co.il> References: <1104959952.4645.375.camel@localhost.localdomain> <20050106105346.GD25420@mellanox.co.il> <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> <1105027658.4645.561.camel@localhost.localdomain> <20050106162710.GF25955@mellanox.co.il> <20050106173855.GB26303@mellanox.co.il> Message-ID: > I know, I was thinking about modifying the f_ops and calling > back to the original. A bit ugly ... Keep in mind that we should be implementing solutions that are acceptable upstream... > Yes, I think it is. It involves catching CTRL-C in the application > and other such horror, and it never works 100%. > And what about running to opensms on the same HCA? > I think it is clearly kernel's job to handle synchronisation and do cleanups > when application exits. OK, we can have a file for controlling capability bits. > After consideration, I think the proper way is add a reference count > and clean is_sm when it falls to 0. > This way runnning two opensms on the same HCA and two different > HCAs in the same subnet behaves the same. I don't understand this. IsSM is per-port, so what does it mean for the reference count of IsSM for a port to be 2? Two SMs are running on that port? > To do this, I think either and ioctl on umad, or > a flag to open to set this bit is not too bad though. I don't like either the ioctl() or a magic flag for open(). I'm trying to decide between a special issm file, or changing the umad file interface to put a command code in the structure that is passed via write() (this would also let us add a mechanism for canceling MADs). - R. From mst at mellanox.co.il Thu Jan 6 10:28:21 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 6 Jan 2005 20:28:21 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <1105034992.14325.9.camel@duffman> References: <1105034992.14325.9.camel@duffman> Message-ID: <20050106182821.GF26357@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: mstflint failing on sparc64": > On Thu, 2005-01-06 at 12:39 +0200, Michael S. Tsirkin wrote: > > I wander what 0000: is for? Anyway, I added support for names format > > 0000:xx:xx.x just for convenience. > > But its not a real issue. > > Cool, thanks. > > > By the way, looking at drivers/pci/proc.c it seems that domains>0 are > not > > really supported in linux yet. Do you see 8100 in a first column in > > /proc/bus/pci/devices, too? > > If not, could you cat /proc/bus/pci/devices please? > > Please try sending it as an attachment, your mailer seems to wrap > lines. > > I thought I preformatted it, oh well. It is attached. Well, I see regular 8100 there, where does lspci get another 0000: ? Its a mystery. > > > tat:~# ./mstflint -d 81:00.0 q > > > Bus error > > > > Interesting. Maybe mmap does not work as it should? > > Could you run it under gdb and do a backtrace? I also added > > a sanity checks on mmap result, maybe that will help us > > see what is the problem. > > tat:~# gdb ./mstflint > GNU gdb 6.3-debian > Copyright 2004 Free Software Foundation, Inc. > GDB is free software, covered by the GNU General Public License, and you > are > welcome to change it and/or distribute copies of it under certain > conditions. > Type "show copying" to see the conditions. > There is absolutely no warranty for GDB. Type "show warranty" for > details. > This GDB was configured as "sparc-linux"...Using host libthread_db > library "/lib/libthread_db.so.1". > > (gdb) run -d 81:00.0 q > Starting program: /root/mstflint -d 81:00.0 q > warning: linux_test_for_tracefork: unexpected result from waitpid > (10830, status 0xb7f) > > Program received signal SIGBUS, Bus error. > 0x00011400 in mread4 (mf=0x2c050, offset=984060, value=0xeffff1cc) > at mtcr.h:355 > 355 mtcr.h: No such file or directory. > in mtcr.h > (gdb) bt > #0 0x00011400 in mread4 (mf=0x2c050, offset=984060, value=0xeffff1cc) > at mtcr.h:355 > #1 0x00011b24 in Flash::open (this=0xeffff6e8, device=0x2c050 "") > at flint.cpp:909 > #2 0x00017554 in main (ac=4, av=0xeffffda4) at flint.cpp:3589 Crashes on access to mapped memory. Could you print mf->ptr and offset at that point? Generally, do yo happend to know if mmapping /dev/mem to userspace works on this architecture? [... snip ...] > this looks ok except for the Board ID. > > tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q > Image type: FailSafe > Chip rev.: A1 > GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 > 50d0000100c90200 > Board ID: guoCC ra But on x86 it looks right? Thats not in mtcr, that will be flint code proper. I'll look at it the net week, I 'm sure its nothing critical. > > -- > Tom Duffy > > > > begin 600 devices Woa , uuencode, haven't seen that for a while. mst From halr at voltaire.com Thu Jan 6 10:19:40 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 13:19:40 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: <1104959952.4645.375.camel@localhost.localdomain> <1104987809.4645.474.camel@localhost.localdomain> <1105026967.4645.546.camel@localhost.localdomain> Message-ID: <1105035580.4653.50.camel@localhost.localdomain> On Thu, 2005-01-06 at 11:42, Roland Dreier wrote: > > What if it doesn't get to INIT ? > > Then I don't see how either the LEDs or PortPhysState provide useful info. I miswrote. What I meant to say is that the port gets to INIT but does not proceed to ACTIVE despite the SM trying to move it ahead through ARMED and then to ACTIVE but the port comes back as INIT. It helps to see what might be going on with the link state machine and what the problem might be. -- Hal From krause at cup.hp.com Thu Jan 6 10:31:09 2005 From: krause at cup.hp.com (Michael Krause) Date: Thu, 06 Jan 2005 10:31:09 -0800 Subject: [openib-general] Sockets Extensions Completed Message-ID: <6.2.0.14.2.20050106102850.02039200@esmail.cup.hp.com> FYI.....The specification can be found at: http://www.opengroup.org/bookstore/catalog/c050.htm Use of this new interface will enable Sockets based applications to fully exploit the performance of RDMA interconnects through the SDP wire protocol. This API also provides explicit memory management taking some of the guesswork out of this thorny problem which can result in some performance loss and implementation complexity within the SDP layer. Mike Extended Sockets API (ES-API), Issue 1.0 The Extended Sockets API (ES-API) Technical Standard provides extensions to the traditional socket API to support improved efficiency in network programming. The ES-API includes: synchronous IO and control operations on sockets; event queue-based management of asynchronous operations; and pre-registering of memory regions that will be the subject of IO operations. These facilities are intended to support: improved efficiency when dealing with high numbers of socket file descriptors; 'zero-copy' transmit and receive operations; and improved buffer management. The ES-API also includes routines that provide asynchronous IO and control operations, asynchronous operation management, and memory registration functions for applications manipulating sockets. Bibliographic Details Consortium Specifications Catalog number C050 ISBN 1931624526 Jan 2005 OO. 72 pages. -------------- next part -------------- An HTML attachment was scrubbed... URL: From roland.list at gmail.com Thu Jan 6 10:34:46 2005 From: roland.list at gmail.com (Roland Dreier) Date: Thu, 6 Jan 2005 10:34:46 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050106182821.GF26357@mellanox.co.il> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> Message-ID: > Well, I see regular 8100 there, where does lspci get another 0000: ? > Its a mystery. The first 4 digits are the PCI domain. Some large machines have multiple completely independent PCI hierarchies, so just bus/device/function does not suffice to identify a device. For example, I have a p630 system with three PCI domains, each of which has a different device at 21:01.0, so I have: 0000:21:01.0 Ethernet controller: Intel Corp. 82557/8/9 [Ethernet Pro 100] (rev 0d) 0001:21:01.0 SCSI storage controller: LSI Logic / Symbios Logic 53c875 (rev 03) 0002:21:01.0 Ethernet controller: Intel Corp. 82557/8/9 [Ethernet Pro 100] (rev 0d) - Roland From mst at mellanox.co.il Thu Jan 6 10:43:12 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 6 Jan 2005 20:43:12 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: <20050106105346.GD25420@mellanox.co.il> <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> <1105027658.4645.561.camel@localhost.localdomain> <20050106162710.GF25955@mellanox.co.il> <20050106173855.GB26303@mellanox.co.il> Message-ID: <20050106184312.GA26634@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland.list at gmail.com) "Re: [openib-general] Some Missing Features from mthca/user MAD access": > > Yes, I think it is. It involves catching CTRL-C in the application > > and other such horror, and it never works 100%. > > And what about running to opensms on the same HCA? > > I think it is clearly kernel's job to handle synchronisation and do cleanups > > when application exits. > > OK, we can have a file for controlling capability bits. > > > After consideration, I think the proper way is add a reference count > > and clean is_sm when it falls to 0. > > This way runnning two opensms on the same HCA and two different > > HCAs in the same subnet behaves the same. > > I don't understand this. IsSM is per-port, so what does it mean for the > reference count of IsSM for a port to be 2? Two SMs are running on that > port? I am trying to say it could be transparent. you could be running two sms and it could work more or less. So for example opensm hangs. If I kill it, it will clear the is_sm bit, *but* I dont want that. The way to do it cold be to start a new one, then kill the old one. If userspace wants exclusivity there are standard interfaces for this like flock , we should nto enforce policty I think. > > To do this, I think either and ioctl on umad, or > > a flag to open to set this bit is not too bad though. > > I don't like either the ioctl() or a magic flag for open(). I'm > trying to decide > between a special issm file, or changing the umad file interface to put a > command code in the structure that is passed via write() (this would also > let us add a mechanism for canceling MADs). > > - R. issm file lets you get the current issm status and so find out if someone is running sm, in a clean way. So I am for it. "everything is a file". MST From mst at mellanox.co.il Thu Jan 6 10:44:49 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 6 Jan 2005 20:44:49 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> Message-ID: <20050106184449.GB26634@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland.list at gmail.com) "Re: [openib-general] Re: mstflint failing on sparc64": > > Well, I see regular 8100 there, where does lspci get another 0000: ? > > Its a mystery. > > The first 4 digits are the PCI domain. Some large machines have multiple > completely independent PCI hierarchies, so just bus/device/function does > not suffice to identify a device. I know. But where does lspci get the domain number? > For example, I have a p630 system with three > PCI domains, each of which has a different device at 21:01.0, so I have: > > 0000:21:01.0 Ethernet controller: Intel Corp. 82557/8/9 [Ethernet > Pro 100] (rev 0d) > 0001:21:01.0 SCSI storage controller: LSI Logic / Symbios Logic > 53c875 (rev 03) > 0002:21:01.0 Ethernet controller: Intel Corp. 82557/8/9 [Ethernet > Pro 100] (rev 0d) > > - Roland Cool, how do *they* look in /proc/bus/pci/devices? Can you send that file? mst From roland.list at gmail.com Thu Jan 6 10:49:23 2005 From: roland.list at gmail.com (Roland Dreier) Date: Thu, 6 Jan 2005 10:49:23 -0800 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <1105035580.4653.50.camel@localhost.localdomain> References: <1104959952.4645.375.camel@localhost.localdomain> <1104987809.4645.474.camel@localhost.localdomain> <1105026967.4645.546.camel@localhost.localdomain> <1105035580.4653.50.camel@localhost.localdomain> Message-ID: > I miswrote. What I meant to say is that the port gets to INIT but does > not proceed to ACTIVE despite the SM trying to move it ahead through > ARMED and then to ACTIVE but the port comes back as INIT. It helps to > see what might be going on with the link state machine and what the > problem might be. I guess I'm still missing something, because you have just as much chance to catch the logical state in DOWN as seeing the physical state in Polling (if the logical state is INIT then the phys state will always be LinkUp). In any case I added a phys_state attribute in sysfs because I guess it can't hurt. - R. From roland.list at gmail.com Thu Jan 6 10:50:16 2005 From: roland.list at gmail.com (Roland Dreier) Date: Thu, 6 Jan 2005 10:50:16 -0800 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <20050106184312.GA26634@mellanox.co.il> References: <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> <1105027658.4645.561.camel@localhost.localdomain> <20050106162710.GF25955@mellanox.co.il> <20050106173855.GB26303@mellanox.co.il> <20050106184312.GA26634@mellanox.co.il> Message-ID: > I am trying to say it could be transparent. you could be running > two sms and it could work more or less. > So for example opensm hangs. If I kill it, it will clear the > is_sm bit, *but* I dont want that. > The way to do it cold be to start a new one, then kill > the old one. How can two SMs on the same port work? When an SMInfo query comes in who replies? How do they exchange SMInfo messages between them? - R. From mst at mellanox.co.il Thu Jan 6 10:55:19 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 6 Jan 2005 20:55:19 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> <1105027658.4645.561.camel@localhost.localdomain> <20050106162710.GF25955@mellanox.co.il> <20050106173855.GB26303@mellanox.co.il> <20050106184312.GA26634@mellanox.co.il> Message-ID: <20050106185519.GE26634@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland.list at gmail.com) "Re: [openib-general] Some Missing Features from mthca/user MAD access": > > I am trying to say it could be transparent. you could be running > > two sms and it could work more or less. > > So for example opensm hangs. If I kill it, it will clear the > > is_sm bit, *but* I dont want that. > > The way to do it cold be to start a new one, then kill > > the old one. > > How can two SMs on the same port work? When an SMInfo query comes in > who replies? How do they exchange SMInfo messages between them? > > - R. They dont have to work, for example I can CTRL-Z one of them and start another one. If opensm wants exclusivity it can flock. MST From halr at voltaire.com Thu Jan 6 10:47:37 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 13:47:37 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <20050106184312.GA26634@mellanox.co.il> References: <20050106105346.GD25420@mellanox.co.il> <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> <1105027658.4645.561.camel@localhost.localdomain> <20050106162710.GF25955@mellanox.co.il> <20050106173855.GB26303@mellanox.co.il> <20050106184312.GA26634@mellanox.co.il> Message-ID: <1105037257.4653.79.camel@localhost.localdomain> On Thu, 2005-01-06 at 13:43, Michael S. Tsirkin wrote: > I am trying to say it could be transparent. you could be running > two sms and it could work more or less. I am not 100% sure that the SM state machine works for 2 SMs with the same port GUID and priority. I think there may also an issue in the MAD layer API in terms of this in terms of receiving SMInfos and getting them to the correct SM. If this (running 2 SMs on the same port) is important, I can look into this further. -- Hal From roland.list at gmail.com Thu Jan 6 10:55:19 2005 From: roland.list at gmail.com (Roland Dreier) Date: Thu, 6 Jan 2005 10:55:19 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050106184449.GB26634@mellanox.co.il> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> <20050106184449.GB26634@mellanox.co.il> Message-ID: > I know. But where does lspci get the domain number? >From sysfs -- lspci goes through the entries in /sys/bus/pci/devices. If you strace lspci on a modern distro, you can see it doesn't open anything in /proc. > Cool, how do *they* look in /proc/bus/pci/devices? As you can see from show_device in drivers/pci/proc.c, the domain number is not listed in /proc/bus/pci/devices. So that interface is not useful on multi-domain systems. - R. From halr at voltaire.com Thu Jan 6 10:53:19 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 13:53:19 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: <1104959952.4645.375.camel@localhost.localdomain> <1104987809.4645.474.camel@localhost.localdomain> <1105026967.4645.546.camel@localhost.localdomain> <1105035580.4653.50.camel@localhost.localdomain> Message-ID: <1105037599.4653.85.camel@localhost.localdomain> On Thu, 2005-01-06 at 13:49, Roland Dreier wrote: > I guess I'm still missing something, because you have just as much chance > to catch the logical state in DOWN as seeing the physical state in Polling Also, if it doesn't get to init, phys state might be disabled. There are other cases where this will be useful as another piece of information. > (if the logical state is INIT then the phys state will always be LinkUp). Right. No value in that case (or when logical state is ACTIVE). > In any case I added a phys_state attribute in sysfs because I guess it > can't hurt. Right, it can't hurt :-) It may be a diagnostic aid in some broken cases. Thanks. -- Hal From roland.list at gmail.com Thu Jan 6 11:24:36 2005 From: roland.list at gmail.com (Roland Dreier) Date: Thu, 6 Jan 2005 11:24:36 -0800 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <20050106185519.GE26634@mellanox.co.il> References: <1105024456.4645.499.camel@localhost.localdomain> <1105027658.4645.561.camel@localhost.localdomain> <20050106162710.GF25955@mellanox.co.il> <20050106173855.GB26303@mellanox.co.il> <20050106184312.GA26634@mellanox.co.il> <20050106185519.GE26634@mellanox.co.il> Message-ID: > They dont have to work, for example I can CTRL-Z one of them > and start another one. Unfortunately this won't work with the current MAD layer. The first SM will register an agent to receive SM class MADs, and the second SM will fail because the agent is already registered. - R. From mshefty at ichips.intel.com Thu Jan 6 11:35:37 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 06 Jan 2005 11:35:37 -0800 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: <1105024456.4645.499.camel@localhost.localdomain> <1105027658.4645.561.camel@localhost.localdomain> <20050106162710.GF25955@mellanox.co.il> <20050106173855.GB26303@mellanox.co.il> <20050106184312.GA26634@mellanox.co.il> <20050106185519.GE26634@mellanox.co.il> Message-ID: <41DD9309.1040403@ichips.intel.com> Roland Dreier wrote: >>They dont have to work, for example I can CTRL-Z one of them >>and start another one. > > > Unfortunately this won't work with the current MAD layer. The first SM > will register an agent to receive SM class MADs, and the second SM will > fail because the agent is already registered. One of them can register to snoop MADs, but they still need to coordinate who responds to what. From Timothy.St.Clair at ge.com Thu Jan 6 12:28:15 2005 From: Timothy.St.Clair at ge.com (St. Clair, Timothy (GE Healthcare)) Date: Thu, 6 Jan 2005 14:28:15 -0600 Subject: [openib-general] Examples... Message-ID: <92D492E734699D4FA001B1DA2FBD420701CA3B5E@MKEMLVEM05.e2k.ad.ge.com> Are there any code examples + docs available for the additions to the 2.6 kernel updates. I am somewhat familiar with the VAPI interface from Mellanox, but I am uncertain what changes or modifications may be necessary given the new additions. Also, are you aware of any docs which help to explain "how-to-use" the VAPI interface. Mellanox provides docs on VAPI, but I have yet to see any clean examples. Regards, Timothy St. Clair From roland.list at gmail.com Thu Jan 6 12:33:32 2005 From: roland.list at gmail.com (Roland Dreier) Date: Thu, 6 Jan 2005 12:33:32 -0800 Subject: [openib-general] Examples... In-Reply-To: <92D492E734699D4FA001B1DA2FBD420701CA3B5E@MKEMLVEM05.e2k.ad.ge.com> References: <92D492E734699D4FA001B1DA2FBD420701CA3B5E@MKEMLVEM05.e2k.ad.ge.com> Message-ID: > Are there any code examples + docs available for the additions to the 2.6 kernel updates. All of the code that I know of is checked in to the subversion tree under https://openib.org/svn/gen2/trunk However this should provide lots of examples on using the kernel verbs. In particular the IPoIB driver makes use of nearly everything. In addition the code is commented with kerneldocs comments, so "make htmldocs" will provide some API reference. - Roland From mshefty at ichips.intel.com Thu Jan 6 12:46:15 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 06 Jan 2005 12:46:15 -0800 Subject: [openib-general] SRQ field in CM messages Message-ID: <41DDA397.5050708@ichips.intel.com> I've been coding the CM messages, and just setting the SRQ field in them based on whether a QP has a SRQ. My guess is that this will work fine, but my question is does anyone know why the CM or remote QP cares about this at all? I want to make sure that I'm not missing something here. - Sean From krause at cup.hp.com Thu Jan 6 12:48:46 2005 From: krause at cup.hp.com (Michael Krause) Date: Thu, 06 Jan 2005 12:48:46 -0800 Subject: [openib-general] Re: IPoIB Path Static Rate In-Reply-To: <1103392724.4214.1221.camel@localhost.localdomain> References: <1103230507.4327.224.camel@localhost.localdomain> <527jnhrfaj.fsf@topspin.com> <1103347112.4214.795.camel@localhost.localdomain> <521xdnobgv.fsf@topspin.com> <1103388127.4214.1218.camel@localhost.localdomain> <52wtvfmqxn.fsf@topspin.com> <1103392724.4214.1221.camel@localhost.localdomain> Message-ID: <6.2.0.14.2.20050106124710.0207d958@esmail.cup.hp.com> At 09:58 AM 12/18/2004, Hal Rosenstock wrote: >On Sat, 2004-12-18 at 12:55, Roland Dreier wrote: > > Surely link width and/or speed can't change without the port state > > changing, can they? As I understand it, the link layer can't > > renegotiate this sort of thing without bringing the link down. In > > which case ULPs only need to refresh their rate information when they > > get one of the existing port state change events. > >Yes, port state change is sufficient to take care of this. > > > (If the link rate can change without any notice, then static rate for > > RC is meaningless since a link could change from 4X to 1X without > > disturbing existing connections). Keep in mind that unless one is monitoring all of the intermediate port states, then this can change without it being noticed by the CA port if does not change. Same would apply if a switch fabric were reconfigured such that a LID took a new path through the fabric and the rate was impacted by either link width change or signaling rate change. Static rate needs to understand the entire end-to-end path and whenever it is updated to be effective. For IP over IB using UD, there are many paths which can be taken so it is not clear what would be an appropriate IPD if one path the data rate is 500 MB/s and on another it is 6GB/s. Should this be dominated by the lowest path speed or should one pursue VL arbitration to segregate this type of workload based on what the endnode believes is the proper QoS? IPD does not really work for UD in the end and our intention with the technology was to avoid trying to bandwidth manage UD other than through VL / switch port arbitration policies. Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From Diego at Mellanox.com Thu Jan 6 12:55:55 2005 From: Diego at Mellanox.com (Diego Crupnicoff) Date: Thu, 6 Jan 2005 12:55:55 -0800 Subject: [openib-general] SRQ field in CM messages Message-ID: <25AE7F432672D511B8DC00B0D0DF11DA02985150@MTIEX01> This bit was added to the CM protocol so that the remote side QP can distinguish between a SRQ and a TCA that does not generate e2e credits. Thanks, Diego > -----Original Message----- > From: Sean Hefty [mailto:mshefty at ichips.intel.com] > Sent: Thursday, January 06, 2005 5:46 PM > To: openib-general > Subject: [openib-general] SRQ field in CM messages > > > I've been coding the CM messages, and just setting the SRQ field in > them based on whether a QP has a SRQ. My guess is that this > will work > fine, but my question is does anyone know why the CM or > remote QP cares > about this at all? I want to make sure that I'm not missing > something > here. > > - Sean > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-> general > > To > unsubscribe, please visit > http://openib.org/mailman/listinfo/openib-general > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mshefty at ichips.intel.com Thu Jan 6 13:10:49 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 06 Jan 2005 13:10:49 -0800 Subject: [openib-general] SRQ field in CM messages In-Reply-To: <25AE7F432672D511B8DC00B0D0DF11DA02985150@MTIEX01> References: <25AE7F432672D511B8DC00B0D0DF11DA02985150@MTIEX01> Message-ID: <41DDA959.6020201@ichips.intel.com> Diego Crupnicoff wrote: > This bit was added to the CM protocol so that the remote side QP can > distinguish between a SRQ and a TCA that does not generate e2e credits. > > Thanks, > > Diego thanks From ftillier at infiniconsys.com Thu Jan 6 13:36:11 2005 From: ftillier at infiniconsys.com (Fab Tillier) Date: Thu, 6 Jan 2005 13:36:11 -0800 Subject: [openib-general] Re: IPoIB Path Static Rate In-Reply-To: <521xdnobgv.fsf@topspin.com> Message-ID: <000201c4f437$be5a15d0$655aa8c0@infiniconsys.com> > From: Roland Dreier [mailto:roland at topspin.com] > Sent: Saturday, December 18, 2004 7:47 AM > > I don't object in principle to doing this right, it just seems like a > fair bit of work to write code to retrieve the local PortInfo to get > the active link speed and link width so that we can calculate our > local rate and get the right IPD. > > To solve this, do you think it makes sense to add the active link > speed and link width to struct ib_port_attr so that it's easy for ULPs > to get them? Otherwise ULPs would have to do their own PortInfo queries. > Why not just let clients specify the static rate in the AV, rather than the IPD, and have the HCA driver figure out the right IPD based on information it can easily cache? - Fab From mst at mellanox.co.il Thu Jan 6 13:44:02 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 6 Jan 2005 23:44:02 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <1105037257.4653.79.camel@localhost.localdomain> References: <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> <1105027658.4645.561.camel@localhost.localdomain> <20050106162710.GF25955@mellanox.co.il> <20050106173855.GB26303@mellanox.co.il> <20050106184312.GA26634@mellanox.co.il> <1105037257.4653.79.camel@localhost.localdomain> Message-ID: <20050106214402.GA26926@mellanox.co.il> Hello! Quoting r. Hal Rosenstock (halr at voltaire.com) "Re: [openib-general] Some Missing Features from mthca/user MAD access": > On Thu, 2005-01-06 at 13:43, Michael S. Tsirkin wrote: > > I am trying to say it could be transparent. you could be running > > two sms and it could work more or less. > > I am not 100% sure that the SM state machine works for 2 SMs with the > same port GUID and priority. > > I think there may also an issue in the MAD layer API in terms of this in > terms of receiving SMInfos and getting them to the correct SM. > > If this (running 2 SMs on the same port) is important, I can look into > this further. > > -- Hal Well, I was thinking for things like failover it could be nice. Or another example, I thought it would be nice if I could do all kind of queries for diagnostic purposes, without the need to integrate them directly into the SM code. Nothing specific, though. mst From tduffy at sun.com Thu Jan 6 13:42:24 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 06 Jan 2005 13:42:24 -0800 Subject: [openib-general] OpenSM died a horrible death In-Reply-To: <1104973382.4645.464.camel@localhost.localdomain> References: <1104963701.26324.54.camel@duffman> <1104973382.4645.464.camel@localhost.localdomain> Message-ID: <1105047744.14325.44.camel@duffman> On Wed, 2005-01-05 at 20:03 -0500, Hal Rosenstock wrote: > Do you know what was going on on the subnet at the time ? Did a end node > SA client request a PathRecord with a SGID of 0 but turn the component > mask bit for SGID on ? Running the subnet with opensm exposed a bug on the Solaris side that caused a kernel panic. One of the Solaris engineers was bouncing the machine a bunch trying to reproduce/fix this issue. I am not sure about what messages were being sent on the wire when this happened as I was not at either machine. > Also, out of curiousity, what were the options that OpenSM was started > with ? Just -v. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From rminnich at lanl.gov Thu Jan 6 13:43:58 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Thu, 6 Jan 2005 14:43:58 -0700 (MST) Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050106182821.GF26357@mellanox.co.il> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> Message-ID: On Thu, 6 Jan 2005, Michael S. Tsirkin wrote: > Well, I see regular 8100 there, where does lspci get another 0000: ? > Its a mystery. that's the pci domain stuff. Turns out on newer machines you can have multiple pci configuration domains. Oh joy :-) ron From iod00d at hp.com Thu Jan 6 13:43:26 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 6 Jan 2005 13:43:26 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> <20050106184449.GB26634@mellanox.co.il> Message-ID: <20050106214326.GA23985@esmail.cup.hp.com> On Thu, Jan 06, 2005 at 10:55:19AM -0800, Roland Dreier wrote: > > I know. But where does lspci get the domain number? > > >From sysfs -- lspci goes through the entries in /sys/bus/pci/devices. > If you strace lspci on a modern distro, you can see it doesn't open > anything in /proc. That's an important distinction: PCI Domains are only supported under 2.6 kernels. lspci will fall back to /proc if /sys is not available. BTW, Matthew Wilcox just submitted a minor fix to pciutils regarding domain support. grant From tduffy at sun.com Thu Jan 6 13:47:15 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 06 Jan 2005 13:47:15 -0800 Subject: [openib-general] OpenSM died a horrible death In-Reply-To: References: Message-ID: <1105048035.14325.48.camel@duffman> On Thu, 2005-01-06 at 20:05 +0200, shaharf wrote: > Hi Tom, > > Are you able to reproduce this problem? If you are I would like you > to reproduce it will full verbosity (-V). If you can’t or the scenario > is not consistent, please tell me too. It might direct us to some > other directions. Well, I have not seen it today. The bug on Solaris was fixed, so it is no longer crashing. I can't be 100% sure that this was what was happening, but I will turn opensm on with -V from now on so I can capture any info if it happens again. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mst at mellanox.co.il Thu Jan 6 13:50:17 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 6 Jan 2005 23:50:17 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> <20050106184449.GB26634@mellanox.co.il> Message-ID: <20050106215017.GB26926@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland.list at gmail.com) "Re: [openib-general] Re: mstflint failing on sparc64": > > I know. But where does lspci get the domain number? > > >From sysfs -- lspci goes through the entries in /sys/bus/pci/devices. > If you strace lspci on a modern distro, you can see it doesn't open > anything in /proc. > > > Cool, how do *they* look in /proc/bus/pci/devices? > > As you can see from show_device in drivers/pci/proc.c, the domain number > is not listed in /proc/bus/pci/devices. So that interface is not useful on > multi-domain systems. > > - R. Yep, I just thought I missed something. So /proc/bus/pci/devices is broken - I thought so too, from kernel source its clear. MST From mst at mellanox.co.il Thu Jan 6 13:52:57 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 6 Jan 2005 23:52:57 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050106182821.GF26357@mellanox.co.il> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> Message-ID: <20050106215257.GC26926@mellanox.co.il> Hello! Quoting r. Michael S. Tsirkin (mst at mellanox.co.il) "[openib-general] Re: mstflint failing on sparc64": > > > > tat:~# ./mstflint -d 81:00.0 q > > > > Bus error > > > > > > Interesting. Maybe mmap does not work as it should? > > > Could you run it under gdb and do a backtrace? I also added > > > a sanity checks on mmap result, maybe that will help us > > > see what is the problem. > > > > tat:~# gdb ./mstflint > > GNU gdb 6.3-debian > > Copyright 2004 Free Software Foundation, Inc. > > GDB is free software, covered by the GNU General Public License, and you > > are > > welcome to change it and/or distribute copies of it under certain > > conditions. > > Type "show copying" to see the conditions. > > There is absolutely no warranty for GDB. Type "show warranty" for > > details. > > This GDB was configured as "sparc-linux"...Using host libthread_db > > library "/lib/libthread_db.so.1". > > > > (gdb) run -d 81:00.0 q > > Starting program: /root/mstflint -d 81:00.0 q > > warning: linux_test_for_tracefork: unexpected result from waitpid > > (10830, status 0xb7f) > > > > Program received signal SIGBUS, Bus error. > > 0x00011400 in mread4 (mf=0x2c050, offset=984060, value=0xeffff1cc) > > at mtcr.h:355 > > 355 mtcr.h: No such file or directory. > > in mtcr.h > > (gdb) bt > > #0 0x00011400 in mread4 (mf=0x2c050, offset=984060, value=0xeffff1cc) > > at mtcr.h:355 > > #1 0x00011b24 in Flash::open (this=0xeffff6e8, device=0x2c050 "") > > at flint.cpp:909 > > #2 0x00017554 in main (ac=4, av=0xeffffda4) at flint.cpp:3589 > > > Crashes on access to mapped memory. > Could you print mf->ptr and offset at that point? > Generally, do yo happend to know if mmapping /dev/mem > to userspace works on this architecture? > > [... snip ...] Tom, if you can try it before the weekend I'll be thankful, I am working on Sundays, but I dont have a sparc. mst From trimmer at infiniconsys.com Thu Jan 6 13:53:38 2005 From: trimmer at infiniconsys.com (Rimmer, Todd) Date: Thu, 6 Jan 2005 16:53:38 -0500 Subject: [openib-general] Re: IPoIB Path Static Rate Message-ID: <5D78D28F88822E4D8702BB9EEF1A43670A0496@mercury.infiniconsys.com> > -----Original Message----- > From: Tillier, Fabian > Sent: Thursday, January 06, 2005 4:36 PM > To: 'Roland Dreier'; 'Hal Rosenstock' > Cc: openib-general at openib.org > Subject: RE: [openib-general] Re: IPoIB Path Static Rate > > > > From: Roland Dreier [mailto:roland at topspin.com] > > Sent: Saturday, December 18, 2004 7:47 AM > > > > I don't object in principle to doing this right, it just > seems like a > > fair bit of work to write code to retrieve the local PortInfo to get > > the active link speed and link width so that we can calculate our > > local rate and get the right IPD. > > > > To solve this, do you think it makes sense to add the active link > > speed and link width to struct ib_port_attr so that it's > easy for ULPs > > to get them? Otherwise ULPs would have to do their own > PortInfo queries. > > > > Why not just let clients specify the static rate in the AV, > rather than the > IPD, and have the HCA driver figure out the right IPD based > on information > it can easily cache? > > - Fab Yes, that would better align with the information the CM and the applications would have available to them from the SA (both CM and SA packets use Static Rate, not IPD). Also IPD can be hardware dependent, for example mt23108 silicon uses a single bit rather than a IPD value. So it would be most efficient to translate only once (eg. from Static rate available in Path Record or CM REQ to what ever format the hardware used for Static Rate/IPD). Todd R. > > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit > http://openib.org/mailman/listinfo/openib-general > From mst at mellanox.co.il Thu Jan 6 13:57:52 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 6 Jan 2005 23:57:52 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> Message-ID: <20050106215752.GD26926@mellanox.co.il> Hello! Quoting r. Ronald G. Minnich (rminnich at lanl.gov) "Re: [openib-general] Re: mstflint failing on sparc64": > > > On Thu, 6 Jan 2005, Michael S. Tsirkin wrote: > > > Well, I see regular 8100 there, where does lspci get another 0000: ? > > Its a mystery. > > that's the pci domain stuff. Turns out on newer machines you can have > multiple pci configuration domains. Oh joy :-) > > ron Yes, I guessed. I wander why is this done - to enable >256 devices? MST From halr at voltaire.com Thu Jan 6 14:17:07 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 17:17:07 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <20050106214402.GA26926@mellanox.co.il> References: <1105024456.4645.499.camel@localhost.localdomain> <20050106153216.GC25955@mellanox.co.il> <1105027658.4645.561.camel@localhost.localdomain> <20050106162710.GF25955@mellanox.co.il> <20050106173855.GB26303@mellanox.co.il> <20050106184312.GA26634@mellanox.co.il> <1105037257.4653.79.camel@localhost.localdomain> <20050106214402.GA26926@mellanox.co.il> Message-ID: <1105049827.4653.109.camel@localhost.localdomain> On Thu, 2005-01-06 at 16:44, Michael S. Tsirkin wrote: > Well, I was thinking for things like failover it could be nice. I would think failover is more reliable with SMs on different machines but this is a conceivable scenario. I for one need to convince myself that the SM state machine works fine for this (2 SMs with same GUID and priority). If that is OK, then there are some OpenIB issues to look at. Not sure how easy they are to solve. > Or another example, I thought it would be nice if I could > do all kind of queries for diagnostic purposes, > without the need to integrate them directly into the SM code. This can be and is being done. What does this have to do with IsSM ? -- Hal From tduffy at sun.com Thu Jan 6 14:34:12 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 06 Jan 2005 14:34:12 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050106182821.GF26357@mellanox.co.il> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> Message-ID: <1105050852.14325.57.camel@duffman> On Thu, 2005-01-06 at 20:28 +0200, Michael S. Tsirkin wrote: > Crashes on access to mapped memory. > Could you print mf->ptr and offset at that point? (gdb) print mf->ptr $1 = (void *) 0x70304000 (gdb) print offset $2 = 984060 > Generally, do yo happend to know if mmapping /dev/mem > to userspace works on this architecture? I can't imagine that it would not. I will see if I can dig info up. The one thing that is weird on sparc64 is that the pci bus is virtually (not physically) addressed. I don't know if you take that into account. > > this looks ok except for the Board ID. > > > > tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q > > Image type: FailSafe > > Chip rev.: A1 > > GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 > > 50d0000100c90200 > > Board ID: guoCC ra > > But on x86 it looks right? Thats not in mtcr, that will be > flint code proper. I'll look at it the net week, I 'm sure > its nothing critical. On x86-64/Tavor, it looks like: [root at sins-stinger-10 ~]# ./mstflint -d 04:00.0 q Image type: FailSafe Chip rev.: A1 GUIDs: 0002c901097624c0 0002c901097624c1 0002c901097624c2 0002c9000100d050 Board ID: Cougar Card On x86-64/Arbel, it looks like: [root at flopteron2 bin]# /root/mstflint -d 06:00.0 q Image type: FailSafe Chip rev.: A0 GUIDs: 0002c9010a99e030 0002c9010a99e031 0002c9010a99e032 0002c9000100d050 Board ID: no Board ID. > > begin 600 devices > > Woa , uuencode, haven't seen that for a while. It was mime text/plain base64 going out for me... -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From halr at voltaire.com Thu Jan 6 14:57:26 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 17:57:26 -0500 Subject: [openib-general] OpenSM died a horrible death In-Reply-To: <1105047744.14325.44.camel@duffman> References: <1104963701.26324.54.camel@duffman> <1104973382.4645.464.camel@localhost.localdomain> <1105047744.14325.44.camel@duffman> Message-ID: <1105052074.4653.140.camel@localhost.localdomain> > On Wed, 2005-01-05 at 20:03 -0500, Hal Rosenstock wrote: > > Did an end node > > SA client request a PathRecord with a SGID of 0 but turn the component > > mask bit for SGID on ? Shahar tried this (and also DGID 0) as a test cases and OpenSM responded just fine with an error response and did not doubly free some memory nor die a horrible death. So this message does not provide a clue as to what caused this. Hopefully this can be reproduced so it can be understood what is going on in OpenSM. -- Hal From roland.list at gmail.com Thu Jan 6 15:26:13 2005 From: roland.list at gmail.com (Roland Dreier) Date: Thu, 6 Jan 2005 15:26:13 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <1105050852.14325.57.camel@duffman> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> <1105050852.14325.57.camel@duffman> Message-ID: > > Generally, do yo happend to know if mmapping /dev/mem > > to userspace works on this architecture? > I can't imagine that it would not. I will see if I can dig info up. > The one thing that is weird on sparc64 is that the pci bus is virtually > (not physically) addressed. I don't know if you take that into account. Actually I would suspect that it doesn't. If you look at drivers/char/mem.c, you can see that there's nothing there to set up the IOMMU, so I don't think access to PCI space will work -- a simple remap_pfn_range won't work (sparc64 doesn't even define pgprot_noncached). - R. From roland at topspin.com Thu Jan 6 15:31:33 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 06 Jan 2005 15:31:33 -0800 Subject: [openib-general] Sockets Extensions Completed In-Reply-To: <6.2.0.14.2.20050106102850.02039200@esmail.cup.hp.com> (Michael Krause's message of "Thu, 06 Jan 2005 10:31:09 -0800") References: <6.2.0.14.2.20050106102850.02039200@esmail.cup.hp.com> Message-ID: <52y8f616ei.fsf@topspin.com> Michael> Use of this new interface will enable Sockets based Michael> applications to fully exploit the performance of RDMA Michael> interconnects through the SDP wire protocol. This API Michael> also provides explicit memory management taking some of Michael> the guesswork out of this thorny problem which can result Michael> in some performance loss and implementation complexity Michael> within the SDP layer. What are your plans for adding support to the Linux kernel and glibc? - Roland From jjengla at sandia.gov Thu Jan 6 15:57:39 2005 From: jjengla at sandia.gov (Josh England) Date: Thu, 06 Jan 2005 15:57:39 -0800 Subject: [openib-general] Sockets Extensions Completed In-Reply-To: <6.2.0.14.2.20050106102850.02039200@esmail.cup.hp.com> References: <6.2.0.14.2.20050106102850.02039200@esmail.cup.hp.com> Message-ID: <1105055859.1352.209.camel@localhost> Is it the API that is completed, or is there an implementation written already? -JE On Thu, 2005-01-06 at 10:31 -0800, Michael Krause wrote: > > FYI.....The specification can be found at: > > http://www.opengroup.org/bookstore/catalog/c050.htm > > Use of this new interface will enable Sockets based applications to > fully exploit the performance of RDMA interconnects through the SDP > wire protocol. This API also provides explicit memory management > taking some of the guesswork out of this thorny problem which can > result in some performance loss and implementation complexity within > the SDP layer. > > Mike > > > > > > Extended Sockets API (ES-API), Issue 1.0 > The Extended Sockets API (ES-API) Technical Standard provides > extensions to the traditional socket API to support improved > efficiency in network programming. The ES-API includes: synchronous IO > and control operations on sockets; event queue-based management of > asynchronous operations; and pre-registering of memory regions that > will be the subject of IO operations. These facilities are intended to > support: improved efficiency when dealing with high numbers of socket > file descriptors; 'zero-copy' transmit and receive operations; and > improved buffer management. The ES-API also includes routines that > provide asynchronous IO and control operations, asynchronous operation > management, and memory registration functions for applications > manipulating sockets. > > > > Bibliographic Details > Consortium Specifications > > Catalog number C050 > ISBN 1931624526 > Jan 2005 > > OO. 72 pages. > > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general From tduffy at sun.com Thu Jan 6 16:05:34 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 06 Jan 2005 16:05:34 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050106215257.GC26926@mellanox.co.il> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> <20050106215257.GC26926@mellanox.co.il> Message-ID: <1105056334.14325.66.camel@duffman> On Thu, 2005-01-06 at 23:52 +0200, Michael S. Tsirkin wrote: > Tom, if you can try it before the weekend I'll be thankful, > I am working on Sundays, but I dont have a sparc. I took the plunge and tried to flash the firmware, and it took! tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q Image type: FailSafe Chip rev.: A1 GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 50d0000100c90200 Board ID: guoCC ra tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 -i 3-3-2.bin b Image type: FailSafe Chip rev.: A1 GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 50d0000100c90200 Board ID: guoCC ra Burn image with follow GUIDs: Node: d05f760901c90200 Port1: d15f760901c90200 Port2: d25f760901c90200 Sys.Image: 50d0000100c90200 Read and verify Invariant Sector - OK Read and verify PPS/SPS in flash - OK Burning Secondary FW image without signatures - OK Restoring Secondary signature - OK Burning Primary FW image without signatures - OK Restoring Primary signature - OK # more /sys/class/infiniband/mthca0/fw_ver 3.3.2 so, cool. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From iod00d at hp.com Thu Jan 6 16:18:15 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 6 Jan 2005 16:18:15 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> <1105050852.14325.57.camel@duffman> Message-ID: <20050107001815.GD23985@esmail.cup.hp.com> On Thu, Jan 06, 2005 at 03:26:13PM -0800, Roland Dreier wrote: > > > Generally, do yo happend to know if mmapping /dev/mem > > > to userspace works on this architecture? > > > I can't imagine that it would not. I will see if I can dig info up. > > The one thing that is weird on sparc64 is that the pci bus is virtually > > (not physically) addressed. I don't know if you take that into account. > > Actually I would suspect that it doesn't. If you look at drivers/char/mem.c, > you can see that there's nothing there to set up the IOMMU, so I don't > think access to PCI space will work -- a simple remap_pfn_range won't work > (sparc64 doesn't even define pgprot_noncached). IOMMU is only relevant for DMA. I read Tom's reply to mean the host access PCI bus involves a tranlation as well. e.g a 32-bit bus address is mapped above 4GB in the host physical address space. ergo reading the BAR values won't give one the physical address one needs to access and program device registers. grant From tduffy at sun.com Thu Jan 6 16:22:53 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 06 Jan 2005 16:22:53 -0800 Subject: [openib-general] [PATCH] ibstatus script quickfix Message-ID: <1105057373.14325.70.camel@duffman> If certain fields do not exist on the node you are running ibstatus script on, like when Roland adds a new one and you haven't upgraded yet, have ibstatus behave better. Signed-off-by: Tom Duffy Index: gen2/trunk/src/userspace/management/diags/host/scripts/ibstatus =================================================================== --- gen2/trunk/src/userspace/management/diags/host/scripts/ibstatus (revision 1492) +++ gen2/trunk/src/userspace/management/diags/host/scripts/ibstatus (working copy) @@ -25,12 +25,12 @@ port_status() { port_dir="$infiniband_base/$1/ports/$2" echo "Infiniband device '$1' port $2 status:" - echo " default gid: " `cat $port_dir/gids/0` - echo " base lid: " `cat $port_dir/lid` - echo " sm lid: " `cat $port_dir/sm_lid` - echo " state: " `cat $port_dir/state` - echo " phys state: " `cat $port_dir/phys_state` - echo " rate: " `cat $port_dir/rate` + echo " default gid: " `[ -r $port_dir/gids/0 ] && cat $port_dir/gids/0 || echo unknown` + echo " base lid: " `[ -r $port_dir/lid ] && cat $port_dir/lid || echo unknown` + echo " sm lid: " `[ -r $port_dir/sm_lid ] && cat $port_dir/sm_lid || echo unknown` + echo " state: " `[ -r $port_dir/state ] && cat $port_dir/state || echo unknown` + echo " phys state: " `[ -r $port_dir/phys_state ] && cat $port_dir/phys_state || echo unknown` + echo " rate: " `[ -r $port_dir/rate ] && cat $port_dir/rate || echo unknown` echo } -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From iod00d at hp.com Thu Jan 6 16:56:15 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 6 Jan 2005 16:56:15 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52fz1g3ck0.fsf@topspin.com> References: <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> Message-ID: <20050107005615.GF23985@esmail.cup.hp.com> On Tue, Jan 04, 2005 at 05:11:11PM -0800, Roland Dreier wrote: > Grant> I'll see how hard it would be to try it with tg3. > > My previous patch seems like it won't work (need MSGINT_MODE_ENABLE > set too, according to http://www.ussg.iu.edu/hypermail/linux/kernel/0301.3/0123.html) I've applied this one and your previous patch and it's still not working. The system is hanging after the "MSI INIT SUCCESFUL" message. I've talked with the HP person who worked on MSI support for ia64 and she didn't name a device/driver that she knew for sure worked on ia64/ZX1. (I had explicitly asked for one). She read the above email and mentioned that's probably why tg3 didn't work for her last Feb. My guess is ia64 MSI support is somewhat broken. :( I'll update the firmware but won't try openib with MSI until I can get it working with tg3 (or some other device) first. thanks, grant From halr at voltaire.com Thu Jan 6 19:39:38 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 06 Jan 2005 22:39:38 -0500 Subject: [openib-general] [PATCH] ibstatus script quickfix In-Reply-To: <1105057373.14325.70.camel@duffman> References: <1105057373.14325.70.camel@duffman> Message-ID: <1105069178.4653.149.camel@localhost.localdomain> On Thu, 2005-01-06 at 19:22, Tom Duffy wrote: > If certain fields do not exist on the node you are running ibstatus > script on, like when Roland adds a new one and you haven't upgraded yet, > have ibstatus behave better. > > Signed-off-by: Tom Duffy Thanks. Applied. Patch is line wrapped but I got the idea. BTW, have you tried ibstat in this scenario ? Thanks. -- Hal From Tom.Duffy at Sun.COM Thu Jan 6 21:47:23 2005 From: Tom.Duffy at Sun.COM (Tom Duffy) Date: Thu, 06 Jan 2005 21:47:23 -0800 Subject: [openib-general] [PATCH] ibstatus script quickfix In-Reply-To: <1105069178.4653.149.camel@localhost.localdomain> References: <1105057373.14325.70.camel@duffman> <1105069178.4653.149.camel@localhost.localdomain> Message-ID: <1105076843.25968.1.camel@duffman> On Thu, 2005-01-06 at 22:39 -0500, Hal Rosenstock wrote: > Thanks. Applied. Patch is line wrapped but I got the idea. Damn, WTF is going on with evolution. It looked unwrapped on my end. > BTW, have you tried ibstat in this scenario ? Yeah, it fails. I was going to look at it tomorrow. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mst at mellanox.co.il Fri Jan 7 03:39:04 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Fri, 7 Jan 2005 13:39:04 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050107001815.GD23985@esmail.cup.hp.com> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> <1105050852.14325.57.camel@duffman> <20050107001815.GD23985@esmail.cup.hp.com> Message-ID: <20050107113904.GB2231@mellanox.co.il> Hello! Quoting r. Grant Grundler (iod00d at hp.com) "Re: [openib-general] Re: mstflint failing on sparc64": > On Thu, Jan 06, 2005 at 03:26:13PM -0800, Roland Dreier wrote: > > > > Generally, do yo happend to know if mmapping /dev/mem > > > > to userspace works on this architecture? > > > > > I can't imagine that it would not. I will see if I can dig info up. > > > The one thing that is weird on sparc64 is that the pci bus is virtually > > > (not physically) addressed. I don't know if you take that into account. > > > > Actually I would suspect that it doesn't. If you look at drivers/char/mem.c, > > you can see that there's nothing there to set up the IOMMU, so I don't > > think access to PCI space will work -- a simple remap_pfn_range won't work > > (sparc64 doesn't even define pgprot_noncached). > > IOMMU is only relevant for DMA. I read Tom's reply to mean the host > access PCI bus involves a tranlation as well. e.g a 32-bit bus address > is mapped above 4GB in the host physical address space. > ergo reading the BAR values won't give one the physical address one > needs to access and program device registers. > > grant So PCI addresses are different from physical addresses, and /dev/mem deals with physical addresses, right? If that's the case, changing mmapped access to pread/pwrite wont help either? So is there a way to get at the pci bus from userspace on that platform? mst From torben.mathiasen at hp.com Fri Jan 7 04:04:51 2005 From: torben.mathiasen at hp.com (Torben Mathiasen) Date: Fri, 7 Jan 2005 13:04:51 +0100 Subject: [openib-general] Re: InfiniBand MAD device number request In-Reply-To: <52brcce5b9.fsf@topspin.com> References: <52brcce5b9.fsf@topspin.com> Message-ID: <20050107120451.GK4592@linux2> On Wed, Dec 29 2004, Roland Dreier wrote: > The InfiniBand drivers just merged into the 2.6 tree add a character > device for userspace to send and receive InfiniBand "management > datagrams" (MADs) for each port of each InfiniBand device. Current > documentation recommends that these character devices be named > /dev/infiniband/umad0, /dev/infiniband/umad1, etc. > > Please assign a major number for these devices. How many minors do you guys need? char majors are very scarce, so if you know how many you need, we can make the best possible assignment. Thanks, Torben From halr at voltaire.com Fri Jan 7 07:07:43 2005 From: halr at voltaire.com (Hal Rosenstock) Date: Fri, 7 Jan 2005 10:07:43 -0500 Subject: [openib-general] Initial OpenIB Architecture Message-ID: <000b01c4f4ca$b2715740$6601a8c0@Gripen> Hi, Here are some slides on the initial OpenIB architecture put together by some of the developers. This also can be found as https://openib.org/svn/gen2/trunk/arch/OpenIB-Arch-041221.pdf Comments welcome. -- Hal -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: OpenIB Arch 041221.pdf Type: application/pdf Size: 140626 bytes Desc: not available URL: From halr at voltaire.com Fri Jan 7 07:08:29 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 07 Jan 2005 10:08:29 -0500 Subject: [openib-general] [PATCH] ibstatus script quickfix In-Reply-To: <1105076843.25968.1.camel@duffman> References: <1105057373.14325.70.camel@duffman> <1105069178.4653.149.camel@localhost.localdomain> <1105076843.25968.1.camel@duffman> Message-ID: <1105110509.4653.711.camel@localhost.localdomain> On Fri, 2005-01-07 at 00:47, Tom Duffy wrote: > On Thu, 2005-01-06 at 22:39 -0500, Hal Rosenstock wrote: > > Thanks. Applied. Patch is line wrapped but I got the idea. > > Damn, WTF is going on with evolution. It looked unwrapped on my end. Guess it was at my end then :-( > > BTW, have you tried ibstat in this scenario ? > > Yeah, it fails. I was going to look at it tomorrow. If by failing, you mean it returns no information. The umad library returns an error and the ibstat command is currently terminated if any errors occur. -- Hal From krause at cup.hp.com Fri Jan 7 07:12:37 2005 From: krause at cup.hp.com (Michael Krause) Date: Fri, 07 Jan 2005 07:12:37 -0800 Subject: [openib-general] Sockets Extensions Completed In-Reply-To: <1105055859.1352.209.camel@localhost> References: <6.2.0.14.2.20050106102850.02039200@esmail.cup.hp.com> <1105055859.1352.209.camel@localhost> Message-ID: <6.2.0.14.2.20050107070626.02e44ba8@esmail.cup.hp.com> At 03:57 PM 1/6/2005, Josh England wrote: >Is it the API that is completed, or is there an implementation written >already? The API specification has been completed so now people can implement if there is interest. The API is part of the Unix branding effort done within the OpenGroup and is available to all for free. Given the desire to implement open standards within the open source community, this would seem like a logical API to support on Linux. How this is actually started / implemented on Linux is an open question. My main reason for providing the spec notification availability here is that the socket extensions when combined with SDP will provide optimum performance when used in conjunction with RDMA interconnects while providing a fairly familiar interface to most network application writers. For those that have implemented MPI over Sockets (not all have done this), this would also provide a cleaner mapping and still allow transparent access to RDMA with minimum performance impact. Mike >-JE > >On Thu, 2005-01-06 at 10:31 -0800, Michael Krause wrote: > > > > FYI.....The specification can be found at: > > > > http://www.opengroup.org/bookstore/catalog/c050.htm > > > > Use of this new interface will enable Sockets based applications to > > fully exploit the performance of RDMA interconnects through the SDP > > wire protocol. This API also provides explicit memory management > > taking some of the guesswork out of this thorny problem which can > > result in some performance loss and implementation complexity within > > the SDP layer. > > > > Mike > > > > > > > > > > > > Extended Sockets API (ES-API), Issue 1.0 > > The Extended Sockets API (ES-API) Technical Standard provides > > extensions to the traditional socket API to support improved > > efficiency in network programming. The ES-API includes: synchronous IO > > and control operations on sockets; event queue-based management of > > asynchronous operations; and pre-registering of memory regions that > > will be the subject of IO operations. These facilities are intended to > > support: improved efficiency when dealing with high numbers of socket > > file descriptors; 'zero-copy' transmit and receive operations; and > > improved buffer management. The ES-API also includes routines that > > provide asynchronous IO and control operations, asynchronous operation > > management, and memory registration functions for applications > > manipulating sockets. > > > > > > > > Bibliographic Details > > Consortium Specifications > > > > Catalog number C050 > > ISBN 1931624526 > > Jan 2005 > > > > OO. 72 pages. > > > > _______________________________________________ > > openib-general mailing list > > openib-general at openib.org > > http://openib.org/mailman/listinfo/openib-general > > > > To unsubscribe, please visit > http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From halr at voltaire.com Fri Jan 7 07:12:27 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 07 Jan 2005 10:12:27 -0500 Subject: [openib-general] [PATCH] ibstatus script quickfix In-Reply-To: <1105057373.14325.70.camel@duffman> References: <1105057373.14325.70.camel@duffman> Message-ID: <1105110632.4653.717.camel@localhost.localdomain> On Thu, 2005-01-06 at 19:22, Tom Duffy wrote: > If certain fields do not exist on the node you are running ibstatus > script on, like when Roland adds a new one and you haven't upgraded yet, > have ibstatus behave better. BTW, I think it's the other way 'round: When ibstatus is updated for a new sysfs attribute and the provider has not been (or does not support this which I would hope would not be the case). In the former case, it might be a more "transient" issue. -- Hal From vonwyl at EIG.UNIGE.CH Fri Jan 7 07:54:55 2005 From: vonwyl at EIG.UNIGE.CH (von Wyl Marc) Date: Fri, 07 Jan 2005 16:54:55 +0100 Subject: [openib-general] openIB + RTAI, kernel freezing... Message-ID: <41DEB0CF.2030800@eig.unige.ch> Hi, I tryed to install the RTAI 3.1 (www.rtai.og) and openIB gen1 patchs on a 2.6.7 kernel to see if it is possible to communicate with the VAPI using hard realtime process. Fortunatly, the patching, compilation and installation succeeded without any problem. But when I try to run : > modprobe ib_tavor the kernel freeze or reboot... And it looks like that without this module I can't start the VAPI. I know that trying to install different patchs like this two could cause a a lot of problems, but does anyone has an idea why it is this module that cause the problem? Thanks... From iod00d at hp.com Fri Jan 7 09:17:38 2005 From: iod00d at hp.com (Grant Grundler) Date: Fri, 7 Jan 2005 09:17:38 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050107113904.GB2231@mellanox.co.il> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> <1105050852.14325.57.camel@duffman> <20050107001815.GD23985@esmail.cup.hp.com> <20050107113904.GB2231@mellanox.co.il> Message-ID: <20050107171738.GA28289@esmail.cup.hp.com> On Fri, Jan 07, 2005 at 01:39:04PM +0200, Michael S. Tsirkin wrote: > So PCI addresses are different from physical addresses, Yes, they can be. My point was the addreses mappings can be 1:1 in one direction but not 1:1 in the other. It's platform specific. > and /dev/mem deals with physical addresses, right? > If that's the case, changing mmapped access to pread/pwrite > wont help either? TBH, I don't really know. Frame buffer support in XF86 must be dealing with this issue. > So is there a way to get at the pci bus from userspace > on that platform? Only thing consistent is PCI config space - assuming the PCI bus numbers don't change. Look at pciutils to see how and what it supports. hth, grant From tduffy at sun.com Fri Jan 7 09:57:46 2005 From: tduffy at sun.com (Tom Duffy) Date: Fri, 07 Jan 2005 09:57:46 -0800 Subject: [openib-general] [PATCH] ibstatus script quickfix In-Reply-To: <1105110509.4653.711.camel@localhost.localdomain> References: <1105057373.14325.70.camel@duffman> <1105069178.4653.149.camel@localhost.localdomain> <1105076843.25968.1.camel@duffman> <1105110509.4653.711.camel@localhost.localdomain> Message-ID: <1105120666.9528.5.camel@duffman> On Fri, 2005-01-07 at 10:08 -0500, Hal Rosenstock wrote: > If by failing, you mean it returns no information. The umad library > returns an error and the ibstat command is currently terminated if any > errors occur. It returns without any indication. It may have an not 0 return, but I didn't check. I will take a look and make sure something is at least printed out indicating a failure condition. -tduffy -- Tom Duffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From tduffy at sun.com Fri Jan 7 10:07:20 2005 From: tduffy at sun.com (Tom Duffy) Date: Fri, 07 Jan 2005 10:07:20 -0800 Subject: [openib-general] [PATCH] ibstatus script quickfix In-Reply-To: <1105110632.4653.717.camel@localhost.localdomain> References: <1105057373.14325.70.camel@duffman> <1105110632.4653.717.camel@localhost.localdomain> Message-ID: <1105121241.9528.8.camel@duffman> On Fri, 2005-01-07 at 10:12 -0500, Hal Rosenstock wrote: > On Thu, 2005-01-06 at 19:22, Tom Duffy wrote: > > If certain fields do not exist on the node you are running ibstatus > > script on, like when Roland adds a new one and you haven't upgraded yet, > > have ibstatus behave better. > > BTW, I think it's the other way 'round: When ibstatus is updated for a > new sysfs attribute and the provider has not been (or does not support > this which I would hope would not be the case). In the former case, it > might be a more "transient" issue. You are, of course, correct. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From jjengla at sandia.gov Fri Jan 7 11:03:47 2005 From: jjengla at sandia.gov (Josh England) Date: Fri, 07 Jan 2005 11:03:47 -0800 Subject: [openib-general] Sockets Extensions Completed In-Reply-To: <6.2.0.14.2.20050107070626.02e44ba8@esmail.cup.hp.com> References: <6.2.0.14.2.20050106102850.02039200@esmail.cup.hp.com> <1105055859.1352.209.camel@localhost> <6.2.0.14.2.20050107070626.02e44ba8@esmail.cup.hp.com> Message-ID: <1105124627.1352.224.camel@localhost> This is probably not the right forum, but how would you say the ES-API compares with DAPL? -JE On Fri, 2005-01-07 at 07:12 -0800, Michael Krause wrote: > At 03:57 PM 1/6/2005, Josh England wrote: > > Is it the API that is completed, or is there an implementation > > written already? > > The API specification has been completed so now people can implement > if there is interest. The API is part of the Unix branding effort > done within the OpenGroup and is available to all for free. Given the > desire to implement open standards within the open source community, > this would seem like a logical API to support on Linux. How this is > actually started / implemented on Linux is an open question. My main > reason for providing the spec notification availability here is that > the socket extensions when combined with SDP will provide optimum > performance when used in conjunction with RDMA interconnects while > providing a fairly familiar interface to most network application > writers. For those that have implemented MPI over Sockets (not all > have done this), this would also provide a cleaner mapping and still > allow transparent access to RDMA with minimum performance impact. > > Mike > > > > -JE > > > > On Thu, 2005-01-06 at 10:31 -0800, Michael Krause wrote: > > > > > > FYI.....The specification can be found at: > > > > > > http://www.opengroup.org/bookstore/catalog/c050.htm > > > > > > Use of this new interface will enable Sockets based applications > > to > > > fully exploit the performance of RDMA interconnects through the > > SDP > > > wire protocol. This API also provides explicit memory management > > > taking some of the guesswork out of this thorny problem which can > > > result in some performance loss and implementation complexity > > within > > > the SDP layer. > > > > > > Mike > > > > > > > > > > > > > > > > > > Extended Sockets API (ES-API), Issue 1.0 > > > The Extended Sockets API (ES-API) Technical Standard provides > > > extensions to the traditional socket API to support improved > > > efficiency in network programming. The ES-API includes: > > synchronous IO > > > and control operations on sockets; event queue-based management of > > > asynchronous operations; and pre-registering of memory regions > > that > > > will be the subject of IO operations. These facilities are > > intended to > > > support: improved efficiency when dealing with high numbers of > > socket > > > file descriptors; 'zero-copy' transmit and receive operations; and > > > improved buffer management. The ES-API also includes routines that > > > provide asynchronous IO and control operations, asynchronous > > operation > > > management, and memory registration functions for applications > > > manipulating sockets. > > > > > > > > > > > > Bibliographic Details > > > Consortium Specifications > > > > > > Catalog number C050 > > > ISBN 1931624526 > > > Jan 2005 > > > > > > OO. 72 pages. > > > > > > _______________________________________________ > > > openib-general mailing list > > > openib-general at openib.org > > > http://openib.org/mailman/listinfo/openib-general > > > > > > To unsubscribe, please visit > > http://openib.org/mailman/listinfo/openib-general From mshefty at ichips.intel.com Fri Jan 7 12:00:08 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Fri, 07 Jan 2005 12:00:08 -0800 Subject: [openib-general] suggestions for features In-Reply-To: <41DD6EEF.3080808@ichips.intel.com> References: <41DD6EEF.3080808@ichips.intel.com> Message-ID: <41DEEA48.1050500@ichips.intel.com> Sean Hefty wrote: > * Having a way to access cached attributes directly from the ib_device > structure would be nice for that matter. Specifically, the CM needs > access to the CA GUID and cached GIDs. I *just* discovered that there is a GID and PKEY cache stored in the device structure. I'm removing my CM specific caches in favor of using these. As a side note, I've added a new call to cache.c that I'll check in once I verify that it works. ib_cached_gid_find(*device, *gid, *port, *index) The call returns the port number and optionally the index. This is a change from the call with the same name in the roland-merge branch in that the device is input. - Sean From libor at topspin.com Fri Jan 7 12:21:47 2005 From: libor at topspin.com (Libor Michalek) Date: Fri, 7 Jan 2005 12:21:47 -0800 Subject: [openib-general] Sockets Extensions Completed In-Reply-To: <1105124627.1352.224.camel@localhost>; from jjengla@sandia.gov on Fri, Jan 07, 2005 at 11:03:47AM -0800 References: <6.2.0.14.2.20050106102850.02039200@esmail.cup.hp.com> <1105055859.1352.209.camel@localhost> <6.2.0.14.2.20050107070626.02e44ba8@esmail.cup.hp.com> <1105124627.1352.224.camel@localhost> Message-ID: <20050107122147.A24379@topspin.com> On Fri, Jan 07, 2005 at 11:03:47AM -0800, Josh England wrote: > This is probably not the right forum, but how would you say the ES-API > compares with DAPL? ES-API appears to be much closer to the Linux AIO extensions then to DAPL. DAPL provides an explicit RDMA API for applications while AIO and ES-API allow for asynchronous operations on normal sockets, so you can perform standard socket operations, plus asynchronous operations. AIO and ES-API still maintain streaming socket symantics, while DAPL provides full RDMA capabilities, such as explicit memory placement. ES-API goes a few steps further then the existing Linux AIO in providing explicit memory registration, which may or may not be a significant win, depending on application. Using Linux AIO, which does not have explicit memory registration, my existing SDP implementation can reach full data rate. The registration is done on the fly using FMRs -Libor > On Fri, 2005-01-07 at 07:12 -0800, Michael Krause wrote: > > At 03:57 PM 1/6/2005, Josh England wrote: > > > Is it the API that is completed, or is there an implementation > > > written already? > > > > The API specification has been completed so now people can implement > > if there is interest. The API is part of the Unix branding effort > > done within the OpenGroup and is available to all for free. Given the > > desire to implement open standards within the open source community, > > this would seem like a logical API to support on Linux. How this is > > actually started / implemented on Linux is an open question. My main > > reason for providing the spec notification availability here is that > > the socket extensions when combined with SDP will provide optimum > > performance when used in conjunction with RDMA interconnects while > > providing a fairly familiar interface to most network application > > writers. For those that have implemented MPI over Sockets (not all > > have done this), this would also provide a cleaner mapping and still > > allow transparent access to RDMA with minimum performance impact. > > > > Mike > > > > > > > -JE > > > > > > On Thu, 2005-01-06 at 10:31 -0800, Michael Krause wrote: > > > > > > > > FYI.....The specification can be found at: > > > > > > > > http://www.opengroup.org/bookstore/catalog/c050.htm > > > > > > > > Use of this new interface will enable Sockets based applications > > > to > > > > fully exploit the performance of RDMA interconnects through the > > > SDP > > > > wire protocol. This API also provides explicit memory management > > > > taking some of the guesswork out of this thorny problem which can > > > > result in some performance loss and implementation complexity > > > within > > > > the SDP layer. > > > > > > > > Mike > > > > > > > > > > > > > > > > > > > > > > > > Extended Sockets API (ES-API), Issue 1.0 > > > > The Extended Sockets API (ES-API) Technical Standard provides > > > > extensions to the traditional socket API to support improved > > > > efficiency in network programming. The ES-API includes: > > > synchronous IO > > > > and control operations on sockets; event queue-based management of > > > > asynchronous operations; and pre-registering of memory regions > > > that > > > > will be the subject of IO operations. These facilities are > > > intended to > > > > support: improved efficiency when dealing with high numbers of > > > socket > > > > file descriptors; 'zero-copy' transmit and receive operations; and > > > > improved buffer management. The ES-API also includes routines that > > > > provide asynchronous IO and control operations, asynchronous > > > operation > > > > management, and memory registration functions for applications > > > > manipulating sockets. > > > > > > > > > > > > > > > > Bibliographic Details > > > > Consortium Specifications > > > > > > > > Catalog number C050 > > > > ISBN 1931624526 > > > > Jan 2005 > > > > > > > > OO. 72 pages. > > > > > > > > _______________________________________________ > > > > openib-general mailing list > > > > openib-general at openib.org > > > > http://openib.org/mailman/listinfo/openib-general > > > > > > > > To unsubscribe, please visit > > > http://openib.org/mailman/listinfo/openib-general > > > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general From krause at cup.hp.com Fri Jan 7 15:50:56 2005 From: krause at cup.hp.com (Michael Krause) Date: Fri, 07 Jan 2005 15:50:56 -0800 Subject: [openib-general] Sockets Extensions Completed In-Reply-To: <20050107122147.A24379@topspin.com> References: <6.2.0.14.2.20050106102850.02039200@esmail.cup.hp.com> <1105055859.1352.209.camel@localhost> <6.2.0.14.2.20050107070626.02e44ba8@esmail.cup.hp.com> <1105124627.1352.224.camel@localhost> <20050107122147.A24379@topspin.com> Message-ID: <6.2.0.14.2.20050107130122.0206ec70@esmail.cup.hp.com> At 12:21 PM 1/7/2005, Libor Michalek wrote: >On Fri, Jan 07, 2005 at 11:03:47AM -0800, Josh England wrote: > > This is probably not the right forum, but how would you say the ES-API > > compares with DAPL? > > ES-API appears to be much closer to the Linux AIO extensions then to >DAPL. DAPL provides an explicit RDMA API DAPL and IT API (superset of DAPL) are designed to match RDMA hardware semantics as closely as possible without requiring the application to be coded to the verbs interface which may not be optimal for the typical developer. Verbs interfaces like VAPI or the RNIC PI (a standard verbs interface) are designed to be "too the metal" interfaces which may not be reasonable for all but a subset of developers to use. Sockets and the Extended Sockets API are designed to provide a general purpose network API that can take advantage of existing and new communication paradigms. The extensions were developed after close evaluation of existing interfaces such as AIO, interface research, etc. and working through their benefits, short-comings, etc. to find the right balance in getting to the desired benefits. The extensions are able to operate over a variety of network stack implementations enabling good application portability / interoperability. Where an OS determines that it can take advantage of RDMA, the extended Sockets provide opportunities such as explicit memory management to make mapping to RDMA as optimal as possible both from an implementation complexity perspective as well as with minimal performance loss. >for applications while AIO and ES-API allow for asynchronous operations on >normal sockets, so you can >perform standard socket operations, plus asynchronous operations. AIO and >ES-API still maintain streaming socket symantics, while DAPL provides full >RDMA capabilities, such as explicit memory placement. Sockets / ES with SDP provides explicit memory placement but the application developer does not have to worry about all of the details or the interconnect-specifics. This has a number of advantages in terms of broadening the application of RDMA interconnects to the larger application space while still providing strong performance gains compared to a standard network software implementation. >ES-API goes a few steps further then the existing Linux AIO in providing >explicit memory registration, which may or may not be a significant win, >depending on application. Using Linux AIO, which does not have explicit >memory registration, my existing SDP implementation can reach full data >rate. The registration is done on the fly using FMRs The cost of memory registration was evaluated in developing both iWARP and the IB Verbs extensions. This was based on measurements taken on IB and other hardware implementations. Not everyone was thrilled with the performance cost thus we worked to get ES to support the explicit memory management as well as provide more optimal memory management verbs. I view this as an appropriate compromise since a developer can make the choice on whether he / she manages the memory or relies upon the underlying implementation do so on his / her behalf and deal with whatever performance is actually delivered. There are other benefits as well but are perhaps off topic from these forums. Mike >-Libor > > > > On Fri, 2005-01-07 at 07:12 -0800, Michael Krause wrote: > > > At 03:57 PM 1/6/2005, Josh England wrote: > > > > Is it the API that is completed, or is there an implementation > > > > written already? > > > > > > The API specification has been completed so now people can implement > > > if there is interest. The API is part of the Unix branding effort > > > done within the OpenGroup and is available to all for free. Given the > > > desire to implement open standards within the open source community, > > > this would seem like a logical API to support on Linux. How this is > > > actually started / implemented on Linux is an open question. My main > > > reason for providing the spec notification availability here is that > > > the socket extensions when combined with SDP will provide optimum > > > performance when used in conjunction with RDMA interconnects while > > > providing a fairly familiar interface to most network application > > > writers. For those that have implemented MPI over Sockets (not all > > > have done this), this would also provide a cleaner mapping and still > > > allow transparent access to RDMA with minimum performance impact. > > > > > > Mike > > > > > > > > > > -JE > > > > > > > > On Thu, 2005-01-06 at 10:31 -0800, Michael Krause wrote: > > > > > > > > > > FYI.....The specification can be found at: > > > > > > > > > > http://www.opengroup.org/bookstore/catalog/c050.htm > > > > > > > > > > Use of this new interface will enable Sockets based applications > > > > to > > > > > fully exploit the performance of RDMA interconnects through the > > > > SDP > > > > > wire protocol. This API also provides explicit memory management > > > > > taking some of the guesswork out of this thorny problem which can > > > > > result in some performance loss and implementation complexity > > > > within > > > > > the SDP layer. > > > > > > > > > > Mike > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Extended Sockets API (ES-API), Issue 1.0 > > > > > The Extended Sockets API (ES-API) Technical Standard provides > > > > > extensions to the traditional socket API to support improved > > > > > efficiency in network programming. The ES-API includes: > > > > synchronous IO > > > > > and control operations on sockets; event queue-based management of > > > > > asynchronous operations; and pre-registering of memory regions > > > > that > > > > > will be the subject of IO operations. These facilities are > > > > intended to > > > > > support: improved efficiency when dealing with high numbers of > > > > socket > > > > > file descriptors; 'zero-copy' transmit and receive operations; and > > > > > improved buffer management. The ES-API also includes routines that > > > > > provide asynchronous IO and control operations, asynchronous > > > > operation > > > > > management, and memory registration functions for applications > > > > > manipulating sockets. > > > > > > > > > > > > > > > > > > > > Bibliographic Details > > > > > Consortium Specifications > > > > > > > > > > Catalog number C050 > > > > > ISBN 1931624526 > > > > > Jan 2005 > > > > > > > > > > OO. 72 pages. > > > > > > > > > > _______________________________________________ > > > > > openib-general mailing list > > > > > openib-general at openib.org > > > > > http://openib.org/mailman/listinfo/openib-general > > > > > > > > > > To unsubscribe, please visit > > > > http://openib.org/mailman/listinfo/openib-general > > > > > > _______________________________________________ > > openib-general mailing list > > openib-general at openib.org > > http://openib.org/mailman/listinfo/openib-general > > > > To unsubscribe, please visit > http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From boas1 at llnl.gov Sat Jan 8 09:10:04 2005 From: boas1 at llnl.gov (Bill Boas) Date: Sat, 08 Jan 2005 09:10:04 -0800 Subject: [openib-general] Please register for OpenIB Workshop, Sonoma, Feb 6-9, Message-ID: <6.1.2.0.2.20050108085050.0cabd038@mail-lc.llnl.gov> openib.org Home| News| Archives| Documentation| Development Tools| Contact Us| Members| License 2005 OpenIB Developers Workshop – The Lodge at Sonoma, February 6-9 The OpenIB Alliance is holding its first Development Workshop at The Lodge at Sonoma from February 6-9, 2005. The workshop is open to everyone interested in the work of the OpenIB Alliance – see www.openib.org to register for the Workshop and make hotel reservations at the Lodge at the workshop rates. If you wish to spend the weekend of Feb 5/6 at the hotel, or stay a day or two beyond the 9th some rooms are available at the same rates. However you must reserve rooms with the codes assigned by the hotel, available through links to the hotel from www.openib.org, to qualify for those rates. The cost to register for the workshop is $395. The program will have these major sessions: * developers discussing the OpenIB kernel-level software submitted to kernel.org, its current status and proposed evolution; * developers discussing the proposed OpenIB software architecture and plans for additional modules to complete a full Linux open software stack for enterprise and high performance computing deployments including underlying capabilities for Infiniband and other RDMA protocols such as IT-API and DAPL; * customers, vendors and developers discussing their requirements and road map for the OpenIB software development, * compliance, integration, hardening, scaling and resilience of the stack for inclusion in Linux distributions; * integration of the OpenIB stack in software and applications for Enterprise and HPC server, blade, cluster, storage and embedded systems; * the DOE Labs and their partners describing the OpenIB PathForward project - see http://www.llnl.gov/pao/news/news_releases/2004/NR-04-11-03.html; * OpenIB Alliance membership Annual General and Board meetings to elect directors and discuss Alliance activities for 2005. The Workshop outline is below: Feb 6 * Workshop registration in the lobby at the Lodge from 4 PM * Reception and cash Bar in the Stone Room from 5 to 7.30 PM Feb 7 * Keynotes on HPC and Enterprise, OpenIB Software Roadmap * Software, Market Development and Birds of Feather parallel sessions * OpenIB Alliance Annual General Meeting, election of Directors for 2005 Feb 8 * OpenIB Alliance Board Meeting * Software, Market Development and Birds of Feather parallel sessions Feb 9 * Quality Assurance and Testing Panel * OpenIB Alliance Plans for 2005 * Workshop Wrap Up by 11.00 AM The Workshop team is working on the details of the tracks and sessions which will be posted as soon as possible. Please make suggestions to the team as you register on the web for the workshop if you wish. Workshop Team: Chair – Bill Boas; Treasurer – Jim Ryan Software Developer Track – Bob Woodruff, Matt Leininger, Phil Murphy, Ross Schibler Market Development and Applications Track – Chris Eddington, David Ford, Asaf Somekh Bill Boas bboas at llnl.gov ICCD LLNL, B-113, R-2018 Wk: 925-422-4110 7000 East Ave Cell: 925-337-2224 Livermore, CA 94551 Pgr: 877-203-2248 From roland at topspin.com Sat Jan 8 10:14:48 2005 From: roland at topspin.com (Roland Dreier) Date: Sat, 08 Jan 2005 10:14:48 -0800 Subject: [openib-general] Re: InfiniBand MAD device number request In-Reply-To: <20050107120451.GK4592@linux2> (Torben Mathiasen's message of "Fri, 7 Jan 2005 13:04:51 +0100") References: <52brcce5b9.fsf@topspin.com> <20050107120451.GK4592@linux2> Message-ID: <52oefz23fr.fsf@topspin.com> Torben> How many minors do you guys need? char majors are very Torben> scarce, so if you know how many you need, we can make the Torben> best possible assignment. One minor is consumed for each port of each InfiniBand HCA installed in the system. I know of real systems that have 10 two-port HCAs installed, which would require 20 minors. 32 minors may be too few, since it would not allow for a doubling of already-existing installations, although perhaps larger systems could be forced to use dynamic major allocation. So depending on how constrained your allocation space is, I would prefer 64 minors but 32 is probably OK. Thanks, Roland From mst at mellanox.co.il Sat Jan 8 12:37:41 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sat, 8 Jan 2005 22:37:41 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050107171738.GA28289@esmail.cup.hp.com> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> <1105050852.14325.57.camel@duffman> <20050107001815.GD23985@esmail.cup.hp.com> <20050107113904.GB2231@mellanox.co.il> <20050107171738.GA28289@esmail.cup.hp.com> Message-ID: <20050108203741.GA10493@mellanox.co.il> Hello! Quoting r. Grant Grundler (iod00d at hp.com) "Re: [openib-general] Re: mstflint failing on sparc64": > On Fri, Jan 07, 2005 at 01:39:04PM +0200, Michael S. Tsirkin wrote: > > So PCI addresses are different from physical addresses, > > Yes, they can be. > My point was the addreses mappings can be 1:1 in one > direction but not 1:1 in the other. > It's platform specific. We always can do the config space hack, but its much slower and has the disadvantage of not being atomic (two config accesses are needed for one memory access) and other disadvantages. OK, I'll write a small test that just maps the memory, to make sure there's no other bug. MST From mst at mellanox.co.il Sat Jan 8 13:07:47 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sat, 8 Jan 2005 23:07:47 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050107171738.GA28289@esmail.cup.hp.com> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> <1105050852.14325.57.camel@duffman> <20050107001815.GD23985@esmail.cup.hp.com> <20050107113904.GB2231@mellanox.co.il> <20050107171738.GA28289@esmail.cup.hp.com> Message-ID: <20050108210747.GA10567@mellanox.co.il> Hello! Quoting r. Grant Grundler (iod00d at hp.com) "Re: [openib-general] Re: mstflint failing on sparc64": > On Fri, Jan 07, 2005 at 01:39:04PM +0200, Michael S. Tsirkin wrote: > > So PCI addresses are different from physical addresses, > > Yes, they can be. > My point was the addreses mappings can be 1:1 in one > direction but not 1:1 in the other. > It's platform specific. That may be the case, but on sparc64 it does not appear to be the case: /* On sparc64 we have the whole physical IO address space accessible * * using physically addressed loads and stores, so this does nothing. * */ static inline void __iomem *ioremap(unsigned long offset, unsigned long size) { return (void __iomem *)offset; } Just to be sure, Tom, could you do two things: 1. cat /proc/iomem 2. strace the mstflint run that crashes I will also try to investigate the option that /dev/mem mmap plain does not work correctly on sparc64, I plan to 1. write a simple test that mmaps the device 2. implement two other alternative approaches: - use raw readl/writel from asm/io.h - use pread/pwrite on /dev/mem MST From mst at mellanox.co.il Sat Jan 8 13:40:56 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sat, 8 Jan 2005 23:40:56 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <1105050852.14325.57.camel@duffman> References: <1105050852.14325.57.camel@duffman> Message-ID: <20050108214056.GA10713@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: mstflint failing on sparc64": > On Thu, 2005-01-06 at 20:28 +0200, Michael S. Tsirkin wrote: > > Crashes on access to mapped memory. > > Could you print mf->ptr and offset at that point? > > (gdb) print mf->ptr > $1 = (void *) 0x70304000 > (gdb) print offset > $2 = 984060 > > > Generally, do yo happend to know if mmapping /dev/mem > > to userspace works on this architecture? > > I can't imagine that it would not. I will see if I can dig info up. > The one thing that is weird on sparc64 is that the pci bus is virtually > (not physically) addressed. I don't know if you take that into account. No, but I expect /dev/mem together with /proc/bus/pci/devices (and the resources file on newer systems) to take care of that, giving me the resource address and not just the pci BAR. > > > begin 600 devices > > > > Woa , uuencode, haven't seen that for a while. > > It was mime text/plain base64 going out for me... > Okay, hmm, maybe I see some bug: I am parsing the data into unsigned integers, I expect they are 32 bit, right? And I see /proc/bus/pci/devices has a 64 bit integer there, that could be a problem. Could you try now that I have changed that? Anyway, if it does not help, maybe you could give me the strace and /proc/iomem that I asked for. mst From tduffy at sun.com Sat Jan 8 20:19:41 2005 From: tduffy at sun.com (Tom Duffy) Date: Sat, 08 Jan 2005 20:19:41 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050108210747.GA10567@mellanox.co.il> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> <1105050852.14325.57.camel@duffman> <20050107001815.GD23985@esmail.cup.hp.com> <20050107113904.GB2231@mellanox.co.il> <20050107171738.GA28289@esmail.cup.hp.com> <20050108210747.GA10567@mellanox.co.il> Message-ID: <1105244381.1323.5.camel@duffman> On Sat, 2005-01-08 at 23:07 +0200, Michael S. Tsirkin wrote: > Just to be sure, Tom, could you do two things: > > 1. cat /proc/iomem 1ff00000000-1ff7fffffff : PSYCHO0 PBMA 1ff000a0000-1ff000bffff : Video RAM area 1ff000c0000-1ff000c7fff : Video ROM 1ff000f0000-1ff000fffff : System ROM 1ff00100000-1ff001fffff : 0000:81:00.0 1ff00180680-1ff0018070f : ib_mthca 1ff001f00d8-1ff001f00df : ib_mthca 1ff00800000-1ff00ffffff : 0000:81:00.0 1ff00800000-1ff00ffffff : ib_mthca 1ff08000000-1ff0fffffff : 0000:81:00.0 1ff08000000-1ff0fffffff : ib_mthca 1ff80000000-1ffffffffff : PSYCHO0 PBMB 1ff80008000-1ff8000ffff : 0001:00:01.1 1ff80008000-1ff8000ffff : sunhme 1ff80010000-1ff800100ff : 0001:00:03.0 1ff80010000-1ff800100ff : sym53c8xx 1ff80012000-1ff80012fff : 0001:00:03.0 1ff80012000-1ff80012fff : sym53c8xx 1ff80014000-1ff800140ff : 0001:00:03.1 1ff80014000-1ff800140ff : sym53c8xx 1ff80016000-1ff80016fff : 0001:00:03.1 1ff80016000-1ff80016fff : sym53c8xx 1ff800a0000-1ff800bffff : Video RAM area 1ff800c0000-1ff800c7fff : Video ROM 1ff800f0000-1ff800fffff : System ROM 1ff81000000-1ff81ffffff : 0001:00:01.0 1ff82000000-1ff82ffffff : 0001:00:01.1 1fff0000000-1fff0ffffff : 0001:00:01.0 1fff0000000-1fff00fffff : flashprom 1fff1000000-1fff17fffff : 0001:00:01.0 1fff1000000-1fff1001fff : eeprom 1fff1200000-1fff120007f : se 1fff1300398-1fff1300399 : ecpp 1fff13023f0-1fff13023f7 : fdthree 1fff13043bc-1fff13043cb : ecpp 1fff13062f8-1fff13062ff : su 1fff13083f8-1fff13083ff : su 1fff1400000-1fff140007f : se 1fff1500000-1fff1500007 : sc 1fff1504000-1fff1504002 : SUNW,pll 1fff1600000-1fff1600003 : SUNW,envctrltwo 1fff1700000-1fff170000f : ecpp 1fff1706000-1fff170600f : fdthree 1fff1720000-1fff1720003 : fdthree 1fff1724000-1fff1724003 : power 1fff1726000-1fff1726003 : auxio 1fff1728000-1fff1728003 : auxio 1fff172a000-1fff172a003 : auxio 1fff172c000-1fff172c003 : auxio 1fff172f000-1fff172f003 : auxio > 2. strace the mstflint run that crashes execve("./mstflint", ["./mstflint", "-d", "81:00.0", "q"], [/* 14 vars */]) = 0 uname({sys="Linux", node="tat", ...}) = 0 brk(0) = 0x2c000 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/etc/ld.so.preload", O_RDONLY) = -1 ENOENT (No such file or directory) open("/etc/ld.so.cache", O_RDONLY) = 3 fstat64(3, {st_mode=S_IFREG|0644, st_size=53602, ...}) = 0 mmap(NULL, 53602, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7002c000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/usr/lib/libstdc++.so.5", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\3\332"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=725592, ...}) = 0 mmap(NULL, 810456, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x7003c000 mprotect(0x700da000, 163288, PROT_NONE) = 0 mmap(0x700dc000, 139264, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0x90000) = 0x700dc000 mmap(0x700fe000, 15832, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x700fe000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libm.so.6", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\0\234"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=527020, ...}) = 0 mmap(NULL, 591312, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x70104000 mprotect(0x70182000, 75216, PROT_NONE) = 0 mmap(0x70184000, 73728, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0x70000) = 0x70184000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libgcc_s.so.1", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\0\30"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=36696, ...}) = 0 mmap(NULL, 101240, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x70198000 mprotect(0x701a2000, 60280, PROT_NONE) = 0 mmap(0x701a8000, 40960, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0x701a8000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libc.so.6", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\1\316"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=1291948, ...}) = 0 mmap(NULL, 1361864, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x701b4000 mprotect(0x702e8000, 100296, PROT_NONE) = 0 mmap(0x702f4000, 49152, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0x130000) = 0x702f4000 mmap(0x70300000, 1992, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x70300000 close(3) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x70302000 munmap(0x7002c000, 53602) = 0 brk(0) = 0x2c000 brk(0x4e000) = 0x4e000 brk(0) = 0x4e000 open("/dev/mem", O_RDWR|O_SYNC) = 3 open("/proc/bus/pci/devices", O_RDONLY) = 4 fstat64(4, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7002c000 read(4, "0000\t108e8000\t0\t 0"..., 1024) = 1024 read(4, " 0\tsym53c8xx\n0019\t1000000f\t7af"..., 1024) = 1024 read(4, " 0\t 0\tib_"..., 1024) = 38 close(4) = 0 munmap(0x7002c000, 8192) = 0 mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0xfff00000) = 0x70304000 --- SIGBUS (Bus error) @ 0 (0) --- +++ killed by SIGBUS +++ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From tziporet at mellanox.co.il Sun Jan 9 07:59:42 2005 From: tziporet at mellanox.co.il (Tziporet Koren) Date: Sun, 9 Jan 2005 17:59:42 +0200 Subject: [openib-general] Please register for OpenIB Workshop, Sonoma, Feb 6-9, Message-ID: <506C3D7B14CDD411A52C00025558DED6064BED6F@mtlex01.yok.mtl.com> Hi, In the registration form there is only place for an address inside US. Can you change it to include other countries (e.g. Israel) Thanks, Tziporet -----Original Message----- From: Bill Boas [mailto:boas1 at llnl.gov] Sent: Saturday, January 08, 2005 7:10 PM To: openib-general at openib.org; openib-promoters at openib.org Subject: [openib-general] Please register for OpenIB Workshop, Sonoma, Feb 6-9, openib.org Home| News| Archives| Documentation| Development Tools| Contact Us| Members| License 2005 OpenIB Developers Workshop - The Lodge at Sonoma, February 6-9 The OpenIB Alliance is holding its first Development Workshop at The Lodge at Sonoma from February 6-9, 2005. The workshop is open to everyone interested in the work of the OpenIB Alliance - see www.openib.org to register for the Workshop and make hotel reservations at the Lodge at the workshop rates. If you wish to spend the weekend of Feb 5/6 at the hotel, or stay a day or two beyond the 9th some rooms are available at the same rates. However you must reserve rooms with the codes assigned by the hotel, available through links to the hotel from www.openib.org, to qualify for those rates. The cost to register for the workshop is $395. The program will have these major sessions: * developers discussing the OpenIB kernel-level software submitted to kernel.org, its current status and proposed evolution; * developers discussing the proposed OpenIB software architecture and plans for additional modules to complete a full Linux open software stack for enterprise and high performance computing deployments including underlying capabilities for Infiniband and other RDMA protocols such as IT-API and DAPL; * customers, vendors and developers discussing their requirements and road map for the OpenIB software development, * compliance, integration, hardening, scaling and resilience of the stack for inclusion in Linux distributions; * integration of the OpenIB stack in software and applications for Enterprise and HPC server, blade, cluster, storage and embedded systems; * the DOE Labs and their partners describing the OpenIB PathForward project - see http://www.llnl.gov/pao/news/news_releases/2004/NR-04-11-03.html; * OpenIB Alliance membership Annual General and Board meetings to elect directors and discuss Alliance activities for 2005. The Workshop outline is below: Feb 6 * Workshop registration in the lobby at the Lodge from 4 PM * Reception and cash Bar in the Stone Room from 5 to 7.30 PM Feb 7 * Keynotes on HPC and Enterprise, OpenIB Software Roadmap * Software, Market Development and Birds of Feather parallel sessions * OpenIB Alliance Annual General Meeting, election of Directors for 2005 Feb 8 * OpenIB Alliance Board Meeting * Software, Market Development and Birds of Feather parallel sessions Feb 9 * Quality Assurance and Testing Panel * OpenIB Alliance Plans for 2005 * Workshop Wrap Up by 11.00 AM The Workshop team is working on the details of the tracks and sessions which will be posted as soon as possible. Please make suggestions to the team as you register on the web for the workshop if you wish. Workshop Team: Chair - Bill Boas; Treasurer - Jim Ryan Software Developer Track - Bob Woodruff, Matt Leininger, Phil Murphy, Ross Schibler Market Development and Applications Track - Chris Eddington, David Ford, Asaf Somekh Bill Boas bboas at llnl.gov ICCD LLNL, B-113, R-2018 Wk: 925-422-4110 7000 East Ave Cell: 925-337-2224 Livermore, CA 94551 Pgr: 877-203-2248 _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From tziporet at mellanox.co.il Sun Jan 9 08:03:58 2005 From: tziporet at mellanox.co.il (Tziporet Koren) Date: Sun, 9 Jan 2005 18:03:58 +0200 Subject: [openib-general] openIB + RTAI, kernel freezing... Message-ID: <506C3D7B14CDD411A52C00025558DED6064BED71@mtlex01.yok.mtl.com> gen1 modules does not support kernel 2.6.7. We all focus on gen2 development now. Tziporet -----Original Message----- From: von Wyl Marc [mailto:vonwyl at EIG.UNIGE.CH] Sent: Friday, January 07, 2005 5:55 PM To: openib-general at openib.org Subject: [openib-general] openIB + RTAI, kernel freezing... Hi, I tryed to install the RTAI 3.1 (www.rtai.og) and openIB gen1 patchs on a 2.6.7 kernel to see if it is possible to communicate with the VAPI using hard realtime process. Fortunatly, the patching, compilation and installation succeeded without any problem. But when I try to run : > modprobe ib_tavor the kernel freeze or reboot... And it looks like that without this module I can't start the VAPI. I know that trying to install different patchs like this two could cause a a lot of problems, but does anyone has an idea why it is this module that cause the problem? Thanks... _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From mst at mellanox.co.il Sun Jan 9 12:00:12 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 9 Jan 2005 22:00:12 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <1105244381.1323.5.camel@duffman> References: <1105244381.1323.5.camel@duffman> Message-ID: <20050109200012.GA27806@mellanox.co.il> Hello, Tom! Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] Re: mstflint failing on sparc64": > On Sat, 2005-01-08 at 23:07 +0200, Michael S. Tsirkin wrote: > > Just to be sure, Tom, could you do two things: > > > > 1. cat /proc/iomem > > 1ff00100000-1ff001fffff : 0000:81:00.0 OK, so this is our address range. > > > 2. strace the mstflint run that crashes > > mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0xfff00000) = > 0x70304000 > --- SIGBUS (Bus error) @ 0 (0) --- > +++ killed by SIGBUS +++ And here we see the incorrect address 0xfff00000 being passed in instead of 0x1ff00100000. I hope I fixed this with the last svn update (rev 1498). At least I tested on x86_64 with your device file and it seems to print the correct physical address. Unfortunately the previous version behaves differently for me (tryies to map 0x100000 instead), but that could be because of a different architecture somehow. Could you please update and try again (with strace) and let me know? MST From mst at mellanox.co.il Sun Jan 9 14:37:50 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 10 Jan 2005 00:37:50 +0200 Subject: [openib-general] Re: RFC: process_mad extension In-Reply-To: <20041230164608.GA12143@mellanox.co.il> References: <20041230164608.GA12143@mellanox.co.il> Message-ID: <20050109223750.GA28353@mellanox.co.il> Hello! Quoting r. Michael S. Tsirkin (mst at mellanox.co.il) "RFC: process_mad extension": > > Hello! > ib_verbs.h has: > > int (*process_mad)(struct ib_device *device, > int process_mad_flags, > u8 port_num, > u16 source_lid, > struct ib_mad *in_mad, > struct ib_mad *out_mad); > > This function serves both GSI and SMA MADs. It is used internally by > the ib core, and I think its normally not used by ULPs. > > process_mad_flags just says whether to enable the MKey check. > The Mkey check is enabled for incoming mad packets that are being > returned to the HCA. When enabled, the HCA is expected to generate > mkey violation trap when appropriate. > > I see some issues with this interface: > > 1. I think for GSI MADs, the HCA (even Tavor) needs more information to > generate traps in case of errors. > Consider for example Trap 259 - Bkey violation. > Per IB spec 1.2, the trap has the following payload. > > Bad B_Key, from > // attempted > with and > > However, the GIDADDR/QP is never passed to process_mad and so is not > available to the HCA. > > > 2. For BMA MADs, it seems an additional flag would be needed to enable/ > disable the bkey check for the MAD, same as we do for the mkey? > > 3. The Arbel memfree (aka native) mode hardware needs the Grh, and some > bits from the completion of the incoming MAD, to process the MAD. > Again, this information is not passed to process_mad. > > > I think it makes sence to address these issues sooner rather > than later :) > > I propose extending the interface in the following way: > > int (*process_mad)(struct ib_device *device, > int process_mad_flags, > u8 port_num, > struct ib_wc* in_wc, > struct ib_grh* in_grh, > struct ib_mad *in_mad, > struct ib_mad *out_mad); > > I think its in some sence nicer than passing the slid directly since > when sm builds packets (with mkey check disabled) slid may not be > valid at all. > The new parameters can be NULL in this case, then no trap can be generated. > > If you guys agree, I'll prepare a patch fixing the core and mthca. > > MST Here is the patch that adds the parameters to the core interface, and passes them down to mthca, it builds and works for me. As planned, I added new parameters instead of the slid, and renamed a flag to reflect we may have bkey and not only mkey check. I plan to add code to actually pass them to hardware next, this is under debug, but that will be a separate patch. I am of two minds whether we want to rename the flag to something most generic, like IGNORE_CHECK or something. mst Signed-off-by: Michael S. Tsirkin Index: include/ib_verbs.h =================================================================== --- include/ib_verbs.h (revision 1498) +++ include/ib_verbs.h (working copy) @@ -684,9 +684,10 @@ struct ib_fmr { }; struct ib_mad; +struct ib_grh; enum ib_process_mad_flags { - IB_MAD_IGNORE_MKEY = 1 + IB_MAD_IGNORE_MKEY_BKEY = 1, }; enum ib_mad_result { @@ -812,7 +813,8 @@ struct ib_device { int (*process_mad)(struct ib_device *device, int process_mad_flags, u8 port_num, - u16 source_lid, + struct ib_wc* in_wc, + struct ib_grh* in_grh, struct ib_mad *in_mad, struct ib_mad *out_mad); Index: core/mad.c =================================================================== --- core/mad.c (revision 1498) +++ core/mad.c (working copy) @@ -614,6 +614,26 @@ static void snoop_recv(struct ib_mad_qp_ spin_unlock_irqrestore(&qp_info->snoop_lock, flags); } +/* build a fake wc for process_mad */ + +static void build_smp_wc(struct ib_smp *smp, + struct ib_send_wr *send_wr, + struct ib_wc* wc) +{ + memset(wc,0,sizeof *wc); + wc->wr_id=send_wr->wr_id; + wc->status=IB_WC_SUCCESS; + wc->opcode=IB_WC_RECV; + wc->pkey_index=send_wr->wr.ud.pkey_index; + wc->byte_len = sizeof(struct ib_mad); + wc->src_qp = IB_QP0; + wc->qp_num = IB_QP0; + wc->slid = smp->dr_slid; + wc->sl = 0; + wc->dlid_path_bits=0; + wc->port_num=send_wr->wr.ud.port_num; +} + /* * Return 0 if SMP is to be sent * Return 1 if SMP was consumed locally (whether or not solicited) @@ -629,6 +649,7 @@ static int handle_outgoing_dr_smp(struct struct ib_mad_private *mad_priv; struct ib_device *device = mad_agent_priv->agent.device; u8 port_num = mad_agent_priv->agent.port_num; + struct ib_wc mad_wc; if (!smi_handle_dr_smp_send(smp, device->node_type, port_num)) { ret = -EINVAL; @@ -658,7 +679,11 @@ static int handle_outgoing_dr_smp(struct kfree(local); goto out; } - ret = device->process_mad(device, 0, port_num, smp->dr_slid, + + build_smp_wc(smp, send_wr, &mad_wc); + + /* No grh for dr smp. */ + ret = device->process_mad(device, 0, port_num, &mad_wc, NULL, (struct ib_mad *)smp, (struct ib_mad *)&mad_priv->mad); switch (ret) @@ -1594,7 +1619,7 @@ local: ret = port_priv->device->process_mad(port_priv->device, 0, port_priv->port_num, - wc->slid, + wc, &recv->grh, &recv->mad.mad, &response->mad.mad); if (ret & IB_MAD_RESULT_SUCCESS) { Index: core/sysfs.c =================================================================== --- core/sysfs.c (revision 1498) +++ core/sysfs.c (working copy) @@ -315,8 +315,9 @@ static ssize_t show_pma_counter(struct i in_mad->data[41] = p->port_num; /* PortSelect field */ - if ((p->ibdev->process_mad(p->ibdev, IB_MAD_IGNORE_MKEY, p->port_num, 0xffff, - in_mad, out_mad) & + if ((p->ibdev->process_mad(p->ibdev, + IB_MAD_IGNORE_MKEY_BKEY, + p->port_num, NULL, NULL, in_mad, out_mad) & (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) != (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) { ret = -EINVAL; Index: hw/mthca/mthca_dev.h =================================================================== --- hw/mthca/mthca_dev.h (revision 1498) +++ hw/mthca/mthca_dev.h (working copy) @@ -381,7 +381,8 @@ int mthca_multicast_detach(struct ib_qp int mthca_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num, - u16 slid, + struct ib_wc* in_wc, + struct ib_grh* in_grh, struct ib_mad *in_mad, struct ib_mad *out_mad); int mthca_create_agents(struct mthca_dev *dev); Index: hw/mthca/mthca_mad.c =================================================================== --- hw/mthca/mthca_mad.c (revision 1498) +++ hw/mthca/mthca_mad.c (working copy) @@ -185,12 +185,14 @@ static void forward_trap(struct mthca_de int mthca_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num, - u16 slid, + struct ib_wc* in_wc, + struct ib_grh* in_grh, struct ib_mad *in_mad, struct ib_mad *out_mad) { int err; u8 status; + u16 slid = in_wc ? in_wc->slid : IB_LID_PERMISSIVE; /* Forward locally generated traps to the SM */ if (in_mad->mad_hdr.method == IB_MGMT_METHOD_TRAP && @@ -230,7 +232,7 @@ int mthca_process_mad(struct ib_device * return IB_MAD_RESULT_SUCCESS; err = mthca_MAD_IFC(to_mdev(ibdev), - !!(mad_flags & IB_MAD_IGNORE_MKEY), + !!(mad_flags & IB_MAD_IGNORE_MKEY_BKEY), port_num, in_mad, out_mad, &status); if (err) { From halr at voltaire.com Sun Jan 9 17:17:37 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 09 Jan 2005 20:17:37 -0500 Subject: [openib-general] Nitpick: permissions on files checked into SVN In-Reply-To: <1104882041.6291.49.camel@duffman> References: <1104882041.6291.49.camel@duffman> Message-ID: <1105319857.4649.149.camel@localhost.localdomain> On Tue, 2005-01-04 at 18:40, Tom Duffy wrote: > It seems that the permissions on a bunch of the userland source files, > like opensm, are checked into svn 755. It doesn't muck with anything > like builds, but they do show up as executables which makes me cringe > when I do an ls -F. Please, can you chmod them 644? Executable property has now been removed from osm *.[ch] files. Let me know if I missed anything. Thanks. -- Hal From roland at topspin.com Sun Jan 9 17:55:54 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 09 Jan 2005 17:55:54 -0800 Subject: [openib-general] Re: RFC: process_mad extension In-Reply-To: <20050109223750.GA28353@mellanox.co.il> (Michael S. Tsirkin's message of "Mon, 10 Jan 2005 00:37:50 +0200") References: <20041230164608.GA12143@mellanox.co.il> <20050109223750.GA28353@mellanox.co.il> Message-ID: <52652611zp.fsf@topspin.com> Thanks, but: - The patch has some bad spacing in places like: + wc->wr_id=send_wr->wr_id; + wc->status=IB_WC_SUCCESS; as well as C++-style declarations: + struct ib_wc* in_wc, + struct ib_grh* in_grh, - Rather than changing IB_MAD_IGNORE_MKEY to IB_MAD_IGNORE_MKEY_BKEY, why not introduce new flags IB_MAD_IGNORE_BKEY and IB_MAD_IGNORE_ALL with IB_MAD_IGNORE_ALL set to IB_MAD_IGNORE_MKEY | IB_MAD_IGNORE_BKEY? This matches the behavior of the FW better and lets existing code such as sysfs.c remain unchanged. - This last comment is just taste and maybe I'm wrong, but I don't see much advantage to defining a separate function build_smp_wc() that is only called from one place. Thanks, Roland From sean.hefty at intel.com Sun Jan 9 23:57:13 2005 From: sean.hefty at intel.com (Sean Hefty) Date: Sun, 9 Jan 2005 23:57:13 -0800 Subject: [openib-general] Re: RFC: process_mad extension In-Reply-To: <52652611zp.fsf@topspin.com> Message-ID: > - Rather than changing IB_MAD_IGNORE_MKEY to IB_MAD_IGNORE_MKEY_BKEY, > why not introduce new flags IB_MAD_IGNORE_BKEY and IB_MAD_IGNORE_ALL > with IB_MAD_IGNORE_ALL set to IB_MAD_IGNORE_MKEY | IB_MAD_IGNORE_BKEY? > This matches the behavior of the FW better and lets existing code > such as sysfs.c remain unchanged. I agree. Creating a new flag to ignore the BKEY seems like a better approach. I don't know if it makes sense to create an IGNORE_ALL flag, in case the flags need to be extended in the future. > - This last comment is just taste and maybe I'm wrong, but I don't > see much advantage to defining a separate function build_smp_wc() > that is only called from one place. I think that this is taste, but I myself find that separating functionality out into different routines tends to generate more readable code, provided that the code is divided in a sane way. In this specific case, I think a separate call makes sense, but that's just my opinion... - Sean From mst at mellanox.co.il Mon Jan 10 01:55:09 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 10 Jan 2005 11:55:09 +0200 Subject: [openib-general] Re: RFC: process_mad extension In-Reply-To: <52652611zp.fsf@topspin.com> References: <20041230164608.GA12143@mellanox.co.il> <20050109223750.GA28353@mellanox.co.il> <52652611zp.fsf@topspin.com> Message-ID: <20050110095509.GB3385@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] Re: RFC: process_mad extension": > Thanks, but: > > - The patch has some bad spacing in places like: > > + wc->wr_id=send_wr->wr_id; > + wc->status=IB_WC_SUCCESS; Ugh, need fixing. > as well as C++-style declarations: > > + struct ib_wc* in_wc, > + struct ib_grh* in_grh, what do you mean "C++-style"? what's unusual here? > - Rather than changing IB_MAD_IGNORE_MKEY to IB_MAD_IGNORE_MKEY_BKEY, > why not introduce new flags IB_MAD_IGNORE_BKEY and IB_MAD_IGNORE_ALL > with IB_MAD_IGNORE_ALL set to IB_MAD_IGNORE_MKEY | IB_MAD_IGNORE_BKEY? > This matches the behavior of the FW better and lets existing code > such as sysfs.c remain unchanged. I think these are mutually exclusive (no mad has both mkey and bkey). And I believe the existing code wants to "ignore all" anyway, since it sends a trusted MAD. > - This last comment is just taste and maybe I'm wrong, but I don't > see much advantage to defining a separate function build_smp_wc() > that is only called from one place. Maybe, I can arrange to call it from another place too :) > Thanks, > Roland From Andras.Horvath at cern.ch Mon Jan 10 05:47:29 2005 From: Andras.Horvath at cern.ch (Andras.Horvath at cern.ch) Date: Mon, 10 Jan 2005 14:47:29 +0100 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050107005615.GF23985@esmail.cup.hp.com> References: <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> Message-ID: <20050110134729.GH2351@cern.ch> Hello, > My guess is ia64 MSI support is somewhat broken. :( I'm using 'modprobe ib_mthca msi_x=1', and 'MSI INIT SUCCESS' is there but /proc/interrupts doesn't show MSI being used so I'm puzzled a bit. See dmesg output below. However: 2.6.10-mm2, hp rx2600 (ia64), PCI-X HCA (mthca), iperf one-way transfers: senderCPU recvCPU bandwidth 1 thread 18% 30% 2.03 Gbits/sec 5 threads 55% 78% 2.74 Gbits/sec 10 threads 50% 74% 2.71 Gbits/sec (by the way, it was a nice xmas gift to see IB drivers in the 2.6.10-mm* patches :) thanks!) So, could someone clear up the MSI confusion please? thanks, Andras in dmesg: ib_mthca 0000:81:00.0: Found bridge: Mellanox Technology MT23108 PCI Bridge (0000:80:01.0) MSI INIT SUCCESS ib_mthca 0000:81:00.0: FW version 000100180000, max commands 1 ib_mthca 0000:81:00.0: FW size 6143 KB (start cfa00000, end cfffffff) ib_mthca 0000:81:00.0: HCA memory size 131071 KB (start c8000000, end cfffffff) ib_mthca 0000:81:00.0: Max QPs: 16777216, reserved QPs: 16, entry size: 256 ib_mthca 0000:81:00.0: Max CQs: 16777216, reserved CQs: 128, entry size: 64 ib_mthca 0000:81:00.0: Max EQs: 64, reserved EQs: 1, entry size: 64 ib_mthca 0000:81:00.0: reserved MPTs: 16, reserved MTTs: 16 ib_mthca 0000:81:00.0: Max PDs: 16777216, reserved PDs: 0, reserved UARs: 1 ib_mthca 0000:81:00.0: Max QP/MCG: 16777216, reserved MGMs: 0 ib_mthca 0000:81:00.0: Flags: 003f0337 ib_mthca 0000:81:00.0: profile[ 0]--10/20 @ 0x c8000000 (size 0x 4000000) ib_mthca 0000:81:00.0: profile[ 1]-- 0/16 @ 0x cc000000 (size 0x 1000000) ib_mthca 0000:81:00.0: profile[ 2]-- 7/18 @ 0x cd000000 (size 0x 800000) ib_mthca 0000:81:00.0: profile[ 3]-- 9/17 @ 0x cd800000 (size 0x 800000) ib_mthca 0000:81:00.0: profile[ 4]-- 3/16 @ 0x ce000000 (size 0x 400000) ib_mthca 0000:81:00.0: profile[ 5]-- 4/16 @ 0x ce400000 (size 0x 200000) ib_mthca 0000:81:00.0: profile[ 6]--12/15 @ 0x ce600000 (size 0x 100000) ib_mthca 0000:81:00.0: profile[ 7]-- 8/13 @ 0x ce700000 (size 0x 80000) ib_mthca 0000:81:00.0: profile[ 8]--11/ 9 @ 0x ce780000 (size 0x 4000) ib_mthca 0000:81:00.0: profile[ 9]-- 6/ 5 @ 0x ce784000 (size 0x 800) ib_mthca 0000:81:00.0: HCA memory: allocated 106002 KB/124928 KB (18926 KB free) ib_mthca 0000:81:00.0: Allocated EQ 1 with 65536 entries ib_mthca 0000:81:00.0: Allocated EQ 2 with 128 entries ib_mthca 0000:81:00.0: Allocated EQ 3 with 128 entries ib_mthca 0000:81:00.0: Setting mask 00000000000343fe for eqn 2 ib_mthca 0000:81:00.0: Setting mask 0000000000000400 for eqn 3 ib_mthca 0000:81:00.0: Port change to active for port 1 in /proc/interrupts: 57: 38401561 0 IO-SAPIC-level ib_mthca From shaharf at voltaire.com Mon Jan 10 06:38:46 2005 From: shaharf at voltaire.com (shaharf) Date: Mon, 10 Jan 2005 16:38:46 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access Message-ID: > > After consideration, I think the proper way is add a reference count > > and clean is_sm when it falls to 0. > > This way runnning two opensms on the same HCA and two different > > HCAs in the same subnet behaves the same. > > I don't understand this. IsSM is per-port, so what does it mean for the > reference count of IsSM for a port to be 2? Two SMs are running on that > port? I totally agree. I see no point running two SMs on the same port. Not even failover - you have to many shared singe points of failure in such case. > > > To do this, I think either and ioctl on umad, or > > a flag to open to set this bit is not too bad though. > > I don't like either the ioctl() or a magic flag for open(). I'm > trying to decide > between a special issm file, or changing the umad file interface to put a > command code in the structure that is passed via write() (this would also > let us add a mechanism for canceling MADs). > When did ioctl go out of fashion? What is the big difference between ioctl and an embedded field in the umad structure? Both are binary parameters. Personally I think that non binary format is better when applicable - this mean issm file (you can say it is Plan9 style...). It would not necessarily use the open method. You may want to use the write method and to enable everyone read the file. This read may return the pid of the owner (== the first to write something into the file). The cancel mad operation is less important than I thought. The OpenSM manage a send queue and let only a specific window of packets to reach the kernel. Unless you allow the SM to use very large window, most canceled mads will be in the internal SM queue. The default window is 1 (should be changed). In short, you don't have to take the cancel mad into account. Canceling any pending mads when the file is closed should be enough. Shahar From halr at voltaire.com Mon Jan 10 06:41:37 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 10 Jan 2005 09:41:37 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: Message-ID: <1105368097.4649.324.camel@localhost.localdomain> On Mon, 2005-01-10 at 09:38, shaharf wrote: > The cancel mad operation is less important than I thought. The OpenSM > manage a send queue and let only a specific window of packets to reach > the kernel. Unless you allow the SM to use very large window, most > canceled mads will be in the internal SM queue. The default window is 1 > (should be changed). In short, you don't have to take the cancel mad > into account. Canceling any pending mads when the file is closed should > be enough. That reduces the open implementation issues down to: 1. IsSM 2. adding ability to snoop MADs from user space (lower priority) -- Hal From mst at mellanox.co.il Mon Jan 10 07:04:43 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 10 Jan 2005 17:04:43 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: Message-ID: <20050110150443.GH27011@mellanox.co.il> Hello! Quoting r. shaharf (shaharf at voltaire.com) "RE: [openib-general] Some Missing Features from mthca/user MAD access": > > > After consideration, I think the proper way is add a reference count > When did ioctl go out of fashion? What is the big difference between > ioctl and an embedded field in the umad structure? Both are binary > parameters. I think I agree that the format of data you are passing to write must be either ascii or > Personally I think that non binary format is better when applicable - > this mean issm file (you can say it is Plan9 style...). It would not > necessarily use the open method. You may want to use the write method > and to enable everyone read the file. This read may return the pid of > the owner (== the first to write something into the file). [... ] Ugh ... reads returning a value different from write. In my humble opinion, the cleanest approach would be to simply have a file which we can write 1 toset is sm and 0 to clean is sm, read returning the current value. Close would clean the bit, if set. If set to 1, write of 1 would fail. I think this is almost implementable over sysfs, except that we dont get a hook on "close". Maybe we shall just try to add a "close" hook to sysfs, and push it upstream? MST From mst at mellanox.co.il Mon Jan 10 07:18:07 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 10 Jan 2005 17:18:07 +0200 Subject: [openib-general] [PATCH] process_mad extension In-Reply-To: <52652611zp.fsf@topspin.com> References: <20041230164608.GA12143@mellanox.co.il> <20050109223750.GA28353@mellanox.co.il> <52652611zp.fsf@topspin.com> Message-ID: <20050110151807.GI27011@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] Re: RFC: process_mad extension": > Thanks, but: > > - The patch has some bad spacing in places like: > > + wc->wr_id=send_wr->wr_id; > + wc->status=IB_WC_SUCCESS; > > as well as C++-style declarations: > > + struct ib_wc* in_wc, > + struct ib_grh* in_grh, > > - Rather than changing IB_MAD_IGNORE_MKEY to IB_MAD_IGNORE_MKEY_BKEY, > why not introduce new flags IB_MAD_IGNORE_BKEY and IB_MAD_IGNORE_ALL > with IB_MAD_IGNORE_ALL set to IB_MAD_IGNORE_MKEY | IB_MAD_IGNORE_BKEY? > This matches the behavior of the FW better and lets existing code > such as sysfs.c remain unchanged. > > - This last comment is just taste and maybe I'm wrong, but I don't > see much advantage to defining a separate function build_smp_wc() > that is only called from one place. > > Thanks, > Roland Ok, I addressed all of these except the "C++-style" comment which I dont understand. Roland - how are these parameters in my code different from the next line where I see struct mad* in_mad? What is C++ about them? I got rid of some lines of code by reusing the build_smp_wc function, so that shall be fine too now. While I was at it, I saw what seems like a small bug: when local_completions generates a wc, the port number field was uninitialised. After the patch the wc is now built in the build_smp_wc function, everything will be now initialised, so that will be fixed. Patch attached, I think it shall be fine to go in now. Pls apply. Signed-off-by: Michael S. Tsirkin Index: include/ib_verbs.h =================================================================== --- include/ib_verbs.h (revision 1498) +++ include/ib_verbs.h (working copy) @@ -684,9 +684,12 @@ struct ib_fmr { }; struct ib_mad; +struct ib_grh; enum ib_process_mad_flags { - IB_MAD_IGNORE_MKEY = 1 + IB_MAD_IGNORE_MKEY = 1, + IB_MAD_IGNORE_BKEY = 2, + IB_MAD_IGNORE_ALL = 3 }; enum ib_mad_result { @@ -812,7 +815,8 @@ struct ib_device { int (*process_mad)(struct ib_device *device, int process_mad_flags, u8 port_num, - u16 source_lid, + struct ib_wc* in_wc, + struct ib_grh* in_grh, struct ib_mad *in_mad, struct ib_mad *out_mad); Index: core/mad.c =================================================================== --- core/mad.c (revision 1498) +++ core/mad.c (working copy) @@ -614,6 +614,23 @@ static void snoop_recv(struct ib_mad_qp_ spin_unlock_irqrestore(&qp_info->snoop_lock, flags); } +static void build_smp_wc(u64 wr_id, u16 slid, u16 pkey_index, u8 port_num, + struct ib_wc* wc) +{ + memset(wc,0,sizeof *wc); + wc->wr_id = wr_id; + wc->status = IB_WC_SUCCESS; + wc->opcode = IB_WC_RECV; + wc->pkey_index = pkey_index; + wc->byte_len = sizeof(struct ib_mad) + sizeof(struct ib_grh); + wc->src_qp = IB_QP0; + wc->qp_num = IB_QP0; + wc->slid = slid; + wc->sl = 0; + wc->dlid_path_bits = 0; + wc->port_num = port_num; +} + /* * Return 0 if SMP is to be sent * Return 1 if SMP was consumed locally (whether or not solicited) @@ -629,6 +646,7 @@ static int handle_outgoing_dr_smp(struct struct ib_mad_private *mad_priv; struct ib_device *device = mad_agent_priv->agent.device; u8 port_num = mad_agent_priv->agent.port_num; + struct ib_wc mad_wc; if (!smi_handle_dr_smp_send(smp, device->node_type, port_num)) { ret = -EINVAL; @@ -658,7 +676,12 @@ static int handle_outgoing_dr_smp(struct kfree(local); goto out; } - ret = device->process_mad(device, 0, port_num, smp->dr_slid, + + build_smp_wc(send_wr->wr_id, smp->dr_slid, send_wr->wr.ud.pkey_index, + send_wr->wr.ud.port_num, &mad_wc); + + /* No grh for dr smp. */ + ret = device->process_mad(device, 0, port_num, &mad_wc, NULL, (struct ib_mad *)smp, (struct ib_mad *)&mad_priv->mad); switch (ret) @@ -1594,7 +1617,7 @@ local: ret = port_priv->device->process_mad(port_priv->device, 0, port_priv->port_num, - wc->slid, + wc, &recv->grh, &recv->mad.mad, &response->mad.mad); if (ret & IB_MAD_RESULT_SUCCESS) { @@ -2014,19 +2037,10 @@ static void local_completions(void *data * Defined behavior is to complete response * before request */ - wc.wr_id = local->wr_id; - wc.status = IB_WC_SUCCESS; - wc.opcode = IB_WC_RECV; - wc.vendor_err = 0; - wc.byte_len = sizeof(struct ib_mad) + - sizeof(struct ib_grh); - wc.src_qp = IB_QP0; - wc.wc_flags = 0; /* No GRH */ - wc.pkey_index = 0; - wc.slid = IB_LID_PERMISSIVE; - wc.sl = 0; - wc.dlid_path_bits = 0; - wc.qp_num = IB_QP0; + build_smp_wc(local->wr_id, IB_LID_PERMISSIVE, + 0 /* pkey index */, + mad_agent_priv->agent.port_num, &wc); + local->mad_priv->header.recv_wc.wc = &wc; local->mad_priv->header.recv_wc.mad_len = sizeof(struct ib_mad); Index: core/sysfs.c =================================================================== --- core/sysfs.c (revision 1498) +++ core/sysfs.c (working copy) @@ -315,8 +315,8 @@ static ssize_t show_pma_counter(struct i in_mad->data[41] = p->port_num; /* PortSelect field */ - if ((p->ibdev->process_mad(p->ibdev, IB_MAD_IGNORE_MKEY, p->port_num, 0xffff, - in_mad, out_mad) & + if ((p->ibdev->process_mad(p->ibdev, IB_MAD_IGNORE_MKEY, + p->port_num, NULL, NULL, in_mad, out_mad) & (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) != (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) { ret = -EINVAL; Index: hw/mthca/mthca_dev.h =================================================================== --- hw/mthca/mthca_dev.h (revision 1498) +++ hw/mthca/mthca_dev.h (working copy) @@ -381,7 +381,8 @@ int mthca_multicast_detach(struct ib_qp int mthca_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num, - u16 slid, + struct ib_wc* in_wc, + struct ib_grh* in_grh, struct ib_mad *in_mad, struct ib_mad *out_mad); int mthca_create_agents(struct mthca_dev *dev); Index: hw/mthca/mthca_mad.c =================================================================== --- hw/mthca/mthca_mad.c (revision 1498) +++ hw/mthca/mthca_mad.c (working copy) @@ -185,12 +185,14 @@ static void forward_trap(struct mthca_de int mthca_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num, - u16 slid, + struct ib_wc* in_wc, + struct ib_grh* in_grh, struct ib_mad *in_mad, struct ib_mad *out_mad) { int err; u8 status; + u16 slid = in_wc ? in_wc->slid : IB_LID_PERMISSIVE; /* Forward locally generated traps to the SM */ if (in_mad->mad_hdr.method == IB_MGMT_METHOD_TRAP && From roland at topspin.com Mon Jan 10 08:30:09 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 10 Jan 2005 08:30:09 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050110134729.GH2351@cern.ch> (Andras Horvath's message of "Mon, 10 Jan 2005 14:47:29 +0100") References: <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> Message-ID: <521xct1c32.fsf@topspin.com> Andras> I'm using 'modprobe ib_mthca msi_x=1', and 'MSI INIT Andras> SUCCESS' is there but /proc/interrupts doesn't show MSI Andras> being used so I'm puzzled a bit. See dmesg output below. It seems you have an ancient firmware version (1.18). MSI-X will not work correctly with firmware older than 3.3.2. In fact it seems likely that with your FW, the HCA does not even expose an MSI-X PCI capability. If you do lspci -v, do you see a capability like Capabilities: [40] MSI-X: Enable+ Mask- TabSize=32 or Capabilities: [40] #11 [801f] for your HCA? (Only alpha pciutils 2.1.99 can decode MSI-X capabilities, so you'll probably see the second version if you see anything). If there is no such capability then the driver won't be able to enable MSI-X interrupts and you'll see the behavior you describe. - R. From shaharf at voltaire.com Mon Jan 10 08:30:21 2005 From: shaharf at voltaire.com (shaharf) Date: Mon, 10 Jan 2005 18:30:21 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access Message-ID: > > Personally I think that non binary format is better when applicable - > > this mean issm file (you can say it is Plan9 style...). It would not > > necessarily use the open method. You may want to use the write method > > and to enable everyone read the file. This read may return the pid of > > the owner (== the first to write something into the file). > > [... ] > > Ugh ... reads returning a value different from write. > Michael, I think you are confusing things. Read may return a different value then write. There are many examples to that: pipes, named sockets, device files, etc. What you probably mean is that read and write should use the same type. This is OK. You can write your pid if you want. Anyway it is a minor issue. > In my humble opinion, the cleanest approach would be to simply have > a file which we can write 1 toset is sm and 0 to clean is sm, > read returning the current value. > > Close would clean the bit, if set. > > If set to 1, write of 1 would fail. > > I think this is almost implementable over sysfs, except that > we dont get a hook on "close". Maybe we shall just try to add > a "close" hook to sysfs, and push it upstream? > Thinking about it, I think there is another alternative which maybe cleaner: automatically raise the issm bit if someone registers to answer sminfo attr. The cleanup will be of course when it will be de-registered. There is a lot of sense in it: if you set the issm you should be expected to reply sminfo. Roland (or everybody) what do you think about that? Shahar From eitan at mellanox.co.il Mon Jan 10 08:33:26 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Mon, 10 Jan 2005 18:33:26 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD ac cess Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEBDC@mtlex01.yok.mtl.com> Shahar, > Thinking about it, I think there is another alternative which maybe > cleaner: automatically raise the issm bit if someone registers to answer > sminfo attr. The cleanup will be of course when it will be > de-registered. There is a lot of sense in it: if you set the issm you > should be expected to reply sminfo. > Roland (or everybody) what do you think about that? I thought there is a way to register for a class not one attribute at a time ? Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -------------- next part -------------- An HTML attachment was scrubbed... URL: From halr at voltaire.com Mon Jan 10 08:32:11 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 10 Jan 2005 11:32:11 -0500 Subject: [openib-general] [PATCH] process_mad extension In-Reply-To: <20050110151807.GI27011@mellanox.co.il> References: <20041230164608.GA12143@mellanox.co.il> <20050109223750.GA28353@mellanox.co.il> <52652611zp.fsf@topspin.com> <20050110151807.GI27011@mellanox.co.il> Message-ID: <1105374731.4649.343.camel@localhost.localdomain> On Mon, 2005-01-10 at 10:18, Michael S. Tsirkin wrote: > While I was at it, I saw what seems like a small bug: when local_completions > generates a wc, the port number field was uninitialised. Yes, that is a bug (but would only show up if this is used on a switch (as wc.port_num is only valid for DR SMPs on switches) which has not yet been done yet as far as I know). Can you test this ? -- Hal From shaharf at voltaire.com Mon Jan 10 08:38:37 2005 From: shaharf at voltaire.com (shaharf) Date: Mon, 10 Jan 2005 18:38:37 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access Message-ID: Shahar, > Thinking about it, I think there is another alternative which maybe > cleaner: automatically raise the issm bit if someone registers to answer > sminfo attr. The cleanup will be of course when it will be > de-registered. There is a lot of sense in it: if you set the issm you > should be expected to reply sminfo. > Roland (or everybody) what do you think about that? I thought there is a way to register for a class not one attribute at a time ? Yes, but when you want to respond to attributes you have to specify a mask. Using that mask you can register to any attribute set you want. Shahar -------------- next part -------------- An HTML attachment was scrubbed... URL: From mst at mellanox.co.il Mon Jan 10 08:42:07 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 10 Jan 2005 18:42:07 +0200 Subject: [openib-general] [PATCH] process_mad extension In-Reply-To: <1105374731.4649.343.camel@localhost.localdomain> References: <20041230164608.GA12143@mellanox.co.il> <20050109223750.GA28353@mellanox.co.il> <52652611zp.fsf@topspin.com> <20050110151807.GI27011@mellanox.co.il> <1105374731.4649.343.camel@localhost.localdomain> Message-ID: <20050110164207.GA4137@mellanox.co.il> Hello! Quoting r. Hal Rosenstock (halr at voltaire.com) "Re: [openib-general] [PATCH] process_mad extension": > On Mon, 2005-01-10 at 10:18, Michael S. Tsirkin wrote: > > While I was at it, I saw what seems like a small bug: when local_completions > > generates a wc, the port number field was uninitialised. > > Yes, that is a bug (but would only show up if this is used on a switch > (as wc.port_num is only valid for DR SMPs on switches) which has not yet > been done yet as far as I know). Can you test this ? > Unfortunately, I dont have a switch running the gen2 stack now :) Well, anyway, if my patch goes in, it gets fixed as a side-effect. mst From roland at topspin.com Mon Jan 10 08:42:27 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 10 Jan 2005 08:42:27 -0800 Subject: [openib-general] Re: [PATCH] process_mad extension In-Reply-To: <20050110151807.GI27011@mellanox.co.il> (Michael S. Tsirkin's message of "Mon, 10 Jan 2005 17:18:07 +0200") References: <20041230164608.GA12143@mellanox.co.il> <20050109223750.GA28353@mellanox.co.il> <52652611zp.fsf@topspin.com> <20050110151807.GI27011@mellanox.co.il> Message-ID: <52wtulz158.fsf@topspin.com> Michael> Ok, I addressed all of these except the "C++-style" Michael> comment which I dont understand. Roland - how are these Michael> parameters in my code different from the next line where Michael> I see struct mad* in_mad? What is C++ about them? Compare the spacing of 'ib_grh* ' with 'ib_mad *': + struct ib_grh* in_grh, struct ib_mad *in_mad, I call declarations like "type* name" C++-style since Stroustrap seems to use it in his book. In any case I'll fix this up by hand and apply. Thanks, Roland From eitan at mellanox.co.il Mon Jan 10 08:43:05 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Mon, 10 Jan 2005 18:43:05 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD ac cess Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEBDD@mtlex01.yok.mtl.com> Shahar> Yes, but when you want to respond to attributes you have to specify a mask. Using that mask you can register to any attribute set you want. Yes, but if the application (that is not an SM) will use a mask that has the sminfo set - it will be considered an SM. I would prefer having the SMBit stay on when the SM dies then having spurious SMBit transitions. It will take more resources from the SM when these bits will start to change. Also you will need to start ref-counting on the port since several apps can share it and they will not obey the rule for not masking the sminfo if they are not SMs. Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -------------- next part -------------- An HTML attachment was scrubbed... URL: From shaharf at voltaire.com Mon Jan 10 08:56:04 2005 From: shaharf at voltaire.com (shaharf) Date: Mon, 10 Jan 2005 18:56:04 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access Message-ID: Eitan, the main (and only) purpose of the IS_SM bit is for SM to SM coordination. As a matter of fact it means that when discavering a port with this bit you have to query it with sminfo to see if he is the master or maybe it should be the master. There is not other use. Having an application other then the SM respond to the sminfo would not work in the current scheme. As a matter of fact it maybe catastrophic - meaning it may lead to multiple masters SM in the subnet!!! I really don't understand what resources you refer to. I think I know the OpenSM pretty well but maybe I have new things to learn. Please enlighten me. Ref-counting too is useless. There should be only one SM on the port. I see not reason to change that. Shahar ________________________________ From: Eitan Zahavi [mailto:eitan at mellanox.co.il] Sent: Monday, January 10, 2005 6:43 PM To: shaharf; Eitan Zahavi; Michael S. Tsirkin; Roland Dreier Cc: openib-general at openib.org Subject: RE: [openib-general] Some Missing Features from mthca/user MAD access Shahar> Yes, but when you want to respond to attributes you have to specify a mask. Using that mask you can register to any attribute set you want. Yes, but if the application (that is not an SM) will use a mask that has the sminfo set - it will be considered an SM. I would prefer having the SMBit stay on when the SM dies then having spurious SMBit transitions. It will take more resources from the SM when these bits will start to change. Also you will need to start ref-counting on the port since several apps can share it and they will not obey the rule for not masking the sminfo if they are not SMs. Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -------------- next part -------------- An HTML attachment was scrubbed... URL: From mst at mellanox.co.il Mon Jan 10 08:59:38 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 10 Jan 2005 18:59:38 +0200 Subject: [openib-general] Re: [PATCH] process_mad extension In-Reply-To: <52wtulz158.fsf@topspin.com> References: <20041230164608.GA12143@mellanox.co.il> <20050109223750.GA28353@mellanox.co.il> <52652611zp.fsf@topspin.com> <20050110151807.GI27011@mellanox.co.il> <52wtulz158.fsf@topspin.com> Message-ID: <20050110165938.GB4137@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "Re: [PATCH] process_mad extension": > Michael> Ok, I addressed all of these except the "C++-style" > Michael> comment which I dont understand. Roland - how are these > Michael> parameters in my code different from the next line where > Michael> I see struct mad* in_mad? What is C++ about them? > > Compare the spacing of 'ib_grh* ' with 'ib_mad *': > > + struct ib_grh* in_grh, > struct ib_mad *in_mad, > > I call declarations like "type* name" C++-style since Stroustrap seems > to use it in his book. Oh. Sorry about that. I wish whitespace issues were documented better in Documentation/CodingStyle. BTW Bjarne's surname is "Stroustrup". > In any case I'll fix this up by hand and apply. > > Thanks, > Roland Oh, you shouldnt have bothered. Thanks, MST From mst at mellanox.co.il Mon Jan 10 09:05:19 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 10 Jan 2005 19:05:19 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: Message-ID: <20050110170518.GC4137@mellanox.co.il> Hello! Quoting r. shaharf (shaharf at voltaire.com) "RE: [openib-general] Some Missing Features from mthca/user MAD access": > Eitan, the main (and only) purpose of the IS_SM bit is for SM to SM > coordination. As a matter of fact it means that when discavering a port with > this bit you have to query it with sminfo to see if he is the master or maybe > it should be the master. There is not other use. BTW I thought maybe sending a query to the SM LID from another node and use the is sm bit to check whether opensm is running on the subnet is a useful trick. Because I think kernel + hardware will answer that even if user-space opensm is slow of blocked on something. Right? So that will be a slightly different use of the IS_SM bit. MST From halr at voltaire.com Mon Jan 10 09:08:46 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 10 Jan 2005 12:08:46 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: <20050110170518.GC4137@mellanox.co.il> References: <20050110170518.GC4137@mellanox.co.il> Message-ID: <1105376926.4649.386.camel@localhost.localdomain> On Mon, 2005-01-10 at 12:05, Michael S. Tsirkin wrote: > Because I think kernel + hardware will answer that even if user-space > opensm is slow of blocked on something. Right? The kernel only hands the incoming request to OpenSM for response. -- Hal From shaharf at voltaire.com Mon Jan 10 09:15:51 2005 From: shaharf at voltaire.com (shaharf) Date: Mon, 10 Jan 2005 19:15:51 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD access Message-ID: Michael, What you are proposing is a new mechanism. It may be good or not. Yes you can invent new mechanisms to use the is_sm bit. Right now there is none except the sminfo handshake. Even if you invent new mechanisms to use the IS_SM bit, it does not change the following fact: if you set the IS_SM bit you should reply to sminfo. This is out of our control. This is how the discovery is defined in the IB spec. Letting other applications to set the IS_SM but without responding to SMINFO is annoying in the best case and very dangerous in the other cases. In most cases it would mean that the SM (any SM) will not be able to work because it will fail to register to SMINFO. And NO, the kernel can not respond to the sminfo requests because it doesn't know its state. Again failing to report the correct state may end with multiple MASTER SMS on the subnet. Shahar > -----Original Message----- > From: Michael S. Tsirkin [mailto:mst at mellanox.co.il] > Sent: Monday, January 10, 2005 7:05 PM > To: shaharf > Cc: Eitan Zahavi; Roland Dreier; openib-general at openib.org > Subject: Re: [openib-general] Some Missing Features from mthca/user MAD > access > > Hello! > Quoting r. shaharf (shaharf at voltaire.com) "RE: [openib-general] Some > Missing Features from mthca/user MAD access": > > Eitan, the main (and only) purpose of the IS_SM bit is for SM to SM > > coordination. As a matter of fact it means that when discavering a port > with > > this bit you have to query it with sminfo to see if he is the master or > maybe > > it should be the master. There is not other use. > > BTW I thought maybe sending a query to the SM LID from another node > and use the is sm bit to check whether opensm is running on the subnet > is a useful trick. > > Because I think kernel + hardware will answer that even if user-space > opensm is slow of blocked on something. > > Right? So that will be a slightly different use of the IS_SM bit. > > MST From iod00d at hp.com Mon Jan 10 10:05:27 2005 From: iod00d at hp.com (Grant Grundler) Date: Mon, 10 Jan 2005 10:05:27 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050108203741.GA10493@mellanox.co.il> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> <1105050852.14325.57.camel@duffman> <20050107001815.GD23985@esmail.cup.hp.com> <20050107113904.GB2231@mellanox.co.il> <20050107171738.GA28289@esmail.cup.hp.com> <20050108203741.GA10493@mellanox.co.il> Message-ID: <20050110180527.GA6198@esmail.cup.hp.com> On Sat, Jan 08, 2005 at 10:37:41PM +0200, Michael S. Tsirkin wrote: > We always can do the config space hack, but its much slower > and has the disadvantage of not being atomic (two config accesses > are needed for one memory access) and other disadvantages. yeah - config can be *very* slow. parisc-linux port wasn't relocating the PDC (system firmware) to RAM and each PDC Config space access was costing 20ms (yes, *milli*seconds). ie 32 seconds to upload tg3 firmware (1600 cfg writes). I rewrote the PCI support to go directly to HW (PCI Host bus controller) and we are back to microseconds again. > OK, I'll write a small test that just maps the memory, > to make sure there's no other bug. I'm not sure that is necessary. I expect PCI bus resources to be "normalized" to take the host:bus mappings into account. PCI bus support is responsible for fixing up the advertised "resources" to be host addresses. My point is use "resources" that show up in /proc/iomem and do not directly access PCI BARs for this. I previously reccomended studying the pciutils package. But I looked up http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml and it's clearly only intended for PCI Config space access. I don't know if there is some standard way to get a device's resources other than fishing through /proc/iomem. Ah, it's under /sys as well - /sys/bus/pci/devices/0000:30:02.0/resources. 64-bit PARISC (and ISTR alpha and sparc64) do not have 1:1 host:bus mappings. E.g: ... fffffffff8000000-fffffffff87fffff : PCI00 LMMIO ... fffffffffb050000-fffffffffb051fff : 0000:30:02.0 fffffffffb050000-fffffffffb051fff : sym53c8xx ... grundler at gsyprf11:~$ lspci -vvs 30:02.0 0000:30:02.0 SCSI storage controller: LSI Logic / Symbios Logic 53C896/897 (rev 01) Subsystem: Hewlett-Packard Company: Unknown device 10f6 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr+ Stepping- SERR+ FastB2B- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR- grundler <514>cat resource 0x0000000000030000 0x00000000000300ff 0x0000000000000101 0xfffffffffb054000 0xfffffffffb0543ff 0x0000000000000204 0x0000000000000000 0x0000000000000000 0x0000000000000000 0xfffffffffb050000 0xfffffffffb051fff 0x0000000000000204 0x0000000000000000 0x0000000000000000 0x0000000000000000 0x0000000000000000 0x0000000000000000 0x0000000000000000 0xfffffffffb000000 0xfffffffffb01ffff 0x0000000000007200 grundler <515>pwd /sys/bus/pci/devices/0000:30:02.0 Note that this is a 64-bit device assigned 32-bit PCI Bus addresses. The host address uses 64-bits. I expect most "larger" (defined by having more than a dozen or so PCI slots) platforms to do this sort of thing. hth, grant From tduffy at sun.com Mon Jan 10 10:26:58 2005 From: tduffy at sun.com (Tom Duffy) Date: Mon, 10 Jan 2005 10:26:58 -0800 Subject: [openib-general] openIB + RTAI, kernel freezing... In-Reply-To: <506C3D7B14CDD411A52C00025558DED6064BED71@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6064BED71@mtlex01.yok.mtl.com> Message-ID: <1105381618.8427.1.camel@duffman> On Sun, 2005-01-09 at 18:03 +0200, Tziporet Koren wrote: > gen1 modules does not support kernel 2.6.7. > > We all focus on gen2 development now. Von, If you grab Linus's latest 2.6.10-bk tree, it has gen2 in it already. Or wait til 2.6.11 final. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From iod00d at hp.com Mon Jan 10 11:03:19 2005 From: iod00d at hp.com (Grant Grundler) Date: Mon, 10 Jan 2005 11:03:19 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050108210747.GA10567@mellanox.co.il> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> <1105050852.14325.57.camel@duffman> <20050107001815.GD23985@esmail.cup.hp.com> <20050107113904.GB2231@mellanox.co.il> <20050107171738.GA28289@esmail.cup.hp.com> <20050108210747.GA10567@mellanox.co.il> Message-ID: <20050110190319.GB6198@esmail.cup.hp.com> On Sat, Jan 08, 2005 at 11:07:47PM +0200, Michael S. Tsirkin wrote: > That may be the case, but on sparc64 it does not > appear to be the case: > > /* On sparc64 we have the whole physical IO address space accessible > * * using physically addressed loads and stores, so this does nothing. > * */ > static inline void __iomem *ioremap(unsigned long offset, unsigned long > size) > { > return (void __iomem *)offset; > } No - this just means the address can be used as-is and the VM will DTRT when presented this address. Look at arch/sparc64/kernel/pci_psycho.c:psycho_base_address_update(). The last line of code in that routine forces the top half of a 64-bit BAR to zero. The host address Tom dumped in the followup to your email was > 32-bits: 1ff00000000-1ff7fffffff : PSYCHO0 PBMA 1ff000a0000-1ff000bffff : Video RAM area 1ff000c0000-1ff000c7fff : Video ROM 1ff000f0000-1ff000fffff : System ROM 1ff00100000-1ff001fffff : 0000:81:00.0 1ff00180680-1ff0018070f : ib_mthca 1ff001f00d8-1ff001f00df : ib_mthca ... One this platform, the base offset for this PCI bus is 0x1ff in the top 32-bits of the host address. hth, grant From halr at voltaire.com Mon Jan 10 11:29:49 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 10 Jan 2005 14:29:49 -0500 Subject: [openib-general] A Couple of verbs/mthca/firmware questions In-Reply-To: <20041215060920.GA11501@mellanox.co.il> References: <004001c4defc$a9f2c100$6501a8c0@comcast.net> <20041215060920.GA11501@mellanox.co.il> Message-ID: <1105385389.4649.550.camel@localhost.localdomain> On Wed, 2004-12-15 at 01:09, Michael S. Tsirkin wrote: > Hello! > Here's the answer from our firmware developers: > > Quoting r. Hal Rosenstock (hnrose at earthlink.net) "[openib-general] A Couple of verbs/mthca/firmware questions": > > 2. If a status is set in the MAD header and a post_send is issued on > > that MAD, should that status be sent in the packet ? Is there any > > conversion of the status field which might occur ? > > 2. no conversion and no modification is done to the MAD. This turned out to be a firmware issue and is fixed in Tavor 3.3.2. This issue is now resolved. -- Hal From eitan at mellanox.co.il Mon Jan 10 12:08:25 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Mon, 10 Jan 2005 22:08:25 +0200 Subject: [openib-general] Some Missing Features from mthca/user MAD ac cess Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEBE3@mtlex01.yok.mtl.com> I'm sorry if I did not explain myself very well. I did not mean to say another application will respond to SMInfo. Nor I claimed that SMInfo should be used for anything else but SM to SM discovery. I only referred to the idea that one can set the SM bit by inspecting the mask of registrations to mad filtering requests. I assume that one can register by supplying a mask. Now - you probably do not have any control over the mask an arbitrary application might use. So depending on it not to set the SMInfo bit (even though it will not process the mads) is too risky in my mind. However, from your response it seems like only one client is allowed to register as the receiver for incoming requests of specific attribute. Is this correct? If this is the case then a careless application can block the SM from obtaining any SMInfo or other queries. Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -----Original Message----- From: shaharf [mailto:shaharf at voltaire.com] Sent: Monday, January 10, 2005 6:56 PM To: Eitan Zahavi; Michael S. Tsirkin; Roland Dreier Cc: openib-general at openib.org Subject: RE: [openib-general] Some Missing Features from mthca/user MAD access Eitan, the main (and only) purpose of the IS_SM bit is for SM to SM coordination. As a matter of fact it means that when discavering a port with this bit you have to query it with sminfo to see if he is the master or maybe it should be the master. There is not other use. Having an application other then the SM respond to the sminfo would not work in the current scheme. As a matter of fact it maybe catastrophic - meaning it may lead to multiple masters SM in the subnet!!! I really don't understand what resources you refer to. I think I know the OpenSM pretty well but maybe I have new things to learn. Please enlighten me. Ref-counting too is useless. There should be only one SM on the port. I see not reason to change that. Shahar _____ From: Eitan Zahavi [mailto:eitan at mellanox.co.il] Sent: Monday, January 10, 2005 6:43 PM To: shaharf; Eitan Zahavi; Michael S. Tsirkin; Roland Dreier Cc: openib-general at openib.org Subject: RE: [openib-general] Some Missing Features from mthca/user MAD access Shahar> Yes, but when you want to respond to attributes you have to specify a mask. Using that mask you can register to any attribute set you want. Yes, but if the application (that is not an SM) will use a mask that has the sminfo set - it will be considered an SM. I would prefer having the SMBit stay on when the SM dies then having spurious SMBit transitions. It will take more resources from the SM when these bits will start to change. Also you will need to start ref-counting on the port since several apps can share it and they will not obey the rule for not masking the sminfo if they are not SMs. Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -------------- next part -------------- An HTML attachment was scrubbed... URL: From halr at voltaire.com Mon Jan 10 12:44:04 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 10 Jan 2005 15:44:04 -0500 Subject: [openib-general] [PATCH] process_mad extension In-Reply-To: <20050110151807.GI27011@mellanox.co.il> References: <20041230164608.GA12143@mellanox.co.il> <20050109223750.GA28353@mellanox.co.il> <52652611zp.fsf@topspin.com> <20050110151807.GI27011@mellanox.co.il> Message-ID: <1105389844.4649.583.camel@localhost.localdomain> On Mon, 2005-01-10 at 10:18, Michael S. Tsirkin wrote: One minor change to mad.c which I just applied: > @@ -2014,19 +2037,10 @@ static void local_completions(void *data > * Defined behavior is to complete response > * before request > */ > - wc.wr_id = local->wr_id; > - wc.status = IB_WC_SUCCESS; > - wc.opcode = IB_WC_RECV; > - wc.vendor_err = 0; > - wc.byte_len = sizeof(struct ib_mad) + > - sizeof(struct ib_grh); > - wc.src_qp = IB_QP0; > - wc.wc_flags = 0; /* No GRH */ > - wc.pkey_index = 0; > - wc.slid = IB_LID_PERMISSIVE; > - wc.sl = 0; > - wc.dlid_path_bits = 0; > - wc.qp_num = IB_QP0; > + build_smp_wc(local->wr_id, IB_LID_PERMISSIVE, > + 0 /* pkey index */, > + mad_agent_priv->agent.port_num, &wc); > + ^^^^^^^^^^^^^^ recv_mad_agent -- Hal From halr at voltaire.com Mon Jan 10 13:01:44 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 10 Jan 2005 16:01:44 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD ac cess In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEBE3@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6047EEBE3@mtlex01.yok.mtl.com> Message-ID: <1105390706.4649.598.camel@localhost.localdomain> Hi Eitan, On Mon, 2005-01-10 at 15:08, Eitan Zahavi wrote: > I assume that one can register by supplying a mask. The mask is not for attributes but for methods. There is no filtering/demultiplexing for attribute. > However, from your response it seems like only one client is allowed > to register as the receiver for incoming requests of specific > attribute. Is this correct? There are different receive modes (the two main ones are via method mask (per management class) and the other is solicited via transaction ID; see ib_mad.h) but the bottom line is that other than snooping right now, there is at most one client for an incoming MAD. SMInfo can be handled in either mode but once a client registers using the method mask (for SM classes (LR and/or DR) get and set methods), no other client can although they can work via TID. I think there is sufficient flexibility here to support what is needed. In fact, there already is an sminfo utility which outside the SM "polls" SMInfo on a node. Usage: bin/sminfo [-d(ebug)] [-s state] [-p prio] [-a activity] [-D(irect)] [-t timeout_ms] -- Hal From halr at voltaire.com Mon Jan 10 13:22:30 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 10 Jan 2005 16:22:30 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD access In-Reply-To: References: Message-ID: <1105392150.4649.615.camel@localhost.localdomain> On Mon, 2005-01-10 at 11:30, shaharf wrote: > Thinking about it, I think there is another alternative which maybe > cleaner: automatically raise the issm bit if someone registers to answer > sminfo attr. There is no such registration currently so this approach is moot. -- Hal From mshefty at ichips.intel.com Mon Jan 10 13:54:11 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Mon, 10 Jan 2005 13:54:11 -0800 Subject: [openib-general] Some Missing Features from mthca/user MAD ac cess In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEBE3@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6047EEBE3@mtlex01.yok.mtl.com> Message-ID: <41E2F983.1010309@ichips.intel.com> Eitan Zahavi wrote: > However, from your response it seems like only one client is allowed to > register as the receiver for incoming requests of specific attribute. Is > this correct? If this is the case then a careless application can block the > SM from obtaining any SMInfo or other queries. This restriction is to avoid performing data copies on received MADs. In the kernel, clients are handed the data buffer(s) associated with a receive. Since user-mode requires a data copy anyway, I'm wondering if it makes more sense for all user-mode clients to register in the kernel to snoop MADs, rather than to receive them. The user-mode interface could then be modified to support more flexible filtering options. - Sean From halr at voltaire.com Mon Jan 10 14:01:08 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 10 Jan 2005 17:01:08 -0500 Subject: [openib-general] Some Missing Features from mthca/user MAD ac cess In-Reply-To: <41E2F983.1010309@ichips.intel.com> References: <506C3D7B14CDD411A52C00025558DED6047EEBE3@mtlex01.yok.mtl.com> <41E2F983.1010309@ichips.intel.com> Message-ID: <1105394468.4649.622.camel@localhost.localdomain> On Mon, 2005-01-10 at 16:54, Sean Hefty wrote: > This restriction is to avoid performing data copies on received MADs. > In the kernel, clients are handed the data buffer(s) associated with a > receive. > > Since user-mode requires a data copy anyway, I'm wondering if it makes > more sense for all user-mode clients to register in the kernel to snoop > MADs, rather than to receive them. The user-mode interface could then > be modified to support more flexible filtering options. Would this allow richer filtering options or also allow multiple receivers for the same MAD ? Any idea on what the interface would look like ? Would it support attribute ID ? What else ? Are there any compelling reasons to do this ? -- Hal From mshefty at ichips.intel.com Mon Jan 10 14:17:38 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Mon, 10 Jan 2005 14:17:38 -0800 Subject: [openib-general] Some Missing Features from mthca/user MAD ac cess In-Reply-To: <1105394468.4649.622.camel@localhost.localdomain> References: <506C3D7B14CDD411A52C00025558DED6047EEBE3@mtlex01.yok.mtl.com> <41E2F983.1010309@ichips.intel.com> <1105394468.4649.622.camel@localhost.localdomain> Message-ID: <41E2FF02.7020205@ichips.intel.com> Hal Rosenstock wrote: >>Since user-mode requires a data copy anyway, I'm wondering if it makes >>more sense for all user-mode clients to register in the kernel to snoop >>MADs, rather than to receive them. The user-mode interface could then >>be modified to support more flexible filtering options. > > Would this allow richer filtering options or also allow multiple > receivers for the same MAD ? Yes to both. The filtering options would be dependent on the user-mode API and the user_mad implementation in the kernel. I wouldn't think that the kernel MAD implementation would need to change. I was just trying to point out that the main benefit to the API in the kernel doesn't apply in user-mode. > Any idea on what the interface would look like ? Would it support > attribute ID ? What else ? I haven't given this more than two e-mails worth of thought, but it could be as simple as adding an attribute ID mask to something similar to the existing API. A different approach could be to provide a mask over an entire MAD header. > Are there any compelling reasons to do this ? *shrugs* The disadvantage is that two applications would both receive the same request, so they would need to have some sort of coordination between them to know which one should generate a response. (The "coordination" could be that they're coding to respond to different MADs.) - Sean From rminnich at lanl.gov Mon Jan 10 15:45:43 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Mon, 10 Jan 2005 16:45:43 -0700 (MST) Subject: [openib-general] osm in openib Message-ID: [1105400337:000955212][95E128E0] -> OpenSM Rev:openib-1.0.0 [1105400337:000956454][95E128E0] -> osm_opensm_init: Forcing single threaded dispatcher. [1105400337:000957121][95E128E0] -> osm_report_notice: Reporting Generic Notice type:3 num:66 from LID:0x0000 GUID:0xfe80000000000000,0x0000000000000000 [1105400337:000957143][95E128E0] -> osm_report_notice: Reporting Generic Notice type:3 num:66 from LID:0x0000 GUID:0xfe80000000000000,0x0000000000000000 [1105400337:000959564][95E128E0] -> osm_vendor_get_all_port_attr: assign CA 0x55fd24ort 1 guid (0x2c90108a03e61) as the default port. [1105400337:000959765][95E128E0] -> osm_sm_mad_ctrl_bind: Binding to port 0x2c90108a03e61. [1105400337:000959779][95E128E0] -> osm_vendor_bind: Binding to port 0x2c90108a03e61. [1105400337:000965333][95E128E0] -> osm_vendor_bind: Unable to Open Port 0x2c90108a03e61. [1105400337:000965349][95E128E0] -> osm_sm_mad_ctrl_bind: ERR 3118: Vendor specific bind() failed. [1105400337:000965372][95E128E0] -> osm_sm_bind: ERR 2E10: SM MAD Controller bind() failed (IB_ERROR). ib_umad is in. No kernel messages. I notice that it goes after /sys/class/blah blah just fine, but the in the middle of all opensm tries to open /dev/infiniband/umad0. Is this right? Should it be trying to open /sys/class/infiniband_umad/umad0 (which exists)? Should there be a symlink in /dev? Just trying to figure out the "correct" way to do this. Or is the non-sys name usage a hangover in opensm from the old days? thanks ron From rminnich at lanl.gov Mon Jan 10 15:55:02 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Mon, 10 Jan 2005 16:55:02 -0700 (MST) Subject: [openib-general] ignore last question Message-ID: ron is confused again. But I've done something wrong: no infiniband devices. time to go read more. ron From mshefty at ichips.intel.com Mon Jan 10 17:37:34 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Mon, 10 Jan 2005 17:37:34 -0800 Subject: [openib-general] [PATCH] Add QP type to struct ib_qp Message-ID: <20050110173734.3cc800b7.mshefty@ichips.intel.com> This adds the qp_type to the struct ib_qp. The field is used by the CM. A future update would be to examine mthca to see if it can use the same field. - Sean Index: core/verbs.c =================================================================== --- core/verbs.c (revision 1505) +++ core/verbs.c (working copy) @@ -132,6 +132,7 @@ qp->srq = qp_init_attr->srq; qp->event_handler = qp_init_attr->event_handler; qp->qp_context = qp_init_attr->qp_context; + qp->qp_type = qp_init_attr->qp_type; atomic_inc(&pd->usecnt); atomic_inc(&qp_init_attr->send_cq->usecnt); atomic_inc(&qp_init_attr->recv_cq->usecnt); Index: include/ib_verbs.h =================================================================== --- include/ib_verbs.h (revision 1505) +++ include/ib_verbs.h (working copy) @@ -659,6 +659,7 @@ void (*event_handler)(struct ib_event *, void *); void *qp_context; u32 qp_num; + enum ib_qp_type qp_type; }; struct ib_mr { From mshefty at ichips.intel.com Mon Jan 10 17:50:26 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Mon, 10 Jan 2005 17:50:26 -0800 Subject: [openib-general] [PATCH] update to GID/PKey cache Message-ID: <20050110175026.042c69b7.mshefty@ichips.intel.com> This patch adds a new call to find a port on a device given a GID. It also adds documentation for the calls in ib_cache.h, and renames the calls to better match the format of the core API routines. (The CM needs the new routine even if the name changes are not accepted.) - Sean Index: core/cache.c =================================================================== --- core/cache.c (revision 1505) +++ core/cache.c (working copy) @@ -65,8 +65,8 @@ return device->node_type == IB_NODE_SWITCH ? 0 : device->phys_port_cnt; } -int ib_cached_gid_get(struct ib_device *device, - u8 port, +int ib_get_cached_gid(struct ib_device *device, + u8 port_num, int index, union ib_gid *gid) { @@ -74,12 +74,12 @@ unsigned long flags; int ret = 0; - if (port < start_port(device) || port > end_port(device)) + if (port_num < start_port(device) || port_num > end_port(device)) return -EINVAL; read_lock_irqsave(&device->cache.lock, flags); - cache = device->cache.gid_cache[port - start_port(device)]; + cache = device->cache.gid_cache[port_num - start_port(device)]; if (index < 0 || index >= cache->table_len) ret = -EINVAL; @@ -90,10 +90,45 @@ return ret; } -EXPORT_SYMBOL(ib_cached_gid_get); +EXPORT_SYMBOL(ib_get_cached_gid); -int ib_cached_pkey_get(struct ib_device *device, - u8 port, +int ib_find_cached_gid(struct ib_device *device, + union ib_gid *gid, + u8 *port_num, + u16 *index) +{ + struct ib_gid_cache *cache; + unsigned long flags; + int p, i; + int ret = -ENOENT; + + *port_num = -1; + if (index) + *index = -1; + + read_lock_irqsave(&device->cache.lock, flags); + + for (p = 0; p <= end_port(device) - start_port(device); ++p) { + cache = device->cache.gid_cache[p]; + for (i = 0; i < cache->table_len; ++i) { + if (!memcmp(gid, &cache->table[i], sizeof *gid)) { + *port_num = p; + if (index) + *index = i; + ret = 0; + goto found; + } + } + } +found: + read_unlock_irqrestore(&device->cache.lock, flags); + + return ret; +} +EXPORT_SYMBOL(ib_find_cached_gid); + +int ib_get_cached_pkey(struct ib_device *device, + u8 port_num, int index, u16 *pkey) { @@ -101,12 +136,12 @@ unsigned long flags; int ret = 0; - if (port < start_port(device) || port > end_port(device)) + if (port_num < start_port(device) || port_num > end_port(device)) return -EINVAL; read_lock_irqsave(&device->cache.lock, flags); - cache = device->cache.pkey_cache[port - start_port(device)]; + cache = device->cache.pkey_cache[port_num - start_port(device)]; if (index < 0 || index >= cache->table_len) ret = -EINVAL; @@ -117,10 +152,10 @@ return ret; } -EXPORT_SYMBOL(ib_cached_pkey_get); +EXPORT_SYMBOL(ib_get_cached_pkey); -int ib_cached_pkey_find(struct ib_device *device, - u8 port, +int ib_find_cached_pkey(struct ib_device *device, + u8 port_num, u16 pkey, u16 *index) { @@ -129,12 +164,12 @@ int i; int ret = -ENOENT; - if (port < start_port(device) || port > end_port(device)) + if (port_num < start_port(device) || port_num > end_port(device)) return -EINVAL; read_lock_irqsave(&device->cache.lock, flags); - cache = device->cache.pkey_cache[port - start_port(device)]; + cache = device->cache.pkey_cache[port_num - start_port(device)]; *index = -1; @@ -149,7 +184,7 @@ return ret; } -EXPORT_SYMBOL(ib_cached_pkey_find); +EXPORT_SYMBOL(ib_find_cached_pkey); static void ib_cache_update(struct ib_device *device, u8 port) Index: include/ib_cache.h =================================================================== --- include/ib_cache.h (revision 1505) +++ include/ib_cache.h (working copy) @@ -37,16 +37,66 @@ #include -int ib_cached_gid_get(struct ib_device *device, - u8 port, +/** + * ib_get_cached_gid - Returns a cached GID table entry + * @device: The device to query. + * @port_num: The port number of the device to query. + * @index: The index into the cached GID table to query. + * @gid: The GID value found at the specified index. + * + * ib_get_cached_gid() fetches the specified GID table entry stored in + * the local software cache. + */ +int ib_get_cached_gid(struct ib_device *device, + u8 port_num, int index, union ib_gid *gid); -int ib_cached_pkey_get(struct ib_device *device_handle, - u8 port, + +/** + * ib_find_cached_gid - Returns the port number and GID table index where + * a specified GID value occurs. + * @device: The device to query. + * @gid: The GID value to search for. + * @port_num: The port number of the device where the GID value was found. + * @index: The index into the cached GID table where the GID was found. This + * parameter may be NULL. + * + * ib_find_cached_gid() searches for the specified GID value in + * the local software cache. + */ +int ib_find_cached_gid(struct ib_device *device, + union ib_gid *gid, + u8 *port_num, + u16 *index); + +/** + * ib_get_cached_pkey - Returns a cached PKey table entry + * @device: The device to query. + * @port_num: The port number of the device to query. + * @index: The index into the cached PKey table to query. + * @pkey: The PKey value found at the specified index. + * + * ib_get_cached_pkey() fetches the specified PKey table entry stored in + * the local software cache. + */ +int ib_get_cached_pkey(struct ib_device *device_handle, + u8 port_num, int index, u16 *pkey); -int ib_cached_pkey_find(struct ib_device *device, - u8 port, + +/** + * ib_find_cached_pkey - Returns the PKey table index where a specified + * PKey value occurs. + * @device: The device to query. + * @port_num: The port number of the device to search for the PKey. + * @pkey: The PKey value to search for. + * @index: The index into the cached PKey table where the PKey was found. + * + * ib_find_cached_pkey() searches the specified PKey table in + * the local software cache. + */ +int ib_find_cached_pkey(struct ib_device *device, + u8 port_num, u16 pkey, u16 *index); Index: hw/mthca/mthca_av.c =================================================================== --- hw/mthca/mthca_av.c (revision 1505) +++ hw/mthca/mthca_av.c (working copy) @@ -159,7 +159,7 @@ (be32_to_cpu(ah->av->sl_tclass_flowlabel) >> 20) & 0xff; header->grh.flow_label = ah->av->sl_tclass_flowlabel & cpu_to_be32(0xfffff); - ib_cached_gid_get(&dev->ib_dev, + ib_get_cached_gid(&dev->ib_dev, be32_to_cpu(ah->av->port_pd) >> 24, ah->av->gid_index, &header->grh.source_gid); Index: hw/mthca/mthca_qp.c =================================================================== --- hw/mthca/mthca_qp.c (revision 1505) +++ hw/mthca/mthca_qp.c (working copy) @@ -1190,11 +1190,11 @@ sqp->ud_header.lrh.source_lid = 0xffff; sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED); if (!sqp->qp.ibqp.qp_num) - ib_cached_pkey_get(&dev->ib_dev, sqp->port, + ib_get_cached_pkey(&dev->ib_dev, sqp->port, sqp->pkey_index, &sqp->ud_header.bth.pkey); else - ib_cached_pkey_get(&dev->ib_dev, sqp->port, + ib_get_cached_pkey(&dev->ib_dev, sqp->port, wr->wr.ud.pkey_index, &sqp->ud_header.bth.pkey); cpu_to_be16s(&sqp->ud_header.bth.pkey); Index: ulp/ipoib/ipoib_verbs.c =================================================================== --- ulp/ipoib/ipoib_verbs.c (revision 1505) +++ ulp/ipoib/ipoib_verbs.c (working copy) @@ -49,7 +49,7 @@ if (!qp_attr) goto out; - if (ib_cached_pkey_find(priv->ca, priv->port, priv->pkey, &pkey_index)) { + if (ib_find_cached_pkey(priv->ca, priv->port, priv->pkey, &pkey_index)) { clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags); ret = -ENXIO; goto out; @@ -104,7 +104,7 @@ * The port has to be assigned to the respective IB partition in * advance. */ - ret = ib_cached_pkey_find(priv->ca, priv->port, priv->pkey, &pkey_index); + ret = ib_find_cached_pkey(priv->ca, priv->port, priv->pkey, &pkey_index); if (ret) { clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags); return ret; Index: ulp/ipoib/ipoib_ib.c =================================================================== --- ulp/ipoib/ipoib_ib.c (revision 1505) +++ ulp/ipoib/ipoib_ib.c (working copy) @@ -630,7 +630,7 @@ struct ipoib_dev_priv *priv = netdev_priv(dev); u16 pkey_index = 0; - if (ib_cached_pkey_find(priv->ca, priv->port, priv->pkey, &pkey_index)) + if (ib_find_cached_pkey(priv->ca, priv->port, priv->pkey, &pkey_index)) clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags); else set_bit(IPOIB_PKEY_ASSIGNED, &priv->flags); From mshefty at ichips.intel.com Mon Jan 10 17:57:11 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Mon, 10 Jan 2005 17:57:11 -0800 Subject: [openib-general] [PATCH] [RFC] updated CM API Message-ID: <20050110175711.78e71c70.mshefty@ichips.intel.com> The following patch updates the CM API to match the intermediate implementation that I have. (See separate patch.) I'm posting this separately in order to get comments from users of the API. - Sean Index: include/ib_cm.h =================================================================== --- include/ib_cm.h (revision 1505) +++ include/ib_cm.h (working copy) @@ -51,10 +51,6 @@ IB_CM_MRA_REP_SENT, IB_CM_MRA_REP_RCVD, IB_CM_ESTABLISHED, - IB_CM_LAP_SENT, - IB_CM_LAP_RCVD, - IB_CM_MRA_LAP_SENT, - IB_CM_MRA_LAP_RCVD, IB_CM_DREQ_SENT, IB_CM_DREQ_RCVD, IB_CM_TIMEWAIT, @@ -63,29 +59,100 @@ }; enum ib_cm_event_type { - IB_CM_REQ_TIMEOUT, + IB_CM_REQ_ERROR, IB_CM_REQ_RECEIVED, - IB_CM_REP_TIMEOUT, + IB_CM_REP_ERROR, IB_CM_REP_RECEIVED, IB_CM_RTU_RECEIVED, - IB_CM_DREQ_TIMEOUT, + IB_CM_DREQ_ERROR, IB_CM_DREQ_RECEIVED, IB_CM_DREP_RECEIVED, IB_CM_MRA_RECEIVED, - IB_CM_LAP_TIMEOUT, + IB_CM_LAP_ERROR, IB_CM_LAP_RECEIVED, - IB_CM_APR_RECEIVED + IB_CM_APR_RECEIVED, + IB_CM_SIDR_REQ_ERROR, + IB_CM_SIDR_REQ_RECEIVED, + IB_CM_SIDR_REP_RECEIVED }; +struct ib_cm_id; + +struct ib_cm_req_event_param { + struct ib_cm_id *listen_id; + u64 service_id; + struct ib_device *device; + u8 port; + + struct ib_sa_path_rec *primary_path; + struct ib_sa_path_rec *alternate_path; + + u64 remote_ca_guid; + u32 remote_qkey; + u32 remote_qpn; + enum ib_qp_type qp_type; + + u32 starting_psn; + u8 responder_resources; + u8 initiator_depth; + int local_cm_response_timeout:5; + int flow_control:1; + int remote_cm_response_timeout:5; + int retry_count:3; + int rnr_retry_count:3; + int srq:1; +}; + +struct ib_cm_rep_event_param { + u64 remote_ca_guid; + u32 remote_qkey; + u32 remote_qpn; + u32 starting_psn; + u8 responder_resources; + u8 initiator_depth; + int target_ack_delay:5; + int failover_accepted:2; + int flow_control:1; + int rnr_retry_count:3; + int srq:1; +}; + +struct ib_cm_rej_event_param { + u16 reason; + u8 ari_length; + u8 *ari; +}; + +struct ib_cm_mra_event_param { + u8 service_timeout; +}; + +/* +struct ib_cm_lap_event_param { +}; + +struct ib_cm_apr_event_param { +}; +*/ + struct ib_cm_event { - /* a whole lot more stuff goes here */ + enum ib_cm_event_type event; + union { + struct ib_cm_req_event_param req_rcvd; + struct ib_cm_rep_event_param rep_rcvd; + struct ib_cm_rej_event_param rej_rcvd; + struct ib_cm_mra_event_param mra_rcvd; + /* + struct ib_cm_lap_event_param lap_rcvd; + struct ib_cm_apr_event_param apr_rcvd; + */ + enum ib_wc_status send_status; + } param; + void *private_data; u8 private_data_len; - enum ib_cm_event_type event; }; -struct ib_cm_id; - typedef void (*ib_cm_handler)(struct ib_cm_id *cm_id, struct ib_cm_event *event); @@ -95,6 +162,25 @@ u64 service_id; u64 service_mask; enum ib_cm_state state; + u32 local_id; /* local/request ID */ + u32 remote_id; /* connections only */ +}; + +enum ib_cm_data_size { + IB_CM_REQ_PRIVATE_DATA_SIZE = 92, + IB_CM_MRA_PRIVATE_DATA_SIZE = 222, + IB_CM_REJ_PRIVATE_DATA_SIZE = 148, + IB_CM_REP_PRIVATE_DATA_SIZE = 196, + IB_CM_RTU_PRIVATE_DATA_SIZE = 224, + IB_CM_DREQ_PRIVATE_DATA_SIZE = 220, + IB_CM_DREP_PRIVATE_DATA_SIZE = 224, + IB_CM_REJ_ARI_LENGTH = 72, + IB_CM_LAP_PRIVATE_DATA_SIZE = 168, + IB_CM_APR_PRIVATE_DATA_SIZE = 148, + IB_CM_APR_INFO_LENGTH = 72, + IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE = 216, + IB_CM_SIDR_REP_PRIVATE_DATA_SIZE = 136, + IB_CM_SIDR_REP_INFO_LENGTH = 72 }; /** @@ -135,9 +221,10 @@ struct ib_cm_req_param { struct ib_qp *qp; - struct ib_path_record *primary_path; - struct ib_path_record *alternate_path; + struct ib_sa_path_rec *primary_path; + struct ib_sa_path_rec *alternate_path; u64 service_id; + u32 starting_send_psn; void *private_data; u8 private_data_len; u8 peer_to_peer; @@ -163,8 +250,9 @@ struct ib_cm_rep_param { struct ib_qp *qp; + u32 starting_send_psn; void *private_data; - u8 reply_private_data_len; + u8 private_data_len; u8 responder_resources; u8 initiator_depth; u8 target_ack_delay; @@ -182,7 +270,7 @@ * connection. */ int ib_send_cm_rep(struct ib_cm_id *cm_id, - struct ib_cm_req_param *param); + struct ib_cm_rep_param *param); /** * ib_send_cm_rtu - Sends a connection ready to use message in response @@ -310,7 +398,7 @@ * @private_data_len: Size of the private data buffer, in bytes. */ int ib_send_cm_lap(struct ib_cm_id *cm_id, - struct ib_path_record *alternate_path, + struct ib_sa_path_rec *alternate_path, void *private_data, u8 private_data_len); @@ -351,7 +439,7 @@ u8 private_data_len); struct ib_cm_sidr_req_param { - struct ib_path_record *path; + struct ib_sa_path_rec *path; u64 service_id; int timeout_ms; void *private_data; From mshefty at ichips.intel.com Mon Jan 10 18:06:05 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Mon, 10 Jan 2005 18:06:05 -0800 Subject: [openib-general] [PATCH] [RFC] intermediate CM development Message-ID: <20050110180605.19bbb76e.mshefty@ichips.intel.com> The following adds a substantial amount of framework to the CM, but doesn't actually increase its functionality. (There's code to send a REQ message and time it out, but I haven't tested this.) Posting it for feedback before all of the state transitions are in place. If there are no substantial objections to the implementation, the CM should be ready for testing near the end of the week. - Sean Index: core/cm.c =================================================================== --- core/cm.c (revision 1505) +++ core/cm.c (working copy) @@ -33,11 +33,15 @@ * * $Id$ */ +#include #include +#include #include #include +#include #include +#include "cm_msgs.h" MODULE_AUTHOR("Sean Hefty"); MODULE_DESCRIPTION("InfiniBand CM"); @@ -55,30 +59,141 @@ static struct ib_cm { spinlock_t lock; struct rb_root service_table; + u32 id; } cm; struct cm_port { struct ib_mad_agent *mad_agent; + u64 ca_guid; + spinlock_t lock; + struct ib_mr *mr; + u8 port_num; +}; + +struct cm_msg { + struct cm_id_private *cm_id_priv; + struct ib_send_wr send_wr; + struct ib_sge sge; + u8 retry; + DECLARE_PCI_UNMAP_ADDR(mapping) + struct ib_mad mad; }; -struct ib_cm_id_private { +struct cm_id_private { struct ib_cm_id id; struct rb_node node; spinlock_t lock; wait_queue_head_t wait; atomic_t refcount; + + struct cm_port *port; + struct cm_msg *msg; + + struct ib_ah_attr ah_attr; + u16 pkey_index; + u32 remote_qpn; + int timeout_ms; + u8 max_cm_retries; }; -static struct ib_cm_id_private *find_cm_service(u64 service_id) +static int cm_alloc_msg(struct cm_id_private *cm_id_priv, + struct cm_msg *msg) +{ + struct ib_mad_agent *mad_agent; + int ret; + + msg = kmalloc(sizeof *msg, GFP_KERNEL); + if (!msg) + return -ENOMEM; + memset(msg, 0, sizeof *msg); + + /* need address handle cache... */ + mad_agent = cm_id_priv->port->mad_agent; + msg->send_wr.wr.ud.ah = ib_create_ah(mad_agent->qp->pd, + &cm_id_priv->ah_attr); + if (IS_ERR(msg->send_wr.wr.ud.ah)) { + ret = PTR_ERR(msg->send_wr.wr.ud.ah); + kfree(msg); + return ret; + } + + msg->sge.addr = dma_map_single(mad_agent->device->dma_device, + &msg->mad, sizeof msg->mad, + DMA_TO_DEVICE); + pci_unmap_addr_set(msg, mapping, msg->sge.addr); + msg->sge.length = sizeof msg->mad; + msg->sge.lkey = cm_id_priv->port->mr->lkey; + + msg->send_wr.wr_id = (unsigned long) msg; + msg->send_wr.sg_list = &msg->sge; + msg->send_wr.num_sge = 1; + msg->send_wr.opcode = IB_WR_SEND; + msg->send_wr.send_flags = IB_SEND_SIGNALED; + msg->send_wr.wr.ud.mad_hdr = &msg->mad.mad_hdr; + msg->send_wr.wr.ud.remote_qpn = 1; /* IB_QP1; use host order for now... */ + msg->send_wr.wr.ud.remote_qkey = IB_QP1_QKEY; + msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; + msg->send_wr.wr.ud.pkey_index = cm_id_priv->pkey_index; + + atomic_inc(&cm_id_priv->refcount); + msg->cm_id_priv = cm_id_priv; + return 0; +} + +static void cm_free_msg(struct cm_msg *msg) +{ + ib_destroy_ah(msg->send_wr.wr.ud.ah); + dma_unmap_single(msg->cm_id_priv->port->mad_agent->device->dma_device, + pci_unmap_addr(msg, mapping), sizeof msg->mad, + DMA_TO_DEVICE); + + if (atomic_dec_and_test(&msg->cm_id_priv->refcount)) + wake_up(&msg->cm_id_priv->wait); + kfree(msg); +} + +static void cm_set_ah_attr(struct ib_ah_attr *ah_attr, + struct cm_port *port, + struct ib_sa_path_rec *path_rec) +{ + memset(ah_attr, 0, sizeof ah_attr); + ah_attr->dlid = be16_to_cpu(path_rec->dlid); + ah_attr->sl = path_rec->sl; + ah_attr->src_path_bits = path_rec->slid & 0x7F; + ah_attr->port_num = port->port_num; +} + +static struct cm_port * cm_find_port(struct ib_device *device, + union ib_gid *gid) +{ + struct cm_port *port; + int ret; + u8 p; + + port = (struct cm_port *)ib_get_client_data(device, &cm_client); + if (!port) + return NULL; + + ret = ib_find_cached_gid(device, gid, &p, NULL); + if (ret) + port = NULL; + else + port = &port[p-1]; + + return port; +} + +static struct cm_id_private *cm_find_service(u64 service_id) { struct rb_node *node = cm.service_table.rb_node; - struct ib_cm_id_private *cm_id_priv; + struct cm_id_private *cm_id_priv; while (node) { - cm_id_priv = rb_entry(node, struct ib_cm_id_private, node); + cm_id_priv = rb_entry(node, struct cm_id_private, node); if ((cm_id_priv->id.service_mask & service_id) == - (cm_id_priv->id.service_mask & cm_id_priv->id.service_id)) + (cm_id_priv->id.service_mask & cm_id_priv->id.service_id) && + (cm_id_priv->id.state != IB_CM_IDLE)) return cm_id_priv; if (service_id < cm_id_priv->id.service_id) @@ -89,17 +204,16 @@ return NULL; } -static void insert_cm_service(struct ib_cm_id_private *cm_id_priv) +static void cm_insert_service(struct cm_id_private *cm_id_priv) { struct rb_node **link = &cm.service_table.rb_node; struct rb_node *parent = NULL; - struct ib_cm_id_private *cur_cm_id_priv; + struct cm_id_private *cur_cm_id_priv; u64 service_id = cm_id_priv->id.service_id; while (*link) { parent = *link; - cur_cm_id_priv = rb_entry(parent, struct ib_cm_id_private, - node); + cur_cm_id_priv = rb_entry(parent, struct cm_id_private, node); if (service_id < cur_cm_id_priv->id.service_id) link = &(*link)->rb_left; else @@ -109,10 +223,22 @@ rb_insert_color(&cm_id_priv->node, &cm.service_table); } +static u32 cm_get_id(void) +{ + unsigned long flags; + u32 id; + + /* need to check for wrapping... */ + spin_lock_irqsave(&cm.lock, flags); + id = cm.id++; + spin_unlock_irqrestore(&cm.lock, flags); + return id; +} + struct ib_cm_id *ib_create_cm_id(ib_cm_handler cm_handler, void *context) { - struct ib_cm_id_private *cm_id_priv; + struct cm_id_private *cm_id_priv; cm_id_priv = kmalloc(sizeof *cm_id_priv, GFP_KERNEL); if (!cm_id_priv) @@ -122,6 +248,7 @@ cm_id_priv->id.state = IB_CM_IDLE; cm_id_priv->id.cm_handler = cm_handler; cm_id_priv->id.context = context; + cm_id_priv->id.local_id = cm_get_id(); spin_lock_init(&cm_id_priv->lock); init_waitqueue_head(&cm_id_priv->wait); @@ -131,7 +258,7 @@ } EXPORT_SYMBOL(ib_create_cm_id); -static void reset_cm_state(struct ib_cm_id_private *cm_id_priv) +static void reset_cm_state(struct cm_id_private *cm_id_priv) { /* reject connections if establishing */ /* disconnect established connections */ @@ -140,17 +267,17 @@ int ib_destroy_cm_id(struct ib_cm_id *cm_id) { - struct ib_cm_id_private *cm_id_priv; + struct cm_id_private *cm_id_priv; unsigned long flags, flags2; - cm_id_priv = container_of(cm_id, struct ib_cm_id_private, id); + cm_id_priv = container_of(cm_id, struct cm_id_private, id); spin_lock_irqsave(&cm_id_priv->lock, flags); switch(cm_id->state) { case IB_CM_LISTEN: spin_lock_irqsave(&cm.lock, flags2); rb_erase(&cm_id_priv->node, &cm.service_table); - spin_lock_irqrestore(&cm.lock, flags2); + spin_unlock_irqrestore(&cm.lock, flags2); break; case IB_CM_IDLE: break; @@ -174,11 +301,11 @@ u64 service_id, u64 service_mask) { - struct ib_cm_id_private *cm_id_priv; + struct cm_id_private *cm_id_priv; unsigned long flags; int ret = 0; - cm_id_priv = container_of(cm_id, struct ib_cm_id_private, id); + cm_id_priv = container_of(cm_id, struct cm_id_private, id); spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state != IB_CM_IDLE) { spin_unlock_irqrestore(&cm_id_priv->lock, flags); @@ -192,53 +319,368 @@ cm_id->service_mask = service_mask ? service_mask : ~0ULL; spin_lock_irqsave(&cm.lock, flags); - if (find_cm_service(service_id)) { - /* No one else is able to change the cm_id state. */ - cm_id->state = IB_CM_IDLE; + if (cm_find_service(service_id)) { + /* No one else is able to change the cm_id_priv state. */ + cm_id_priv->id.state = IB_CM_IDLE; ret = -EBUSY; } else - insert_cm_service(cm_id_priv); + cm_insert_service(cm_id_priv); spin_unlock_irqrestore(&cm.lock, flags); out: return ret; } EXPORT_SYMBOL(ib_cm_listen); +static inline int cm_convert_to_ms(u8 iba_time) +{ + /* approximate conversion to ms from 4.096us x 2^iba_time */ + return (1 << ((uint)min(iba_time, (u8) 8) - (uint)8)); +} + +static void cm_format_mad_hdr(struct ib_mad_hdr *hdr, + struct cm_id_private *cm_id_priv, + enum cm_msg_attr_id attr_id, + enum cm_msg_sequence msg_seq) +{ + u64 hi_tid, low_tid; + + hdr->base_version = IB_MGMT_BASE_VERSION; + hdr->mgmt_class = IB_MGMT_CLASS_CM; + hdr->class_version = IB_CM_CLASS_VERSION; + hdr->method = IB_MGMT_METHOD_SEND; + hdr->attr_id = attr_id; + + hi_tid = ((u64) cm_id_priv->port->mad_agent->hi_tid) << 32; + low_tid = (u64) (cm_id_priv->id.local_id | (msg_seq << 30)); + hdr->tid = cpu_to_be64(hi_tid | low_tid); +} + +static void cm_format_req(struct cm_req_msg *req_msg, + struct cm_id_private *cm_id_priv, + struct ib_cm_req_param *param) +{ + cm_format_mad_hdr(&req_msg->hdr, cm_id_priv, + CM_REQ_ATTR_ID, CM_MSG_SEQUENCE_REQ); + + req_msg->local_comm_id = cm_id_priv->id.local_id; + req_msg->service_id = param->service_id; + req_msg->local_ca_guid = cm_id_priv->port->ca_guid; + cm_req_set_local_qpn(req_msg, cpu_to_be32(param->qp->qp_num)); + cm_req_set_resp_res(req_msg, param->responder_resources); + cm_req_set_init_depth(req_msg, param->initiator_depth); + cm_req_set_remote_resp_timeout(req_msg, + param->remote_cm_response_timeout); + cm_req_set_qp_type(req_msg, param->qp->qp_type); + cm_req_set_flow_ctrl(req_msg, param->flow_control); + cm_req_set_starting_psn(req_msg, param->starting_send_psn); + cm_req_set_local_resp_timeout(req_msg, + param->local_cm_response_timeout); + cm_req_set_retry_count(req_msg, param->retry_count); + req_msg->pkey = param->primary_path->pkey; + cm_req_set_path_mtu(req_msg, param->primary_path->mtu); + cm_req_set_rnr_retry_count(req_msg, param->rnr_retry_count); + cm_req_set_max_cm_retries(req_msg, param->max_cm_retries); + cm_req_set_srq(req_msg, (param->qp->srq != NULL)); + + req_msg->primary_local_lid = param->primary_path->slid; + req_msg->primary_remote_lid = param->primary_path->dlid; + req_msg->primary_local_gid = param->primary_path->sgid; + req_msg->primary_remote_gid = param->primary_path->dgid; + cm_req_set_primary_flow_label(req_msg, param->primary_path->flow_label); + cm_req_set_primary_packet_rate(req_msg, param->primary_path->rate); + req_msg->primary_traffic_class = param->primary_path->traffic_class; + req_msg->primary_hop_limit = param->primary_path->hop_limit; + cm_req_set_primary_sl(req_msg, param->primary_path->sl); + cm_req_set_primary_subnet_local(req_msg, 1); /* local only... */ + cm_req_set_primary_local_ack_timeout(req_msg, + min(31, param->primary_path->packet_life_time + 1)); + + if (param->alternate_path) { + req_msg->alt_local_lid = param->alternate_path->slid; + req_msg->alt_remote_lid = param->alternate_path->dlid; + req_msg->alt_local_gid = param->alternate_path->sgid; + req_msg->alt_remote_gid = param->alternate_path->dgid; + cm_req_set_alt_flow_label(req_msg, + param->alternate_path->flow_label); + cm_req_set_alt_packet_rate(req_msg, param->alternate_path->rate); + req_msg->alt_traffic_class = param->alternate_path->traffic_class; + req_msg->alt_hop_limit = param->alternate_path->hop_limit; + cm_req_set_alt_sl(req_msg, param->alternate_path->sl); + cm_req_set_alt_subnet_local(req_msg, 1); /* local only... */ + cm_req_set_alt_local_ack_timeout(req_msg, + min(31, param->alternate_path->packet_life_time + 1)); + } + + if (param->private_data && param->private_data_len) + memcpy(req_msg->private_data, param->private_data, + param->private_data_len); +} + +static inline int cm_validate_req_param(struct ib_cm_req_param *param) +{ + if (!param->qp || !param->primary_path) + return -EINVAL; + + if (param->qp->qp_type != IB_QPT_RC && param->qp->qp_type != IB_QPT_UC) + return -EINVAL; + + if (param->private_data && + param->private_data_len > IB_CM_REQ_PRIVATE_DATA_SIZE) + return -EINVAL; + + return 0; +} + int ib_send_cm_req(struct ib_cm_id *cm_id, struct ib_cm_req_param *param) { - return -EINVAL; + struct cm_id_private *cm_id_priv; + struct cm_msg *msg = NULL; + struct ib_send_wr *bad_send_wr; + unsigned long flags; + int ret; + + ret = cm_validate_req_param(param); + if (ret) + goto out; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + cm_id_priv->port = cm_find_port(param->qp->device, + ¶m->primary_path->sgid); + if (!cm_id_priv->port) { + ret = -EINVAL; + goto out; + } + + ret = ib_find_cached_pkey(param->qp->device, + cm_id_priv->port->port_num, + param->primary_path->pkey, + &cm_id_priv->pkey_index); + if (ret) + goto out; + + cm_id_priv->timeout_ms = cm_convert_to_ms( + param->primary_path->packet_life_time) * 2 + + cm_convert_to_ms( + param->remote_cm_response_timeout); + cm_id_priv->max_cm_retries = param->max_cm_retries; + cm_set_ah_attr(&cm_id_priv->ah_attr, cm_id_priv->port, + param->primary_path); + ret = cm_alloc_msg(cm_id_priv, msg); + if (ret) + goto out; + + cm_format_req((struct cm_req_msg *)&msg->mad, cm_id_priv, param); + + if (param->peer_to_peer) { + spin_lock_irqsave(&cm.lock, flags); + cm_insert_service(cm_id_priv); + spin_unlock_irqrestore(&cm.lock, flags); + } + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id->state == IB_CM_IDLE) + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + else + ret = -EINVAL; + + if (ret) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(cm_id_priv->msg); + goto out; + } + + cm_id->state = IB_CM_REQ_SENT; + cm_id_priv->msg = msg; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); +out: + return ret; } EXPORT_SYMBOL(ib_send_cm_req); +static void cm_format_rep(struct cm_rep_msg *rep_msg, + struct cm_id_private *cm_id_priv, + struct ib_cm_rep_param *param) +{ + cm_format_mad_hdr(&rep_msg->hdr, cm_id_priv, + CM_REP_ATTR_ID, CM_MSG_SEQUENCE_REQ); + + rep_msg->local_comm_id = cm_id_priv->id.local_id; + rep_msg->remote_comm_id = cm_id_priv->id.remote_id; + cm_rep_set_local_qpn(rep_msg, param->qp->qp_num); + cm_rep_set_starting_psn(rep_msg, param->starting_send_psn); + rep_msg->resp_resources = param->responder_resources; + rep_msg->initiator_depth = param->initiator_depth; + cm_rep_set_target_ack_delay(rep_msg, param->target_ack_delay); + cm_rep_set_failover(rep_msg, param->failover_accepted); + cm_rep_set_flow_ctrl(rep_msg, param->flow_control); + cm_rep_set_rnr_retry_count(rep_msg, param->rnr_retry_count); + cm_rep_set_srq(rep_msg, (param->qp->srq != NULL)); + rep_msg->local_ca_guid = cm_id_priv->port->ca_guid; + + if (param->private_data && param->private_data_len) + memcpy(rep_msg->private_data, param->private_data, + param->private_data_len); +} + +static inline int cm_validate_rep_param(struct ib_cm_rep_param *param) +{ + if (!param->qp) + return -EINVAL; + + if (param->qp->qp_type != IB_QPT_RC && param->qp->qp_type != IB_QPT_UC) + return -EINVAL; + + if (param->private_data && + param->private_data_len > IB_CM_REP_PRIVATE_DATA_SIZE) + return -EINVAL; + + return 0; +} + int ib_send_cm_rep(struct ib_cm_id *cm_id, - struct ib_cm_req_param *param) + struct ib_cm_rep_param *param) { - return -EINVAL; + struct cm_id_private *cm_id_priv; + struct cm_msg *msg = NULL; + int ret; + + ret = cm_validate_rep_param(param); + if (ret) + goto out; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, msg); + if (ret) + goto out; + + cm_format_rep((struct cm_rep_msg *)&msg->mad, cm_id_priv, param); + + ret = -EINVAL; +out: + return ret; } EXPORT_SYMBOL(ib_send_cm_rep); +static void cm_format_rtu(struct cm_rtu_msg *rtu_msg, + struct cm_id_private *cm_id_priv, + void *private_data, + u8 private_data_len) +{ + cm_format_mad_hdr(&rtu_msg->hdr, cm_id_priv, + CM_RTU_ATTR_ID, CM_MSG_SEQUENCE_REQ); + + rtu_msg->local_comm_id = cm_id_priv->id.local_id; + rtu_msg->remote_comm_id = cm_id_priv->id.remote_id; + + if (private_data && private_data_len) + memcpy(rtu_msg->private_data, private_data, private_data_len); +} + int ib_send_cm_rtu(struct ib_cm_id *cm_id, void *private_data, u8 private_data_len) { - return -EINVAL; + struct cm_id_private *cm_id_priv; + struct cm_msg *msg = NULL; + int ret; + + if (private_data && private_data_len > IB_CM_RTU_PRIVATE_DATA_SIZE) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, msg); + if (ret) + goto out; + + cm_format_rtu((struct cm_rtu_msg *)&msg->mad, cm_id_priv, + private_data, private_data_len); + + ret = -EINVAL; +out: + return ret; } EXPORT_SYMBOL(ib_send_cm_rtu); +static void cm_format_dreq(struct cm_dreq_msg *dreq_msg, + struct cm_id_private *cm_id_priv, + void *private_data, + u8 private_data_len) +{ + cm_format_mad_hdr(&dreq_msg->hdr, cm_id_priv, + CM_DREQ_ATTR_ID, CM_MSG_SEQUENCE_DREQ); + + dreq_msg->local_comm_id = cm_id_priv->id.local_id; + dreq_msg->remote_comm_id = cm_id_priv->id.remote_id; + cm_dreq_set_remote_qpn(dreq_msg, cm_id_priv->remote_qpn); + + if (private_data && private_data_len) + memcpy(dreq_msg->private_data, private_data, private_data_len); +} + int ib_send_cm_dreq(struct ib_cm_id *cm_id, void *private_data, u8 private_data_len) { - return -EINVAL; + struct cm_id_private *cm_id_priv; + struct cm_msg *msg = NULL; + int ret; + + if (private_data && private_data_len > IB_CM_DREQ_PRIVATE_DATA_SIZE) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, msg); + if (ret) + goto out; + + cm_format_dreq((struct cm_dreq_msg *)&msg->mad, cm_id_priv, + private_data, private_data_len); + + ret = -EINVAL; +out: + return ret; } EXPORT_SYMBOL(ib_send_cm_dreq); +static void cm_format_drep(struct cm_drep_msg *drep_msg, + struct cm_id_private *cm_id_priv, + void *private_data, + u8 private_data_len) +{ + cm_format_mad_hdr(&drep_msg->hdr, cm_id_priv, + CM_DREP_ATTR_ID, CM_MSG_SEQUENCE_DREQ); + + drep_msg->local_comm_id = cm_id_priv->id.local_id; + drep_msg->remote_comm_id = cm_id_priv->id.remote_id; + + if (private_data && private_data_len) + memcpy(drep_msg->private_data, private_data, private_data_len); +} + int ib_send_cm_drep(struct ib_cm_id *cm_id, void *private_data, u8 private_data_len) { - return -EINVAL; + struct cm_id_private *cm_id_priv; + struct cm_msg *msg = NULL; + int ret; + + if (private_data && private_data_len > IB_CM_DREP_PRIVATE_DATA_SIZE) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, msg); + if (ret) + goto out; + + cm_format_drep((struct cm_drep_msg *)&msg->mad, cm_id_priv, + private_data, private_data_len); + + ret = -EINVAL; +out: + return ret; } EXPORT_SYMBOL(ib_send_cm_drep); @@ -248,6 +690,42 @@ } EXPORT_SYMBOL(ib_cm_establish); +static void cm_format_rej(struct cm_rej_msg *rej_msg, + struct cm_id_private *cm_id_priv, + enum ib_cm_rej_reason reason, + void *ari, + u8 ari_length, + void *private_data, + u8 private_data_len) +{ + cm_format_mad_hdr(&rej_msg->hdr, cm_id_priv, + CM_REJ_ATTR_ID, CM_MSG_SEQUENCE_REQ); + + rej_msg->local_comm_id = cm_id_priv->id.local_id; + rej_msg->remote_comm_id = cm_id_priv->id.remote_id; + + switch(cm_id_priv->id.state) { + case IB_CM_REQ_RCVD: + cm_rej_set_msg_rejected(rej_msg, CM_MSG_RESPONSE_REQ); + break; + case IB_CM_REP_RCVD: + cm_rej_set_msg_rejected(rej_msg, CM_MSG_RESPONSE_REP); + break; + default: + cm_rej_set_msg_rejected(rej_msg, CM_MSG_RESPONSE_OTHER); + break; + } + + rej_msg->reason = reason; + if (ari && ari_length) { + cm_rej_set_reject_info_len(rej_msg, ari_length); + memcpy(rej_msg->ari, ari, ari_length); + } + + if (private_data && private_data_len) + memcpy(rej_msg->private_data, private_data, private_data_len); +} + int ib_send_cm_rej(struct ib_cm_id *cm_id, enum ib_cm_rej_reason reason, void *ari, @@ -255,28 +733,134 @@ void *private_data, u8 private_data_len) { - return -EINVAL; + struct cm_id_private *cm_id_priv; + struct cm_msg *msg = NULL; + int ret; + + if ((private_data && private_data_len > IB_CM_REJ_PRIVATE_DATA_SIZE) || + (ari && ari_length > IB_CM_REJ_ARI_LENGTH)) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, msg); + if (ret) + goto out; + + cm_format_rej((struct cm_rej_msg *)&msg->mad, cm_id_priv, reason, + ari, ari_length, private_data, private_data_len); + + ret = -EINVAL; +out: + return ret; } EXPORT_SYMBOL(ib_send_cm_rej); +static void cm_format_mra(struct cm_mra_msg *mra_msg, + struct cm_id_private *cm_id_priv, + u8 service_timeout, + void *private_data, + u8 private_data_len) +{ + enum cm_msg_sequence msg_sequence; + + switch(cm_id_priv->id.state) { + case IB_CM_REQ_RCVD: + msg_sequence = CM_MSG_SEQUENCE_REQ; + cm_mra_set_msg_mraed(mra_msg, CM_MSG_RESPONSE_REQ); + break; + case IB_CM_REP_RCVD: + msg_sequence = CM_MSG_SEQUENCE_REQ; + cm_mra_set_msg_mraed(mra_msg, CM_MSG_RESPONSE_REP); + break; + case IB_CM_ESTABLISHED: + msg_sequence = CM_MSG_SEQUENCE_LAP; + cm_mra_set_msg_mraed(mra_msg, CM_MSG_RESPONSE_OTHER); + break; + default: + msg_sequence = CM_MSG_SEQUENCE_REQ; + break; + } + cm_format_mad_hdr(&mra_msg->hdr, cm_id_priv, + CM_MRA_ATTR_ID, msg_sequence); + + mra_msg->local_comm_id = cm_id_priv->id.local_id; + mra_msg->remote_comm_id = cm_id_priv->id.remote_id; + cm_mra_set_service_timeout(mra_msg, service_timeout); + + if (private_data && private_data_len) + memcpy(mra_msg->private_data, private_data, private_data_len); +} + int ib_send_cm_mra(struct ib_cm_id *cm_id, u8 service_timeout, void *private_data, u8 private_data_len) { - return -EINVAL; + struct cm_id_private *cm_id_priv; + struct cm_msg *msg = NULL; + int ret; + + if (private_data && private_data_len > IB_CM_MRA_PRIVATE_DATA_SIZE) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, msg); + if (ret) + goto out; + + cm_format_mra((struct cm_mra_msg *)&msg->mad, cm_id_priv, + service_timeout, private_data, private_data_len); + + ret = -EINVAL; +out: + return ret; } EXPORT_SYMBOL(ib_send_cm_mra); +/* +static void cm_format_lap(struct cm_lap_msg *lap_msg, + struct cm_id_private *cm_id_priv, + struct ib_sa_path_rec *alternate_path, + void *private_data, + u8 private_data_len); +{ + cm_format_mad_hdr(&lap_msg->hdr, cm_id_priv, + CM_LAP_ATTR_ID, CM_MSG_SEQUENCE_LAP); + + if (private_data && private_data_len) + memcpy(lap_msg->private_data, private_data, private_data_len); +} +*/ + int ib_send_cm_lap(struct ib_cm_id *cm_id, - struct ib_path_record *alternate_path, + struct ib_sa_path_rec *alternate_path, void *private_data, u8 private_data_len) { + if (private_data && private_data_len > IB_CM_LAP_PRIVATE_DATA_SIZE) + return -EINVAL; + return -EINVAL; } EXPORT_SYMBOL(ib_send_cm_lap); +/* +static void cm_format_apr(struct cm_apr_msg *apr_msg, + struct cm_id_private *cm_id_priv, + enum ib_cm_apr_status status, + void *info, + u8 info_length, + void *private_data, + u8 private_data_len); +{ + cm_format_mad_hdr(&apr_msg->hdr, cm_id_priv, + CM_APR_ATTR_ID, CM_MSG_SEQUENCE_LAP); + + if (private_data && private_data_len) + memcpy(apr_msg->private_data, private_data, private_data_len); +} +*/ + int ib_send_cm_apr(struct ib_cm_id *cm_id, enum ib_cm_apr_status status, void *info, @@ -284,30 +868,209 @@ void *private_data, u8 private_data_len) { + if ((private_data && private_data_len > IB_CM_APR_PRIVATE_DATA_SIZE) || + (info && info_length > IB_CM_APR_INFO_LENGTH)) + return -EINVAL; + return -EINVAL; } EXPORT_SYMBOL(ib_send_cm_apr); +static void cm_format_sidr_req(struct cm_sidr_req_msg *sidr_req_msg, + struct cm_id_private *cm_id_priv, + struct ib_cm_sidr_req_param *param) +{ + cm_format_mad_hdr(&sidr_req_msg->hdr, cm_id_priv, + CM_SIDR_REQ_ATTR_ID, CM_MSG_SEQUENCE_SIDR); + + sidr_req_msg->request_id = cm_id_priv->id.local_id; + sidr_req_msg->pkey = param->pkey; + sidr_req_msg->service_id = param->service_id; + + if (param->private_data && param->private_data_len) + memcpy(sidr_req_msg->private_data, param->private_data, + param->private_data_len); +} + int ib_send_cm_sidr_req(struct ib_cm_id *cm_id, struct ib_cm_sidr_req_param *param) { - return -EINVAL; + struct cm_id_private *cm_id_priv; + struct cm_msg *msg = NULL; + int ret; + + if (!param->path || + (param->private_data && + param->private_data_len > IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE)) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, msg); + if (ret) + goto out; + + cm_format_sidr_req((struct cm_sidr_req_msg *)&msg->mad, cm_id_priv, + param); + + ret = -EINVAL; +out: + return ret; } EXPORT_SYMBOL(ib_send_cm_sidr_req); +static void cm_format_sidr_rep(struct cm_sidr_rep_msg *sidr_rep_msg, + struct cm_id_private *cm_id_priv, + struct ib_cm_sidr_rep_param *param) +{ + cm_format_mad_hdr(&sidr_rep_msg->hdr, cm_id_priv, + CM_SIDR_REP_ATTR_ID, CM_MSG_SEQUENCE_SIDR); + + sidr_rep_msg->request_id = cm_id_priv->id.remote_id; + sidr_rep_msg->status = param->status; + cm_sidr_rep_set_qpn(sidr_rep_msg, cpu_to_be32(param->qp_num)); + sidr_rep_msg->service_id = cm_id_priv->id.service_id; + sidr_rep_msg->qkey = cpu_to_be32(param->qkey); + + if (param->info && param->info_length) + memcpy(sidr_rep_msg->info, param->info, param->info_length); + + if (param->private_data && param->private_data_len) + memcpy(sidr_rep_msg->private_data, param->private_data, + param->private_data_len); +} + int ib_send_cm_sidr_rep(struct ib_cm_id *cm_id, struct ib_cm_sidr_rep_param *param) { - return -EINVAL; + struct cm_id_private *cm_id_priv; + struct cm_msg *msg = NULL; + int ret; + + if ((param->info && param->info_length > IB_CM_SIDR_REP_INFO_LENGTH) || + (param->private_data && + param->private_data_len > IB_CM_SIDR_REP_PRIVATE_DATA_SIZE)) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, msg); + if (ret) + goto out; + + cm_format_sidr_rep((struct cm_sidr_rep_msg *)&msg->mad, cm_id_priv, + param); + + ret = -EINVAL; +out: + return ret; } EXPORT_SYMBOL(ib_send_cm_sidr_rep); +/* +static inline void cm_notify_client(struct cm_id_private *cm_id_priv, + struct ib_cm_event *event) +{ + cm_id_priv->id.cm_handler(&cm_id_priv->id, event); + + if (atomic_dec_and_test(&cm_id_priv->refcount)) + wake_up(&msg->cm_id_priv->wait); +} +*/ + +static void cm_process_send_error(struct cm_msg *msg, + enum ib_wc_status wc_status) +{ + struct cm_id_private *cm_id_priv; + struct ib_cm_event cm_event; + unsigned long flags; + + memset(&cm_event, 0, sizeof cm_event); + cm_id_priv = msg->cm_id_priv; + + /* Discard old sends. */ + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (msg != cm_id_priv->msg) + goto discard; + + switch (cm_id_priv->id.state) { + case IB_CM_REQ_SENT: + cm_id_priv->id.state = IB_CM_IDLE; + cm_event.event = IB_CM_REQ_ERROR; + break; + case IB_CM_REP_SENT: + cm_id_priv->id.state = IB_CM_IDLE; + cm_event.event = IB_CM_REP_ERROR; + break; + case IB_CM_DREQ_SENT: + cm_id_priv->id.state = IB_CM_TIMEWAIT; + cm_event.event = IB_CM_DREQ_ERROR; + break; + case IB_CM_SIDR_REQ_SENT: + cm_id_priv->id.state = IB_CM_IDLE; + cm_event.event = IB_CM_SIDR_REQ_ERROR; + break; + default: + BUG_ON(1); + goto discard; + } + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_event.param.send_status = wc_status; + cm_id_priv->id.cm_handler(&cm_id_priv->id, &cm_event); + cm_free_msg(msg); + return; + +discard: + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(msg); +} + +static void cm_process_send_timeout(struct cm_msg *msg) +{ + struct cm_id_private *cm_id_priv; + struct ib_send_wr *bad_send_wr; + unsigned long flags; + int ret; + + cm_id_priv = msg->cm_id_priv; + + /* Discard old sends. */ + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (msg != cm_id_priv->msg) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(msg); + return; + } + + if (msg->retry++ < cm_id_priv->max_cm_retries) { + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + if (ret) + cm_process_send_error(msg, IB_WC_GENERAL_ERR); + } else { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_process_send_error(msg, IB_WC_RESP_TIMEOUT_ERR); + } +} + static void send_handler(struct ib_mad_agent *mad_agent, struct ib_mad_send_wc *mad_send_wc) { - struct cm_port *port; + struct cm_msg *msg; - port = (struct cm_port *)mad_agent->context; + msg = (struct cm_msg *)(unsigned long)mad_send_wc->wr_id; + + switch (mad_send_wc->status) { + case IB_WC_SUCCESS: + case IB_WC_WR_FLUSH_ERR: + cm_free_msg(msg); + break; + case IB_WC_RESP_TIMEOUT_ERR: + cm_process_send_timeout(msg); + break; + default: + cm_process_send_error(msg, mad_send_wc->status); + break; + } } static void recv_handler(struct ib_mad_agent *mad_agent, @@ -316,17 +1079,40 @@ struct cm_port *port; port = (struct cm_port *)mad_agent->context; + + ib_free_recv_mad(mad_recv_wc); +} + +static u64 cm_get_ca_guid(struct ib_device *device) +{ + struct ib_device_attr *device_attr; + u64 guid; + int ret; + + device_attr = kmalloc(sizeof *device_attr, GFP_KERNEL); + if (!device_attr) + return 0; + + ret = ib_query_device(device, device_attr); + guid = ret ? 0 : device_attr->node_guid; + kfree(device_attr); + return guid; } static void cm_add_one(struct ib_device *device) { - struct cm_port *port; + struct cm_port *port_array, *port; struct ib_mad_reg_req reg_req; + u64 ca_guid; u8 i; - port = kmalloc(sizeof *port * device->phys_port_cnt, GFP_KERNEL); - if (!port) - goto out; + ca_guid = cm_get_ca_guid(device); + if (!ca_guid) + return; + + port_array = kmalloc(sizeof *port * device->phys_port_cnt, GFP_KERNEL); + if (!port_array) + return; memset(®_req, 0, sizeof reg_req); reg_req.mgmt_class = IB_MGMT_CLASS_CM; @@ -335,34 +1121,53 @@ set_bit(IB_MGMT_METHOD_SET, reg_req.method_mask); set_bit(IB_MGMT_METHOD_GET_RESP, reg_req.method_mask); set_bit(IB_MGMT_METHOD_SEND, reg_req.method_mask); - for (i = 1; i <= device->phys_port_cnt; i++) { - port[i].mad_agent = ib_register_mad_agent(device, i, - IB_QPT_GSI, - ®_req, - 0, - send_handler, - recv_handler, - &port[i]); + for (i = 1, port = port_array; i <= device->phys_port_cnt; i++, port++){ + spin_lock_init(&port->lock); + port->ca_guid = ca_guid; + port->port_num = i; + port->mad_agent = ib_register_mad_agent(device, i, + IB_QPT_GSI, + ®_req, + 0, + send_handler, + recv_handler, + port); + if (IS_ERR(port->mad_agent)) + goto error; + + port->mr = ib_get_dma_mr(port->mad_agent->qp->pd, + IB_ACCESS_LOCAL_WRITE); + if (IS_ERR(port->mr)) { + ib_unregister_mad_agent(port->mad_agent); + goto error; + } } + ib_set_client_data(device, &cm_client, port_array); + return; -out: - ib_set_client_data(device, &cm_client, port); +error: + while (port != port_array) { + --port; + ib_dereg_mr(port->mr); + ib_unregister_mad_agent(port->mad_agent); + } + kfree(port_array); } static void cm_remove_one(struct ib_device *device) { - struct cm_port *port; + struct cm_port *port_array, *port; int i; - port = (struct cm_port *)ib_get_client_data(device, &cm_client); - if (!port) + port_array = (struct cm_port *)ib_get_client_data(device, &cm_client); + if (!port_array) return; - for (i = 1; i <= device->phys_port_cnt; i++) { - if (!IS_ERR(port[i].mad_agent)) - ib_unregister_mad_agent(port[i].mad_agent); + for (i = 1, port = port_array; i <= device->phys_port_cnt; i++, port++){ + ib_dereg_mr(port->mr); + ib_unregister_mad_agent(port->mad_agent); } - kfree(port); + kfree(port_array); } static int __init ib_cm_init(void) Index: core/cm_msgs.h =================================================================== --- core/cm_msgs.h (revision 0) +++ core/cm_msgs.h (revision 0) @@ -0,0 +1,691 @@ +/* + * Copyright (c) 2004 Intel Corporation. All rights reserved. + * Copyright (c) 2004 TopspCorporation. All rights reserved. + * Copyright (c) 2004 Voltaire Corporation. All rights reserved. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING the madirectory of this source tree, or the + * OpenIB.org BSD license below: + * + * Redistribution and use source and binary forms, with or + * withmodification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retathe above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHWARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS THE + * SOFTWARE. + */ +#if !defined(CM_MSGS_H) +#define CM_MSGS_H + +#include + +/* + * Parameters to routines below should be in network-byte order, and values + * are returned in network-byte order. + */ + +#define IB_CM_CLASS_VERSION 2 /* IB specification 1.2 */ + +enum cm_msg_attr_id { + CM_REQ_ATTR_ID = __constant_htons(0x0010), + CM_MRA_ATTR_ID = __constant_htons(0x0011), + CM_REJ_ATTR_ID = __constant_htons(0x0012), + CM_REP_ATTR_ID = __constant_htons(0x0013), + CM_RTU_ATTR_ID = __constant_htons(0x0014), + CM_DREQ_ATTR_ID = __constant_htons(0x0015), + CM_DREP_ATTR_ID = __constant_htons(0x0016), + CM_SIDR_REQ_ATTR_ID = __constant_htons(0x0017), + CM_SIDR_REP_ATTR_ID = __constant_htons(0x0018), + CM_LAP_ATTR_ID = __constant_htons(0x0019), + CM_APR_ATTR_ID = __constant_htons(0x001A) +}; + +enum cm_msg_sequence { + CM_MSG_SEQUENCE_REQ, + CM_MSG_SEQUENCE_LAP, + CM_MSG_SEQUENCE_DREQ, + CM_MSG_SEQUENCE_SIDR +}; + +struct cm_req_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 rsvd4; + u64 service_id; + u64 local_ca_guid; + u32 rsvd24; + u32 local_qkey; + /* local QPN:24, responder resources:8 */ + u32 offset32; + /* local EECN:24, initiator depth:8 */ + u32 offset36; + /* + * remote EECN:24, remote CM response timeout:5, + * transport service type:2, end-to-end flow control:1 + */ + u32 offset40; + /* starting PSN:24, local CM response timeout:5, retry count:3 */ + u32 offset44; + u16 pkey; + /* path MTU:4, RDC exists:1, RNR retry count:3. */ + u8 offset50; + /* max CM Retries:4, SRQ:1, rsvd:3 */ + u8 offset51; + + u16 primary_local_lid; + u16 primary_remote_lid; + union ib_gid primary_local_gid; + union ib_gid primary_remote_gid; + /* flow label:20, rsvd:6, packet rate:6 */ + u32 primary_offset88; + u8 primary_traffic_class; + u8 primary_hop_limit; + /* SL:4, subnet local:1, rsvd:3 */ + u8 primary_offset94; + /* local ACK timeout:5, rsvd:3 */ + u8 primary_offset95; + + u16 alt_local_lid; + u16 alt_remote_lid; + union ib_gid alt_local_gid; + union ib_gid alt_remote_gid; + /* flow label:20, rsvd:6, packet rate:6 */ + u32 alt_offset132; + u8 alt_traffic_class; + u8 alt_hop_limit; + /* SL:4, subnet local:1, rsvd:3 */ + u8 alt_offset138; + /* local ACK timeout:5, rsvd:3 */ + u8 alt_offset139; + + u8 private_data[IB_CM_REQ_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +static inline u32 cm_req_get_local_qpn(struct cm_req_msg *req_msg) +{ + return cpu_to_be32(be32_to_cpu(req_msg->offset32) >> 8); +} + +static inline void cm_req_set_local_qpn(struct cm_req_msg *req_msg, u32 qpn) +{ + req_msg->offset32 = cpu_to_be32((be32_to_cpu(qpn) << 8) | + (be32_to_cpu(req_msg->offset32) & + 0x000000FF)); +} + +static inline u8 cm_req_get_resp_res(struct cm_req_msg *req_msg) +{ + return (u8) be32_to_cpu(req_msg->offset32); +} + +static inline void cm_req_set_resp_res(struct cm_req_msg *req_msg, u8 resp_res) +{ + req_msg->offset32 = cpu_to_be32(resp_res | + (be32_to_cpu(req_msg->offset32) & + 0xFFFFFF00)); +} + +static inline u8 cm_req_get_init_depth(struct cm_req_msg *req_msg) +{ + return (u8) be32_to_cpu(req_msg->offset36); +} + +static inline void cm_req_set_init_depth(struct cm_req_msg *req_msg, + u8 init_depth) +{ + req_msg->offset36 = cpu_to_be32(init_depth | + (be32_to_cpu(req_msg->offset36) & + 0xFFFFFF00)); +} + +static inline u8 cm_req_get_remote_resp_timeout(struct cm_req_msg *req_msg) +{ + return (u8) ((be32_to_cpu(req_msg->offset40) & 0xF8) >> 3); +} + +static inline void cm_req_set_remote_resp_timeout(struct cm_req_msg *req_msg, + u8 resp_timeout) +{ + req_msg->offset40 = cpu_to_be32((resp_timeout << 3) | + (be32_to_cpu(req_msg->offset40) & + 0xFFFFFF07)); +} + +static inline enum ib_qp_type cm_req_get_qp_type(struct cm_req_msg *req_msg) +{ + u8 transport_type = (u8) (be32_to_cpu(req_msg->offset40) & 0x06) >> 1; + switch(transport_type) { + case 0: return IB_QPT_RC; + case 1: return IB_QPT_UC; + default: return 0; + } +} + +static inline void cm_req_set_qp_type(struct cm_req_msg *req_msg, + enum ib_qp_type qp_type) +{ + switch(qp_type) { + case IB_QPT_UC: + req_msg->offset40 = cpu_to_be32((be32_to_cpu( + req_msg->offset40) & + 0xFFFFFFF9) | 0x2); + default: + req_msg->offset40 = cpu_to_be32(be32_to_cpu( + req_msg->offset40) & + 0xFFFFFFF9); + } +} + +static inline u8 cm_req_get_flow_ctrl(struct cm_req_msg *req_msg) +{ + return be32_to_cpu(req_msg->offset40) & 0x1; +} + +static inline void cm_req_set_flow_ctrl(struct cm_req_msg *req_msg, + u8 flow_ctrl) +{ + req_msg->offset40 = cpu_to_be32((flow_ctrl & 0x1) | + (be32_to_cpu(req_msg->offset40) & + 0xFFFFFFFE)); +} + +static inline u32 cm_req_get_starting_psn(struct cm_req_msg *req_msg) +{ + return be32_to_cpu(req_msg->offset44) >> 8; +} + +static inline void cm_req_set_starting_psn(struct cm_req_msg *req_msg, + u32 starting_psn) +{ + req_msg->offset44 = cpu_to_be32((be32_to_cpu(starting_psn) << 8) | + (be32_to_cpu(req_msg->offset44) & 0x000000FF)); +} + +static inline u8 cm_req_get_local_resp_timeout(struct cm_req_msg *req_msg) +{ + return (u8) ((be32_to_cpu(req_msg->offset44) & 0xF8) >> 3); +} + +static inline void cm_req_set_local_resp_timeout(struct cm_req_msg *req_msg, + u8 resp_timeout) +{ + req_msg->offset44 = cpu_to_be32((resp_timeout << 3) | + (be32_to_cpu(req_msg->offset44) & 0xFFFFFF07)); +} + +static inline u8 cm_req_get_retry_count(struct cm_req_msg *req_msg) +{ + return (u8) (be32_to_cpu(req_msg->offset44) & 0x7); +} + +static inline void cm_req_set_retry_count(struct cm_req_msg *req_msg, + u8 retry_count) +{ + req_msg->offset44 = cpu_to_be32((retry_count & 0x7) | + (be32_to_cpu(req_msg->offset44) & 0xFFFFFFF8)); +} + +static inline u8 cm_req_get_mtu(struct cm_req_msg *req_msg) +{ + return req_msg->offset50 >> 4; +} + +static inline void cm_req_set_path_mtu(struct cm_req_msg *req_msg, u8 path_mtu) +{ + req_msg->offset50 = (u8) ((req_msg->offset50 & 0xF) | (path_mtu << 4)); +} + +static inline u8 cm_req_get_rnr_retry_count(struct cm_req_msg *req_msg) +{ + return req_msg->offset50 & 0x7; +} + +static inline void cm_req_set_rnr_retry_count(struct cm_req_msg *req_msg, + u8 rnr_retry_count) +{ + req_msg->offset50 = (u8) ((req_msg->offset50 & 0xF8) | + (rnr_retry_count & 0x7)); +} + +static inline u8 cm_req_get_max_cm_retries(struct cm_req_msg *req_msg) +{ + return req_msg->offset51 >> 4; +} + +static inline void cm_req_set_max_cm_retries(struct cm_req_msg *req_msg, + u8 retries) +{ + req_msg->offset51 = (u8) ((req_msg->offset51 & 0xF) | (retries << 4)); +} + +static inline u8 cm_req_get_srq(struct cm_req_msg *req_msg) +{ + return (req_msg->offset51 & 0x8) >> 3; +} + +static inline void cm_req_set_srq(struct cm_req_msg *req_msg, u8 srq) +{ + req_msg->offset51 = (u8) ((req_msg->offset51 & 0xF7) | + ((srq & 0x1) << 3)); +} + +static inline u32 cm_req_get_primary_flow_label(struct cm_req_msg *req_msg) +{ + return cpu_to_be32((be32_to_cpu(req_msg->primary_offset88) >> 12)); +} + +static inline void cm_req_set_primary_flow_label(struct cm_req_msg *req_msg, + u32 flow_label) +{ + req_msg->primary_offset88 = cpu_to_be32( + (be32_to_cpu(req_msg->primary_offset88) & + 0x00000FFF) | + (be32_to_cpu(flow_label) << 12)); +} + +static inline u8 cm_req_get_primary_packet_rate(struct cm_req_msg *req_msg) +{ + return (u8) (be32_to_cpu(req_msg->primary_offset88) & 0x3F); +} + +static inline void cm_req_set_primary_packet_rate(struct cm_req_msg *req_msg, + u8 rate) +{ + req_msg->primary_offset88 = cpu_to_be32( + (be32_to_cpu(req_msg->primary_offset88) & + 0xFFFFFFC0) | (rate & 0x3F)); +} + +static inline u8 cm_req_get_primary_sl(struct cm_req_msg *req_msg) +{ + return (u8) (req_msg->primary_offset94 >> 4); +} + +static inline void cm_req_set_primary_sl(struct cm_req_msg *req_msg, u8 sl) +{ + req_msg->primary_offset94 = (u8) ((req_msg->primary_offset94 & 0x0F) | + (sl << 4)); +} + +static inline u8 cm_req_get_primary_subnet_local(struct cm_req_msg *req_msg) +{ + return (u8) ((req_msg->primary_offset94 & 0x08) >> 3); +} + +static inline void cm_req_set_primary_subnet_local(struct cm_req_msg *req_msg, + u8 subnet_local) +{ + req_msg->primary_offset94 = (u8) ((req_msg->primary_offset94 & 0xF7) | + ((subnet_local & 0x1) << 3)); +} + +static inline u8 cm_req_get_primary_local_ack_timeout(struct cm_req_msg *req_msg) +{ + return (u8) (req_msg->primary_offset95 >> 3); +} + +static inline void cm_req_set_primary_local_ack_timeout(struct cm_req_msg *req_msg, + u8 local_ack_timeout) +{ + req_msg->primary_offset95 = (u8) ((req_msg->primary_offset95 & 0x07) | + (local_ack_timeout << 3)); +} + +static inline u32 cm_req_get_alt_flow_label(struct cm_req_msg *req_msg) +{ + return cpu_to_be32((be32_to_cpu(req_msg->alt_offset132) >> 12)); +} + +static inline void cm_req_set_alt_flow_label(struct cm_req_msg *req_msg, + u32 flow_label) +{ + req_msg->alt_offset132 = cpu_to_be32( + (be32_to_cpu(req_msg->alt_offset132) & + 0x00000FFF) | + (be32_to_cpu(flow_label) << 12)); +} + +static inline u8 cm_req_get_alt_packet_rate(struct cm_req_msg *req_msg) +{ + return (u8) (be32_to_cpu(req_msg->alt_offset132) & 0x3F); +} + +static inline void cm_req_set_alt_packet_rate(struct cm_req_msg *req_msg, + u8 rate) +{ + req_msg->alt_offset132 = cpu_to_be32( + (be32_to_cpu(req_msg->alt_offset132) & + 0xFFFFFFC0) | (rate & 0x3F)); +} + +static inline u8 cm_req_get_alt_sl(struct cm_req_msg *req_msg) +{ + return (u8) (req_msg->alt_offset138 >> 4); +} + +static inline void cm_req_set_alt_sl(struct cm_req_msg *req_msg, u8 sl) +{ + req_msg->alt_offset138 = (u8) ((req_msg->alt_offset138 & 0x0F) | + (sl << 4)); +} + +static inline u8 cm_req_get_alt_subnet_local(struct cm_req_msg *req_msg) +{ + return (u8) ((req_msg->alt_offset138 & 0x08) >> 3); +} + +static inline void cm_req_set_alt_subnet_local(struct cm_req_msg *req_msg, + u8 subnet_local) +{ + req_msg->alt_offset138 = (u8) ((req_msg->alt_offset138 & 0xF7) | + ((subnet_local & 0x1) << 3)); +} + +static inline u8 cm_req_get_alt_local_ack_timeout(struct cm_req_msg *req_msg) +{ + return (u8) (req_msg->alt_offset139 >> 3); +} + +static inline void cm_req_set_alt_local_ack_timeout(struct cm_req_msg *req_msg, + u8 local_ack_timeout) +{ + req_msg->alt_offset139 = (u8) ((req_msg->alt_offset139 & 0x07) | + (local_ack_timeout << 3)); +} + +/* Message REJected or MRAed */ +enum cm_msg_response { + CM_MSG_RESPONSE_REQ = 0x0, + CM_MSG_RESPONSE_REP = 0x1, + CM_MSG_RESPONSE_OTHER = 0x2 +}; + + struct cm_mra_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + /* message MRAed:2, rsvd:6 */ + u8 offset8; + /* service timeout:5, rsvd:3 */ + u8 offset9; + + u8 private_data[IB_CM_MRA_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +static inline u8 cm_mra_get_msg_mraed(struct cm_mra_msg *mra_msg) +{ + return (u8) (mra_msg->offset8 >> 6); +} + +static inline void cm_mra_set_msg_mraed(struct cm_mra_msg *mra_msg, u8 msg) +{ + mra_msg->offset8 = (u8) ((mra_msg->offset8 & 0x3F) | (msg << 6)); +} + +static inline u8 cm_mra_get_service_timeout(struct cm_mra_msg *mra_msg) +{ + return (u8) (mra_msg->offset9 >> 3); +} + +static inline void cm_mra_set_service_timeout(struct cm_mra_msg *mra_msg, + u8 service_timeout) +{ + mra_msg->offset9 = (u8) ((mra_msg->offset9 & 0x07) | + (service_timeout << 3)); +} + +struct cm_rej_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + /* message REJected:2, rsvd:6 */ + u8 offset8; + /* reject info length:7, rsvd:1. */ + u8 offset9; + u16 reason; + u8 ari[IB_CM_REJ_ARI_LENGTH]; + + u8 private_data[IB_CM_REJ_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +static inline u8 cm_rej_get_msg_rejected(struct cm_rej_msg *rej_msg) +{ + return (u8) (rej_msg->offset8 >> 6); +} + +static inline void cm_rej_set_msg_rejected(struct cm_rej_msg *rej_msg, u8 msg) +{ + rej_msg->offset8 = (u8) ((rej_msg->offset8 & 0x3F) | (msg << 6)); +} + +static inline u8 cm_rej_get_reject_info_len(struct cm_rej_msg *rej_msg) +{ + return (u8) (rej_msg->offset9 >> 1); +} + +static inline void cm_rej_set_reject_info_len(struct cm_rej_msg *rej_msg, + u8 len) +{ + rej_msg->offset9 = (u8) ((rej_msg->offset9 & 0x1) | (len << 1)); +} + +struct cm_rep_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + u32 local_qkey; + /* local QPN:24, rsvd:8 */ + u32 offset12; + /* local EECN:24, rsvd:8 */ + u32 offset16; + /* starting PSN:24 rsvd:8 */ + u32 offset20; + u8 resp_resources; + u8 initiator_depth; + /* target ACK delay:5, failover accepted:2, end-to-end flow control:1 */ + u8 offset26; + /* RNR retry count:3, SRQ:1, rsvd:5 */ + u8 offset27; + u64 local_ca_guid; + + u8 private_data[IB_CM_REP_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +static inline u32 cm_rep_get_local_qpn(struct cm_rep_msg *rep_msg) +{ + return cpu_to_be32(be32_to_cpu(rep_msg->offset12) >> 8); +} + +static inline void cm_rep_set_local_qpn(struct cm_rep_msg *rep_msg, u32 qpn) +{ + rep_msg->offset12 = cpu_to_be32((be32_to_cpu(qpn) << 8) | + (be32_to_cpu(rep_msg->offset12) & 0x000000FF)); +} + +static inline u32 cm_rep_get_starting_psn(struct cm_rep_msg *rep_msg) +{ + return cpu_to_be32(be32_to_cpu(rep_msg->offset20) >> 8); +} + +static inline void cm_rep_set_starting_psn(struct cm_rep_msg *rep_msg, + u32 starting_psn) +{ + rep_msg->offset20 = cpu_to_be32((be32_to_cpu(starting_psn) << 8) | + (be32_to_cpu(rep_msg->offset20) & 0x000000FF)); +} + +static inline u8 cm_rep_get_target_ack_delay(struct cm_rep_msg *rep_msg) +{ + return (u8) (rep_msg->offset26 >> 3); +} + +static inline void cm_rep_set_target_ack_delay(struct cm_rep_msg *rep_msg, + u8 target_ack_delay) +{ + rep_msg->offset26 = (u8) ((rep_msg->offset26 & 0x07) | + (target_ack_delay << 3)); +} + +static inline u8 cm_rep_get_failover(struct cm_rep_msg *rep_msg) +{ + return (u8) ((rep_msg->offset26 & 0x06) >> 1); +} + +static inline void cm_rep_set_failover(struct cm_rep_msg *rep_msg, u8 failover) +{ + rep_msg->offset26 = (u8) ((rep_msg->offset26 & 0xF9) | + ((failover & 0x3) << 1)); +} + +static inline u8 cm_rep_get_flow_ctrl(struct cm_rep_msg *rep_msg) +{ + return (u8) (rep_msg->offset26 & 0x01); +} + +static inline void cm_rep_set_flow_ctrl(struct cm_rep_msg *rep_msg, + u8 flow_ctrl) +{ + rep_msg->offset26 = (u8) ((rep_msg->offset26 & 0xFE) | + (flow_ctrl & 0x1)); +} + +static inline u8 cm_rep_get_rnr_retry_count(struct cm_rep_msg *rep_msg) +{ + return (u8) (rep_msg->offset27 >> 5); +} + +static inline void cm_rep_set_rnr_retry_count(struct cm_rep_msg *rep_msg, + u8 rnr_retry_count) +{ + rep_msg->offset27 = (u8) ((rep_msg->offset27 & 0x1F) | + (rnr_retry_count << 5)); +} + +static inline u8 cm_rep_get_srq(struct cm_rep_msg *rep_msg) +{ + return (u8) ((rep_msg->offset27 >> 4) & 0x1); +} + +static inline void cm_rep_set_srq(struct cm_rep_msg *rep_msg, u8 srq) +{ + rep_msg->offset27 = (u8) ((rep_msg->offset27 & 0xEF) | + ((srq & 0x1) << 4)); +} + +struct cm_rtu_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + + u8 private_data[IB_CM_RTU_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +struct cm_dreq_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + /* remote QPN/EECN:24, rsvd:8 */ + u32 offset8; + + u8 private_data[IB_CM_DREQ_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +static inline u32 cm_dreq_get_remote_qpn(struct cm_dreq_msg *dreq_msg) +{ + return cpu_to_be32(be32_to_cpu(dreq_msg->offset8) >> 8); +} + +static inline void cm_dreq_set_remote_qpn(struct cm_dreq_msg *dreq_msg, u32 qpn) +{ + dreq_msg->offset8 = cpu_to_be32((be32_to_cpu(qpn) << 8) | + (be32_to_cpu(dreq_msg->offset8) & 0x000000FF)); +} + +struct cm_drep_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + + u8 private_data[IB_CM_DREP_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +/* +struct cm_lap_msg { +} __attribute__ ((packed)); + +struct cm_apr_msg { +} __attribute__ ((packed)); +*/ + +struct cm_sidr_req_msg { + struct ib_mad_hdr hdr; + + u32 request_id; + u16 pkey; + u16 rsvd; + u64 service_id; + + u8 private_data[IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE]; +} __attribute__ ((packed)); + +struct cm_sidr_rep_msg { + struct ib_mad_hdr hdr; + + u32 request_id; + u8 status; + u8 info_length; + u16 rsvd; + /* QPN:24, rsvd:8 */ + u32 offset8; + u64 service_id; + u32 qkey; + u8 info[IB_CM_SIDR_REP_INFO_LENGTH]; + + u8 private_data[IB_CM_SIDR_REP_PRIVATE_DATA_SIZE]; +} __attribute__ ((packed)); + +static inline u32 cm_sidr_rep_get_qpn(struct cm_sidr_rep_msg *sidr_rep_msg) +{ + return cpu_to_be32(be32_to_cpu(sidr_rep_msg->offset8) >> 8); +} + +static inline void cm_sidr_rep_set_qpn(struct cm_sidr_rep_msg *sidr_rep_msg, + u32 qpn) +{ + sidr_rep_msg->offset8 = cpu_to_be32((be32_to_cpu(qpn) << 8) | + (be32_to_cpu(sidr_rep_msg->offset8) & + 0x000000FF)); +} + +#endif /* CM_MSGS_H */ From roland at topspin.com Mon Jan 10 17:33:28 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 10 Jan 2005 17:33:28 -0800 Subject: [openib-general] Re: [PATCH] update to GID/PKey cache In-Reply-To: <20050110175026.042c69b7.mshefty@ichips.intel.com> (Sean Hefty's message of "Mon, 10 Jan 2005 17:50:26 -0800") References: <20050110175026.042c69b7.mshefty@ichips.intel.com> Message-ID: <52pt0cyck7.fsf@topspin.com> Sean> (The CM needs the new routine even if the name changes are Sean> not accepted.) The name changes seem fine to me. I have no problem if you go ahead and commit the whole thing. - R. From tduffy at sun.com Mon Jan 10 20:01:48 2005 From: tduffy at sun.com (Tom Duffy) Date: Mon, 10 Jan 2005 20:01:48 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050109200012.GA27806@mellanox.co.il> References: <1105244381.1323.5.camel@duffman> <20050109200012.GA27806@mellanox.co.il> Message-ID: <1105416108.6968.2.camel@duffman> On Sun, 2005-01-09 at 22:00 +0200, Michael S. Tsirkin wrote: > And here we see the incorrect address 0xfff00000 being passed in > instead of 0x1ff00100000. > > I hope I fixed this with the last svn update (rev 1498). > At least I tested on x86_64 with your device file and it seems > to print the correct physical address. > Unfortunately the previous version behaves differently for me > (tryies to map 0x100000 instead), but that could be > because of a different architecture somehow. This is happening on sparc64 as well. > Could you please update and try again (with strace) and let me know? execve("./mstflint", ["./mstflint", "-d", "81:00.0", "q"], [/* 14 vars */]) = 0 uname({sys="Linux", node="tat", ...}) = 0 brk(0) = 0x2c000 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/etc/ld.so.preload", O_RDONLY) = -1 ENOENT (No such file or directory) open("/etc/ld.so.cache", O_RDONLY) = 3 fstat64(3, {st_mode=S_IFREG|0644, st_size=53602, ...}) = 0 mmap(NULL, 53602, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7002c000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/usr/lib/libstdc++.so.5", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\3\332"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=725592, ...}) = 0 mmap(NULL, 810456, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x7003c000 mprotect(0x700da000, 163288, PROT_NONE) = 0 mmap(0x700dc000, 139264, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0x90000) = 0x700dc000 mmap(0x700fe000, 15832, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x700fe000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libm.so.6", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\0\234"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=527020, ...}) = 0 mmap(NULL, 591312, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x70104000 mprotect(0x70182000, 75216, PROT_NONE) = 0 mmap(0x70184000, 73728, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0x70000) = 0x70184000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libgcc_s.so.1", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\0\30"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=36696, ...}) = 0 mmap(NULL, 101240, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x70198000 mprotect(0x701a2000, 60280, PROT_NONE) = 0 mmap(0x701a8000, 40960, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0x701a8000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libc.so.6", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\1\316"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=1291948, ...}) = 0 mmap(NULL, 1361864, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x701b4000 mprotect(0x702e8000, 100296, PROT_NONE) = 0 mmap(0x702f4000, 49152, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0x130000) = 0x702f4000 mmap(0x70300000, 1992, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x70300000 close(3) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x70302000 munmap(0x7002c000, 53602) = 0 brk(0) = 0x2c000 brk(0x4e000) = 0x4e000 brk(0) = 0x4e000 open("/dev/mem", O_RDWR|O_SYNC) = 3 open("/proc/bus/pci/devices", O_RDONLY) = 4 fstat64(4, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7002c000 read(4, "0000\t108e8000\t0\t 0"..., 1024) = 1024 read(4, " 0\tsym53c8xx\n0019\t1000000f\t7af"..., 1024) = 1024 read(4, " 0\t 0\tib_"..., 1024) = 38 close(4) = 0 munmap(0x7002c000, 8192) = 0 mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x100000) = 0x70304000 fstat64(1, {st_mode=S_IFCHR|0600, st_rdev=makedev(136, 0), ...}) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x70404000 write(1, "*** ERROR *** Flash gateway time"..., 61) = 61 munmap(0x70304000, 65536) = 0 close(3) = 0 munmap(0x70404000, 8192) = 0 exit_group(1) = ? -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From iod00d at hp.com Mon Jan 10 22:44:35 2005 From: iod00d at hp.com (Grant Grundler) Date: Mon, 10 Jan 2005 22:44:35 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52fz1g3ck0.fsf@topspin.com> References: <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> Message-ID: <20050111064435.GF6198@esmail.cup.hp.com> On Tue, Jan 04, 2005 at 05:11:11PM -0800, Roland Dreier wrote: > My previous patch seems like it won't work (need MSGINT_MODE_ENABLE > set too, according to http://www.ussg.iu.edu/hypermail/linux/kernel/0301.3/0123.html) > > Index: linux-bk/drivers/net/tg3.c > =================================================================== > --- linux-bk.orig/drivers/net/tg3.c 2004-12-29 22:05:41.000000000 -0800 > +++ linux-bk/drivers/net/tg3.c 2005-01-04 17:09:23.930140627 -0800 > @@ -8218,6 +8218,11 @@ > pci_using_dac = 0; > } > > + if (pci_enable_msi(pdev)) > + printk(KERN_WARNING PFX "Couldn't enable MSI.\n"); > + else > + tw32(MSGINT_MODE, MSGINT_MODE_ENABLE); > + Roland, This bit is right, but in the wrong place. My bad: concluding the ia64 linux MSI broken was premature. I didn't figure out why, but moving this chunk to immediately before request_irq() worked fine. Normally I expect _probe_one to get called before _open... but maybe something else needed to happen before pci_enable_msi() could be called. I also added pci_disable_msi() *after* each free_irq() call. The appended patch is not ready for prime time yet but certainly worth reviewing/testing. I'll post it to linux-net once I've added a "msi=1" driver parameter. Now to benchmark the difference...and then I can poke at OpenIB again (once I get the right firmware on the cards...) thanks, grant Log: preliminary patch to enable MSI in tg3. Needs "msi" driver flag so MSI is only used when specified. Signed-off-by: Grant Grundler ===== drivers/net/tg3.c 1.222 vs edited ===== --- 1.222/drivers/net/tg3.c 2004-11-15 15:53:08 -08:00 +++ edited/drivers/net/tg3.c 2005-01-10 22:21:34 -08:00 @@ -60,8 +60,8 @@ #define DRV_MODULE_NAME "tg3" #define PFX DRV_MODULE_NAME ": " -#define DRV_MODULE_VERSION "3.14" -#define DRV_MODULE_RELDATE "November 15, 2004" +#define DRV_MODULE_VERSION "3.14-msi" +#define DRV_MODULE_RELDATE "Jan 10, 2005" #define TG3_DEF_MAC_MODE 0 #define TG3_DEF_RX_MODE 0 @@ -5679,10 +5679,18 @@ if (err) return err; + if (pci_enable_msi(tp->pdev)) + printk(KERN_WARNING PFX "Couldn't enable MSI.\n"); + else { + tw32(MSGINT_MODE, MSGINT_MODE_ENABLE); + printk(PFX "MSI enabled.\n"); + } + err = request_irq(dev->irq, tg3_interrupt, SA_SHIRQ, dev->name, dev); if (err) { + pci_disable_msi(tp->pdev); tg3_free_consistent(tp); return err; } @@ -5713,6 +5721,7 @@ if (err) { free_irq(dev->irq, dev); + pci_disable_msi(tp->pdev); tg3_free_consistent(tp); return err; } @@ -5988,6 +5997,7 @@ spin_unlock_irq(&tp->lock); free_irq(dev->irq, dev); + pci_disable_msi(tp->pdev); memcpy(&tp->net_stats_prev, tg3_get_stats(tp->dev), sizeof(tp->net_stats_prev)); From mst at mellanox.co.il Tue Jan 11 00:14:57 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 11 Jan 2005 10:14:57 +0200 Subject: [openib-general] osm in openib In-Reply-To: References: Message-ID: <20050111081457.GD4137@mellanox.co.il> Hello, Ron! Quoting r. Ronald G. Minnich (rminnich at lanl.gov) "[openib-general] osm in openib": > ib_umad is in. No kernel messages. > > I notice that it goes after /sys/class/blah blah just fine, but the in the > middle of all opensm tries to open /dev/infiniband/umad0. Is this right? > Should it be trying to open /sys/class/infiniband_umad/umad0 (which > exists)? Should there be a symlink in /dev? Just trying to figure out the > "correct" way to do this. Or is the non-sys name usage a hangover in > opensm from the old days? > > thanks > > ron Yes, you must have udev mount /dev/infiniband, or do it manually. This is documented in ../openib/src/linux-kernel/docs/user_mad.txt Should be part of the FAQ, really. MSt From mst at mellanox.co.il Tue Jan 11 00:20:32 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 11 Jan 2005 10:20:32 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <1105416108.6968.2.camel@duffman> References: <1105416108.6968.2.camel@duffman> Message-ID: <20050111082032.GE4137@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] Re: mstflint failing on sparc64": > On Sun, 2005-01-09 at 22:00 +0200, Michael S. Tsirkin wrote: > > Could you please update and try again (with strace) and let me know? > > mmap(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x100000) = > 0x70304000 > fstat64(1, {st_mode=S_IFCHR|0600, st_rdev=makedev(136, 0), ...}) = 0 > mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) > = 0x70404000 > write(1, "*** ERROR *** Flash gateway time"..., 61) = 61 > munmap(0x70304000, 65536) = 0 > close(3) = 0 > munmap(0x70404000, 8192) = 0 > exit_group(1) = ? It should not be 0x100000 ... can you please check what size is off_t, and what is the signature of mmap on your system? If its only 32 bit this means we cant mmap physical memory. MST From shaharf at voltaire.com Tue Jan 11 01:43:51 2005 From: shaharf at voltaire.com (shaharf) Date: Tue, 11 Jan 2005 11:43:51 +0200 Subject: [openib-general] Some Missing Features from mthca/user MADaccess Message-ID: Hal, you are right. I confused the method mask the attributes mask. This makes my idea to be invalid. But maybe we should add a flag(s) to this agent registration to set/clear the is_SM bit? you can check that you are granted "respond" permission on qp0 before allowing it. BTW, what the reasoning behind having a method mask? What is the point? Is it due to historical reasons? Note that filtering methods that can be handled by an application is problematic. MHO is that the correct thing to do is to let the application reply an error. Failing to do that may cause applications to conclude that the responding application is dead. On the other hand, attributes mask are much more reasonable. It may allow you to split qp0/qp1 responsibilities to several applications on the same node. This may be applicable to SA attributes. For example, I am not sure why the OpenSM have to manage the service record database. Such attributes mask will enable us to distribute it. In the current state only the SM should request to respond on any methods, unless you can be certain that no SM is required to run on the same port. Shahar ________________________________ From: Hal Rosenstock [mailto:halr at voltaire.com] Sent: Mon 1/10/2005 11:22 PM To: shaharf Cc: Michael S. Tsirkin; Roland Dreier; openib-general at openib.org Subject: RE: [openib-general] Some Missing Features from mthca/user MADaccess On Mon, 2005-01-10 at 11:30, shaharf wrote: > Thinking about it, I think there is another alternative which maybe > cleaner: automatically raise the issm bit if someone registers to answer > sminfo attr. There is no such registration currently so this approach is moot. -- Hal From mst at mellanox.co.il Tue Jan 11 02:37:00 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 11 Jan 2005 12:37:00 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <1105416108.6968.2.camel@duffman> References: <1105416108.6968.2.camel@duffman> Message-ID: <20050111103700.GA12572@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] Re: mstflint failing on sparc64": > On Sun, 2005-01-09 at 22:00 +0200, Michael S. Tsirkin wrote: > > And here we see the incorrect address 0xfff00000 being passed in > > instead of 0x1ff00100000. > > > > I hope I fixed this with the last svn update (rev 1498). > > At least I tested on x86_64 with your device file and it seems > > to print the correct physical address. > > Unfortunately the previous version behaves differently for me > > (tryies to map 0x100000 instead), but that could be > > because of a different architecture somehow. > > This is happening on sparc64 as well. I am guessing that the last test you sent me was on a 32 bit platform though? > > Could you please update and try again (with strace) and let me know? I think I've got it. Could you please update to 1506 or later and try again (with strace), if possible on sparc64 first? MST From eitan at mellanox.co.il Tue Jan 11 02:59:37 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Tue, 11 Jan 2005 12:59:37 +0200 Subject: [openib-general] Some Missing Features from mthca/user MADacc ess Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEBEC@mtlex01.yok.mtl.com> [EZ] Shahar Wrote: On the other hand, attributes mask are much more reasonable. It may allow you to split qp0/qp1 responsibilities to several applications on the same node. This may be applicable to SA attributes. For example, I am not sure why the OpenSM have to manage the service record database. Such attributes mask will enable us to distribute it. [EZ]: The IBADM specification does not require the SA to be the same application/program as the SM. But it does require that ServiceRecords be handled by the SA. [EZ] Another thought. I hope there is no assumption in the code that only one application can register for receiving "un-solicited" MADs of specific class,method,attribute triplet . Consider the case of using InformInfo for receiving Reports from the SM on critical changes in the subnet. Unless you allow each one of the applications to register for receiving these "un-solicited" MADs you will end up writing a kernel module and invent a new API for registering single clients. There are other examples like Baseboard management agents (BM uses "Send" method which I believe does not carry enough information to enable recognizing what "un-solicited" MAD is. -------------- next part -------------- An HTML attachment was scrubbed... URL: From halr at voltaire.com Tue Jan 11 05:08:45 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 11 Jan 2005 08:08:45 -0500 Subject: [openib-general] osm in openib In-Reply-To: <20050111081457.GD4137@mellanox.co.il> References: <20050111081457.GD4137@mellanox.co.il> Message-ID: <1105448925.4649.647.camel@localhost.localdomain> On Tue, 2005-01-11 at 03:14, Michael S. Tsirkin wrote: > Yes, you must have udev mount /dev/infiniband, or do it manually. > This is documented in ../openib/src/linux-kernel/docs/user_mad.txt > Should be part of the FAQ, really. OK. I added this to the src/userspace/management/README file. -- Hal From halr at voltaire.com Tue Jan 11 05:30:29 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 11 Jan 2005 08:30:29 -0500 Subject: [openib-general] Some Missing Features from mthca/user MADaccess In-Reply-To: References: <1105392150.4649.615.camel@localhost.localdomain> Message-ID: <1105450228.4649.670.camel@localhost.localdomain> On Tue, 2005-01-11 at 04:43, shaharf wrote: > But maybe we should add a flag(s) to this agent registration to > set/clear the is_SM bit? you can check that you are granted "respond" > permission on qp0 before allowing it. Not sure what you mean exactly by "respond" permission on QP0. Multiple clients can respond on QP0 with the existing API. How does OpenSM register for SMI ? What do the registrations look like ? I'm not sure we want to lock in is_sm setting and clearing on these anyhow rather than the mechanism previously proposed (special file). > BTW, what the reasoning behind having a method mask? What is the > point? Is it due to historical reasons? The point was to allow different applications to get different methods. There was debate about going down to the attribute level but that need was not deemed as necessary. > Note that filtering methods that can be handled by an application is > problematic. Can you elaborate on what the issue(s) is/are ? Is it what you write below or something else ? There is also the transaction based paradigm as well to handle other cases. > MHO is that the correct thing to do is to let the application reply an > error. Failing to do that may cause applications to conclude that the > responding application is dead. I don't think there is anything preventing a response. So I'm likely not following what you mean here. > On the other hand, attributes mask are much more reasonable. It may > allow you to split qp0/qp1 responsibilities to several applications on > the same node. This may be applicable to SA attributes. For example, I > am not sure why the OpenSM have to manage the service record database. > Such attributes mask will enable us to distribute it. I think it still can be distributed. The threads either need to share a registration (mad_agent) if they are using filtering (methods) or they can have their own registration if they use TID based request/response. BTW, TID based request/response is what was envisioned for managers (and allows for a better distribution model in that they don't need to rely on a shared mad_agent). Filtering on attribute could be done and was argued for back when the API was being discussed but the consensus was that we could live without it. With attribute filtering, I think you could direct a specific attribute to a specific thread easier. > In the current state only the SM should request to respond on any > methods, unless you can be certain that no SM is required to run on > the same port. The SM might use TID based approach rather than method based filtering for its outoing request/incoming response work. SA is more incoming request/outgoing response and so that would be method (filtering) based. Can you provide any examples where the TID based approach is insufficient ? I think you have touched on one example: Since the SA uses method filtering, if the SA were to be multithreaded with different threads handling different attributes, this demux could be pushed down to the MAD layer. An alternative is to demux this at a low layer in OpenSM to dispatch the attribute to the proper thread. I'm not sure there is a compelling reason to push this into the MAD layer but I'm open to hearing and learning more. -- Hal > > Shahar > > > ______________________________________________________________________ > From: Hal Rosenstock [mailto:halr at voltaire.com] > Sent: Mon 1/10/2005 11:22 PM > To: shaharf > Cc: Michael S. Tsirkin; Roland Dreier; openib-general at openib.org > Subject: RE: [openib-general] Some Missing Features from mthca/user > MADaccess > > > > On Mon, 2005-01-10 at 11:30, shaharf wrote: > > Thinking about it, I think there is another alternative which maybe > > cleaner: automatically raise the issm bit if someone registers to > answer > > sminfo attr. > > There is no such registration currently so this approach is moot. > > -- Hal > > > > > > From halr at voltaire.com Tue Jan 11 05:34:34 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 11 Jan 2005 08:34:34 -0500 Subject: [openib-general] Some Missing Features from mthca/user MADacc ess In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEBEC@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6047EEBEC@mtlex01.yok.mtl.com> Message-ID: <1105450474.4649.675.camel@localhost.localdomain> On Tue, 2005-01-11 at 05:59, Eitan Zahavi wrote: > There are other examples like Baseboard management agents (BM uses > "Send" method which I believe does not carry enough information to > enable recognizing what "un-solicited" MAD is. True; Sends are by definition unsolicited. This is just like the CM. The MAD code defines solicited as not CM class or not either response method (a send is not a response) or trap repress (another "response" method). -- Hal From halr at voltaire.com Tue Jan 11 05:53:30 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 11 Jan 2005 08:53:30 -0500 Subject: [openib-general] Some Missing Features from mthca/user MADacc ess In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEBEC@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6047EEBEC@mtlex01.yok.mtl.com> Message-ID: <1105451441.4649.693.camel@localhost.localdomain> On Tue, 2005-01-11 at 05:59, Eitan Zahavi wrote: > [EZ]: The IBADM specification does not require the SA to be the same > application/program as the SM. But it does require that ServiceRecords > be handled by the SA. Not sure what the relevance of IBADM is here nor the use of application/program. IBA (IB architecture), which is what I think is relevant here, allows SA requests to be redirected from the SMLID which effectively accomplishes the end result you mention. I do not know the requirements of IBADM in terms of the MAD layer but am interested in learning... > [EZ] Another thought. I hope there is no assumption in the code that > only one application can register for receiving "un-solicited" MADs of > specific class,method,attribute triplet . There currently is. This is method based filtering (and includes class and class version) but not attribute. > Consider the case of using InformInfo for receiving Reports from the > SM on critical changes in the subnet. Unless you allow each one of the > applications to register for receiving these "un-solicited" MADs you > will end up writing a kernel module and invent a new API for > registering single clients. I see your point. (I do not believe) there is currently a way to accomplish delivering a Report/Trap (subscribed to by multiple clients) to those multiple consumers (some which may be in the kernel and others in user space). Sean's email yesterday mentioned a possible solution for user space but I'm not sure this is sufficient as there could be kernel clients for this as well. In my mind, this is somewhat similar to some of the PortInfo changes except that these events don't go to all consumers so the event mechanism is probably not appropriate. If no one else has other better alternatives, it looks to me like attribute based filtering needs to be added for this plus the delivery of a single received MAD to multiple clients :-( -- Hal From torben.mathiasen at hp.com Tue Jan 11 06:58:15 2005 From: torben.mathiasen at hp.com (Torben Mathiasen) Date: Tue, 11 Jan 2005 15:58:15 +0100 Subject: [openib-general] Re: InfiniBand MAD device number request In-Reply-To: <52oefz23fr.fsf@topspin.com> References: <52brcce5b9.fsf@topspin.com> <20050107120451.GK4592@linux2> <52oefz23fr.fsf@topspin.com> Message-ID: <20050111145814.GP4249@linux2> On Sat, Jan 08 2005, Roland Dreier wrote: > Torben> How many minors do you guys need? char majors are very > Torben> scarce, so if you know how many you need, we can make the > Torben> best possible assignment. > > One minor is consumed for each port of each InfiniBand HCA installed > in the system. I know of real systems that have 10 two-port HCAs > installed, which would require 20 minors. 32 minors may be too few, > since it would not allow for a doubling of already-existing > installations, although perhaps larger systems could be forced to use > dynamic major allocation. > > So depending on how constrained your allocation space is, I would > prefer 64 minors but 32 is probably OK. > Allright, I begun looking into using the 2.6 specific major/minor allocations. 2.6 allows 20 bit worth of minors per major. I'll let you know once I know more. In the mean time, you can just use some of the local/experimental ones which you probaly already do. Thanks, Torben From roland at topspin.com Tue Jan 11 07:31:05 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 11 Jan 2005 07:31:05 -0800 Subject: [openib-general] Re: InfiniBand MAD device number request In-Reply-To: <20050111145814.GP4249@linux2> (Torben Mathiasen's message of "Tue, 11 Jan 2005 15:58:15 +0100") References: <52brcce5b9.fsf@topspin.com> <20050107120451.GK4592@linux2> <52oefz23fr.fsf@topspin.com> <20050111145814.GP4249@linux2> Message-ID: <52llb0x9s6.fsf@topspin.com> Torben> Allright, I begun looking into using the 2.6 specific Torben> major/minor allocations. 2.6 allows 20 bit worth of Torben> minors per major. I'll let you know once I know more. Great. The InfiniBand drivers are 2.6 only so using large majors is fine. Torben> In the mean time, you can just use some of the Torben> local/experimental ones which you probaly already do. Right now the code in the kernel uses dynamic device numbering (and assumes the user is running udev or a similar script). Thanks, Roland From tduffy at sun.com Tue Jan 11 07:36:36 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 11 Jan 2005 07:36:36 -0800 Subject: [openib-general] openIB + RTAI, kernel freezing... In-Reply-To: <41E3E179.7000407@eig.unige.ch> References: <506C3D7B14CDD411A52C00025558DED6064BED71@mtlex01.yok.mtl.com> <1105381618.8427.1.camel@duffman> <41E3E179.7000407@eig.unige.ch> Message-ID: <1105457796.11083.2.camel@duffman> On Tue, 2005-01-11 at 15:23 +0100, von Wyl Marc wrote: > Thanks, I'll try it. > And what about the gen2 userspace? Is it ready? Opensm is working well for other gen2 Linux nodes. I am not sure what the biggest installation has been, but a few node cluster can be managed. There are a few status tools as well as firmware flashing available and working. What other userspace are you looking for? -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From eitan at mellanox.co.il Tue Jan 11 07:47:35 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Tue, 11 Jan 2005 17:47:35 +0200 Subject: [openib-general] Some Missing Features from mthca/user MADacc ess Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEBF2@mtlex01.yok.mtl.com> I apologize for the 'IBADM' term it's my typo. I meant IB TA spec. [EZ] Hal wrote: Not sure what the relevance of IBADM is here nor the use of application/program. IBA (IB architecture), which is what I think is relevant here, allows SA requests to be redirected from the SMLID which effectively accomplishes the end result you mention. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mst at mellanox.co.il Tue Jan 11 07:58:36 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 11 Jan 2005 17:58:36 +0200 Subject: [openib-general] Initial OpenIB Architecture In-Reply-To: <000b01c4f4ca$b2715740$6601a8c0@Gripen> References: <000b01c4f4ca$b2715740$6601a8c0@Gripen> Message-ID: <20050111155835.GA13132@mellanox.co.il> Hello! Quoting r. Hal Rosenstock (halr at voltaire.com) "[openib-general] Initial OpenIB Architecture": > Hi, > > Here are some slides on the initial OpenIB architecture put together by some of > the developers. This also can be found as https://openib.org/svn/gen2/trunk/ > arch/OpenIB-Arch-041221.pdf > > Comments welcome. > > -- Hal > Hi, Hal! Great slides! Couple of comments (I dont mean slides need necessarily change, but maybe mentioned in the presentation): - Dont we want IB 1.2 compliance (slides say IB 1.1)? - Slides say "Allocate/map userspace doorbell pages". - Note that you also want to unmap these. It may seem trivial, but it may not be so always (there may be hotswap or reset related issues). - Kernel code could also get slightly better protection by using doorbell pages. Sure, kernel is trusted, but modularity is good. - It might be a good idea to split the "user level infiniband services" so separate boxes, and map it to users. For example - opensm is probably the only user of mad user services - but I think it never uses CM and SA services This is important e.g. since these will have different permissions. - I also wander why is there "ib verbs" in userspace. E.g. should not user space cm talk just to kernel cm? I kind of hope the kernel/user interface will be along the lines of the simplicity that we currently have with umad, and will not expose all the rich verbs interface. - Memory registration: "Handle memory pinning (mostly done in userspace with mlock() system call)". I expect you are aware that it works really well for full pages only ( otherwise copy on write begins killing you). There could be other approaches if you are ready to do a system call on receive, for example, do a page walk and copy data if the virtual address changes. Could be worth it mentioning that this may need looking into. mst From halr at voltaire.com Tue Jan 11 08:26:28 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 11 Jan 2005 11:26:28 -0500 Subject: [openib-general] Initial OpenIB Architecture In-Reply-To: <20050111155835.GA13132@mellanox.co.il> References: <000b01c4f4ca$b2715740$6601a8c0@Gripen> <20050111155835.GA13132@mellanox.co.il> Message-ID: <1105460787.4649.760.camel@localhost.localdomain> On Tue, 2005-01-11 at 10:58, Michael S. Tsirkin wrote: > Great slides! Thanks. The credit for this goes to all the contributors/developers. > Couple of comments (I dont mean slides need necessarily change, but maybe > mentioned in the presentation): > > - Dont we want IB 1.2 compliance (slides say IB 1.1)? We are _initially_ targeting IBA 1.1 with selected 1.2 compliance right now. DDR is one thing. Client reregister and SRQ support are some others. There are a few others which escape me right now but a more complete list can be put together. These are on a need basis right now. More 1.2 compliance will come later. Are there some 1.2 specifics which you think are needed sooner ? > - Slides say "Allocate/map userspace doorbell pages". > - Note that you also want to unmap these. It may seem trivial, > but it may not be so always (there may be hotswap or reset related issues). > - Kernel code could also get slightly better protection by using doorbell > pages. Sure, kernel is trusted, but modularity is good. > - It might be a good idea to split the "user level infiniband services" > so separate boxes, and map it to users. Not sure what you mean by this. The user IB services are available to any application. > For example > - opensm is probably the only user of mad user services It's not. The diagnostic tools are also consumers of user MAD services as are any user space SA clients associated with applications or CM clients in user space. > - but I think it never uses CM and SA services OpenSM also contains SA (but not SA client which is intented for those applications needing things like PathRecords, etc.). SM/SA does not need CM. Am I misunderstanding ? > This is important e.g. since these will have different permissions. > - I also wander why is there "ib verbs" in userspace. > E.g. should not user space cm talk just to kernel cm? I think that is the intention although this is TBD. > I kind of hope the kernel/user interface will be along > the lines of the simplicity that we currently have with umad, > and will not expose all the rich verbs interface. This is coming out of Roland and Libor's user space work. I think it needs more richness than umad to allow for RDMA, atomics, SRQs, etc. > - Memory registration: "Handle memory pinning (mostly done in userspace > with mlock() system call)". I expect you are aware that it works > really well for full pages only ( otherwise copy on write > begins killing you). There could be other approaches if you are > ready to do a system call on receive, for example, do a page walk > and copy data if the virtual address changes. > Could be worth it mentioning that this may need looking into. Thanks for the feedback. Please continue to monitor the list and discuss issues with the evolving APIs, design, and implementation. -- Hal From mst at mellanox.co.il Tue Jan 11 08:50:50 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 11 Jan 2005 18:50:50 +0200 Subject: [openib-general] Initial OpenIB Architecture In-Reply-To: <1105460787.4649.760.camel@localhost.localdomain> References: <000b01c4f4ca$b2715740$6601a8c0@Gripen> <20050111155835.GA13132@mellanox.co.il> <1105460787.4649.760.camel@localhost.localdomain> Message-ID: <20050111165050.GA13295@mellanox.co.il> Hello, Hal! Quoting r. Hal Rosenstock (halr at voltaire.com) "Re: [openib-general] Initial OpenIB Architecture": > > - It might be a good idea to split the "user level infiniband services" > > so separate boxes, and map it to users. > > Not sure what you mean by this. The user IB services are available to > any application. Not all I think, e.g. umad access is normally limited to root. > > - but I think it never uses CM and SA services > > OpenSM also contains SA (but not SA client which is intented for those > applications needing things like PathRecords, etc.). SM/SA does not need > CM. Am I misunderstanding ? Yes, right. > Thanks for the feedback. Please continue to monitor the list and discuss > issues with the evolving APIs, design, and implementation. Sure, I also hope to contribute some code over time. mst From tduffy at sun.com Tue Jan 11 09:02:06 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 11 Jan 2005 09:02:06 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050111103700.GA12572@mellanox.co.il> References: <1105416108.6968.2.camel@duffman> <20050111103700.GA12572@mellanox.co.il> Message-ID: <1105462926.14894.12.camel@duffman> On Tue, 2005-01-11 at 12:37 +0200, Michael S. Tsirkin wrote: > I am guessing that the last test you sent me was on a 32 bit > platform though? No, userspace is 32bit on sparc64, but kernel is 64 bit. tat:~# file mstflint mstflint: ELF 32-bit MSB executable, SPARC, version 1 (SYSV), for GNU/Linux 2.2.0, dynamically linked (uses shared libs), not stripped tat:~# uname -a Linux tat 2.6.10openib #14 SMP Mon Jan 3 12:30:51 PST 2005 sparc64 GNU/Linux > I think I've got it. > Could you please update to 1506 or later and try again (with strace), > if possible on sparc64 first? execve("./mstflint", ["./mstflint", "-d", "81:00.0", "q"], [/* 14 vars */]) = 0 uname({sys="Linux", node="tat", ...}) = 0 brk(0) = 0x2c000 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/etc/ld.so.preload", O_RDONLY) = -1 ENOENT (No such file or directory) open("/etc/ld.so.cache", O_RDONLY) = 3 fstat64(3, {st_mode=S_IFREG|0644, st_size=53602, ...}) = 0 mmap(NULL, 53602, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7002c000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/usr/lib/libstdc++.so.5", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\3\332"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=725592, ...}) = 0 mmap(NULL, 810456, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x7003c000 mprotect(0x700da000, 163288, PROT_NONE) = 0 mmap(0x700dc000, 139264, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0x90000) = 0x700dc000 mmap(0x700fe000, 15832, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x700fe000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libm.so.6", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\0\234"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=527020, ...}) = 0 mmap(NULL, 591312, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x70104000 mprotect(0x70182000, 75216, PROT_NONE) = 0 mmap(0x70184000, 73728, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0x70000) = 0x70184000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libgcc_s.so.1", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\0\30"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=36696, ...}) = 0 mmap(NULL, 101240, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x70198000 mprotect(0x701a2000, 60280, PROT_NONE) = 0 mmap(0x701a8000, 40960, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0) = 0x701a8000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libc.so.6", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\1\316"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=1291948, ...}) = 0 mmap(NULL, 1361864, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x701b4000 mprotect(0x702e8000, 100296, PROT_NONE) = 0 mmap(0x702f4000, 49152, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0x130000) = 0x702f4000 mmap(0x70300000, 1992, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x70300000 close(3) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x70302000 munmap(0x7002c000, 53602) = 0 brk(0) = 0x2c000 brk(0x4e000) = 0x4e000 brk(0) = 0x4e000 open("/dev/mem", O_RDWR|O_SYNC|O_LARGEFILE) = 3 open("/proc/bus/pci/devices", O_RDONLY|O_LARGEFILE) = 4 fstat64(4, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7002c000 read(4, "0000\t108e8000\t0\t 0"..., 1024) = 1024 read(4, " 0\tsym53c8xx\n0019\t1000000f\t7af"..., 1024) = 1024 read(4, " 0\t 0\tib_"..., 1024) = 38 close(4) = 0 munmap(0x7002c000, 8192) = 0 mmap2(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x1ff00100) = 0x70304000 --- SIGBUS (Bus error) @ 0 (0) --- +++ killed by SIGBUS +++ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mshefty at ichips.intel.com Tue Jan 11 09:15:57 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Tue, 11 Jan 2005 09:15:57 -0800 Subject: [openib-general] Some Missing Features from mthca/user MADaccess In-Reply-To: <1105450228.4649.670.camel@localhost.localdomain> References: <1105392150.4649.615.camel@localhost.localdomain> <1105450228.4649.670.camel@localhost.localdomain> Message-ID: <41E409CD.10604@ichips.intel.com> Hal Rosenstock wrote: >>On the other hand, attributes mask are much more reasonable. It may >>allow you to split qp0/qp1 responsibilities to several applications on >>the same node. This may be applicable to SA attributes. For example, I >>am not sure why the OpenSM have to manage the service record database. >>Such attributes mask will enable us to distribute it. > > > Filtering on attribute could be done and was argued for back when the > API was being discussed but the consensus was that we could live without > it. With attribute filtering, I think you could direct a specific > attribute to a specific thread easier. An issue with attribute filtering is that is results in an O(lg n) algorithm being used to route MADs to the correct client. Routing based on class/method can be done in O(1), since the range of classes/methods is substantially smaller than that of attributes. Adding an attribute mask isn't overly difficult, it just wasn't felt that it was necessary. - Sean From mshefty at ichips.intel.com Tue Jan 11 09:35:53 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Tue, 11 Jan 2005 09:35:53 -0800 Subject: [openib-general] [PATCH] Add QP type to struct ib_qp In-Reply-To: <20050110173734.3cc800b7.mshefty@ichips.intel.com> References: <20050110173734.3cc800b7.mshefty@ichips.intel.com> Message-ID: <41E40E79.1060004@ichips.intel.com> Sean Hefty wrote: > This adds the qp_type to the struct ib_qp. The field is used by the CM. > A future update would be to examine mthca to see if it can use the same field. Committed change after adding sign-off by line... - Sean From mshefty at ichips.intel.com Tue Jan 11 09:40:07 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Tue, 11 Jan 2005 09:40:07 -0800 Subject: [openib-general] Re: [PATCH] update to GID/PKey cache In-Reply-To: <52pt0cyck7.fsf@topspin.com> References: <20050110175026.042c69b7.mshefty@ichips.intel.com> <52pt0cyck7.fsf@topspin.com> Message-ID: <41E40F77.1060605@ichips.intel.com> Roland Dreier wrote: > Sean> (The CM needs the new routine even if the name changes are > Sean> not accepted.) > > The name changes seem fine to me. I have no problem if you go ahead > and commit the whole thing. Thanks - committed changes. - Sean From mst at mellanox.co.il Tue Jan 11 10:11:15 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 11 Jan 2005 20:11:15 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <1105462926.14894.12.camel@duffman> References: <1105462926.14894.12.camel@duffman> Message-ID: <20050111181115.GA13424@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] Re: mstflint failing on sparc64": > On Tue, 2005-01-11 at 12:37 +0200, Michael S. Tsirkin wrote: > > I am guessing that the last test you sent me was on a 32 bit > > platform though? > > No, userspace is 32bit on sparc64, but kernel is 64 bit. > > tat:~# file mstflint > mstflint: ELF 32-bit MSB executable, SPARC, version 1 (SYSV), for > GNU/Linux 2.2.0, dynamically linked (uses shared libs), not stripped > tat:~# uname -a > Linux tat 2.6.10openib #14 SMP Mon Jan 3 12:30:51 PST 2005 sparc64 > GNU/Linux > > > I think I've got it. > > Could you please update to 1506 or later and try again (with strace), > > if possible on sparc64 first? Here's a patch that adds some debug printouts. Cold you run with this applied, please, mayba I'll se what is wrong? Index: mtcr.h =================================================================== --- mtcr.h (revision 1506) +++ mtcr.h (working copy) @@ -236,6 +236,8 @@ else goto error; + fprintf(stderr,"found line :\"%s\"\n", buf); + if (cnt != 17 || size[1] != 0 || size[0] != 0x100000) { fprintf(stderr,"proc: unexpected region size values: " @@ -252,10 +254,13 @@ goto error; } + fprintf(stderr,"base_addr[0]=%#llx, base_addr[1]=%#llx\n", + base_addr[0], base_addr[1]); offset=((unsigned long long)(base_addr[1])<<32)+ ((unsigned long long)(base_addr[0])&~(unsigned long long)(0xfffff)); + fprintf(stderr,"mfind offset=%#llx\n", offset); *offset_p=offset; fclose(f); @@ -302,6 +307,8 @@ if (mfind(name,&offset)) goto map_failed; + fprintf(stderr,"mmap offset=%#llx\n", offset); + mf->ptr = mmap(NULL, 0x100000, PROT_READ | PROT_WRITE, MAP_SHARED, mf->fd, offset); From roland at topspin.com Tue Jan 11 10:40:49 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 11 Jan 2005 10:40:49 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050111064435.GF6198@esmail.cup.hp.com> (Grant Grundler's message of "Mon, 10 Jan 2005 22:44:35 -0800") References: <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050111064435.GF6198@esmail.cup.hp.com> Message-ID: <52d5wbyfke.fsf@topspin.com> Grant> I didn't figure out why, but moving this chunk to Grant> immediately before request_irq() worked fine. Normally I Grant> expect _probe_one to get called before _open... but maybe Grant> something else needed to happen before pci_enable_msi() Grant> could be called. That's a little strange. It could either be the pci_enable_msi() or the MSGINT_MODE setting that needs to happen later. What puzzles me is that there's a call to tg3_init_hw() even after the request_irq, which does a tg3_reset_hw() -- so why doesn't that mess up our MSGINT_MODE? In any case I'm glad someone is finally looking at enabling MSI support in more drivers. It would be really nice to get this upstream so that MSI support starts getting some real testing on lots of systems. One detail that you should add before sending this upstream is that SA_SHIRQ is not needed in MSI mode -- the driver can be sure that the interrupt is not shared. - R. From tduffy at sun.com Tue Jan 11 11:05:45 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 11 Jan 2005 11:05:45 -0800 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050111181115.GA13424@mellanox.co.il> References: <1105462926.14894.12.camel@duffman> <20050111181115.GA13424@mellanox.co.il> Message-ID: <1105470345.14894.31.camel@duffman> On Tue, 2005-01-11 at 20:11 +0200, Michael S. Tsirkin wrote: > Here's a patch that adds some debug printouts. > Cold you run with this applied, please, mayba I'll se what is wrong? tat:~# ./mstflint -d 0000:81:00.0 q found line :"8100 15b35a44 7aee40 1ff00100004 0 1ff0080000c 0 1ff0800000 0 0 100000 800000 0 8000000 0 ib_mthca " base_addr[0]=0x1ff00100004, base_addr[1]=0 mfind offset=0x1ff00100000 mmap offset=0x1ff00100000 Bus error -tduffy P.S. I get these warnings compiling the mstflint code. Not sure if it matters. tduffy at rever:/build1/tduffy/openib-work/gen2-sparc/src/userspace/mstflint$ make g++ -g -I. -fno-exceptions -Wall -O2 flint.cpp -o mstflint flint.cpp:201:1: warning: "__le32_to_cpu" redefined In file included from flint.cpp:39: mtcr.h:92:1: warning: this is the location of the previous definition flint.cpp:204:1: warning: "__cpu_to_le32" redefined mtcr.h:89:1: warning: this is the location of the previous definition P.P.S. I installed the 64bit libc6 libraries, recompiled mstflint as 64 bit, and the problem was still there. Unfortunately, I couldn't strace the 64bit binary. Plus, there were a bunch more compile warnings: tduffy at rever:/build1/tduffy/openib-work/gen2-sparc/src/userspace/mstflint$ g++ -g -m64 -I. -fno-exceptions -Wall -O2 flint.cpp -o mstflint flint.cpp:201:1: warning: "__le32_to_cpu" redefined In file included from flint.cpp:39: mtcr.h:92:1: warning: this is the location of the previous definition flint.cpp:204:1: warning: "__cpu_to_le32" redefined mtcr.h:89:1: warning: this is the location of the previous definition flint.cpp: In function `bool pathGUIDs(FImage&, u_int64_t*, bool)': flint.cpp:3198: warning: long long unsigned int format, u_int64_t arg (arg 2) flint.cpp:3199: warning: long long unsigned int format, u_int64_t arg (arg 2) flint.cpp:3200: warning: long long unsigned int format, u_int64_t arg (arg 2) flint.cpp:3202: warning: long long unsigned int format, u_int64_t arg (arg 2) flint.cpp:3204: warning: long long unsigned int format, long unsigned int arg (arg 2) flint.cpp:3205: warning: long long unsigned int format, long unsigned int arg (arg 2) flint.cpp:3206: warning: long long unsigned int format, long unsigned int arg (arg 2) flint.cpp:3208: warning: long long unsigned int format, long unsigned int arg (arg 2) flint.cpp:3233: warning: long long unsigned int format, long unsigned int arg (arg 2) flint.cpp:3234: warning: long long unsigned int format, long unsigned int arg (arg 2) flint.cpp:3235: warning: long long unsigned int format, long unsigned int arg (arg 2) flint.cpp:3237: warning: long long unsigned int format, long unsigned int arg (arg 2) flint.cpp: In function `bool RevisionInfo(FBase&, u_int64_t*, char*, bool*, bool)': flint.cpp:3329: warning: long long unsigned int format, u_int64_t arg (arg 2) -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mst at mellanox.co.il Tue Jan 11 11:34:55 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 11 Jan 2005 21:34:55 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <1105470345.14894.31.camel@duffman> References: <1105470345.14894.31.camel@duffman> Message-ID: <20050111193455.GC13436@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] Re: mstflint failing on sparc64": > On Tue, 2005-01-11 at 20:11 +0200, Michael S. Tsirkin wrote: > > Here's a patch that adds some debug printouts. > > Cold you run with this applied, please, mayba I'll se what is wrong? > > tat:~# ./mstflint -d 0000:81:00.0 q > found line :"8100 15b35a44 7aee40 1ff00100004 > 0 1ff0080000c 0 1ff0800000 > 0 0 100000 800000 > 0 8000000 0 ib_mthca > " > base_addr[0]=0x1ff00100004, base_addr[1]=0 > mfind offset=0x1ff00100000 > mmap offset=0x1ff00100000 > Bus error > > -tduffy I dont understand it. But when you run strace mmap was getting offset 1ff00100. I'm staring at the code now but I dont see how it happends. Need to find a way to debug it I guess. > P.S. I get these warnings compiling the mstflint code. Not sure if it > matters. > > tduffy at rever:/build1/tduffy/openib-work/gen2-sparc/src/userspace/mstflin > t$ make > g++ -g -I. -fno-exceptions -Wall -O2 flint.cpp -o mstflint > flint.cpp:201:1: warning: "__le32_to_cpu" redefined > In file included from flint.cpp:39: > mtcr.h:92:1: warning: this is the location of the previous definition > flint.cpp:204:1: warning: "__cpu_to_le32" redefined > mtcr.h:89:1: warning: this is the location of the previous definition > > P.P.S. I installed the 64bit libc6 libraries, recompiled mstflint as 64 > bit, and the problem was still there. Unfortunately, I couldn't strace > the 64bit binary. Plus, there were a bunch more compile warnings: > > tduffy at rever:/build1/tduffy/openib-work/gen2-sparc/src/userspace/mstflin > t$ g++ -g -m64 -I. -fno-exceptions -Wall -O2 flint.cpp -o mstflint > flint.cpp:201:1: warning: "__le32_to_cpu" redefined > In file included from flint.cpp:39: > mtcr.h:92:1: warning: this is the location of the previous definition > flint.cpp:204:1: warning: "__cpu_to_le32" redefined > mtcr.h:89:1: warning: this is the location of the previous definition > flint.cpp: In function `bool pathGUIDs(FImage&, u_int64_t*, bool)': > flint.cpp:3198: warning: long long unsigned int format, u_int64_t arg > (arg 2) It seems u_int64_t is different from long long in this setup. dont think it matters. Am I right that it behaves the same? mst From halr at voltaire.com Tue Jan 11 11:32:20 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 11 Jan 2005 14:32:20 -0500 Subject: [openib-general] IPoIB completion handler Message-ID: <1105471940.4649.780.camel@localhost.localdomain> Hi Roland, I have a couple of questions on the IPoIB completion handler: Why key off bit in wc.wr_id rather than use wc.opcode to determine where the completed operation was a receive or transmit ? Also, when wc.status != success, wr_id cannot be trusted but is still used to determine operation type (receive/transmit) and more importantly the index into transmit/receive ring. Can't the index be determined based on rotating around the rings based on the number of receive or transmit completions "seen" without using the wr_id ? Are there other better ways of doing this ? Thanks. -- Hal From mshefty at ichips.intel.com Tue Jan 11 11:40:54 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Tue, 11 Jan 2005 11:40:54 -0800 Subject: [openib-general] IPoIB completion handler In-Reply-To: <1105471940.4649.780.camel@localhost.localdomain> References: <1105471940.4649.780.camel@localhost.localdomain> Message-ID: <41E42BC6.8060608@ichips.intel.com> Hal Rosenstock wrote: > Why key off bit in wc.wr_id rather than use wc.opcode to determine where > the completed operation was a receive or transmit ? The opcode isn't set if status != success. > Also, when wc.status != success, wr_id cannot be trusted but is still The wr_id is always valid, regardless of the status. - Sean From roland at topspin.com Tue Jan 11 11:41:03 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 11 Jan 2005 11:41:03 -0800 Subject: [openib-general] Re: IPoIB completion handler In-Reply-To: <1105471940.4649.780.camel@localhost.localdomain> (Hal Rosenstock's message of "11 Jan 2005 14:32:20 -0500") References: <1105471940.4649.780.camel@localhost.localdomain> Message-ID: <52y8ezwy7k.fsf@topspin.com> Hal> Why key off bit in wc.wr_id rather than use wc.opcode to Hal> determine where the completed operation was a receive or Hal> transmit ? Hal> Also, when wc.status != success, wr_id cannot be trusted but Hal> is still used to determine operation type (receive/transmit) Hal> and more importantly the index into transmit/receive Hal> ring. Can't the index be determined based on rotating around Hal> the rings based on the number of receive or transmit Hal> completions "seen" without using the wr_id ? Are there other Hal> better ways of doing this ? As we discussed earlier, the WR ID _is_ valid no matter what the status is, while the operation type is _not_ valid if the status is not success. It's true that we could keep track of the next send and next receive we expect to complete and just use the WR ID to distinguish between sends and receives, but it seems like six of one, half dozen of another to me. - Roland From iod00d at hp.com Tue Jan 11 13:17:50 2005 From: iod00d at hp.com (Grant Grundler) Date: Tue, 11 Jan 2005 13:17:50 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52d5wbyfke.fsf@topspin.com> References: <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050111064435.GF6198@esmail.cup.hp.com> <52d5wbyfke.fsf@topspin.com> Message-ID: <20050111211750.GH10342@esmail.cup.hp.com> On Tue, Jan 11, 2005 at 10:40:49AM -0800, Roland Dreier wrote: > That's a little strange. It could either be the pci_enable_msi() or > the MSGINT_MODE setting that needs to happen later. I suspect it's the MSGINT_MODE that needs to happen later. > What puzzles me > is that there's a call to tg3_init_hw() even after the request_irq, > which does a tg3_reset_hw() -- so why doesn't that mess up our > MSGINT_MODE? Good question. I really don't know. Only broadcom will know. tg3_init_hw doesn't mess up the BARs or MSI address/data either. Keep in mind a "reset" isn't a *full* HW reset (ie like cycling the power). It's all under SW (onboard firmware) control. | eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] Split[0] WireSpeed[1] TSOcap[0] Looks like TSO isn't enabled and I'm running a 5701 chip right now. I will need to find out a firmware upload (e.g. TG3_TSO_SUPPORT != 0) would mess up MSGINT_MODE as well. > In any case I'm glad someone is finally looking at enabling MSI > support in more drivers. It would be really nice to get this upstream > so that MSI support starts getting some real testing on lots of > systems. Yes - and I'd like to twiddle with tg3 a bit more to see if I can get it operating with ZERO mmio reads like it was designed for. > One detail that you should add before sending this upstream is that > SA_SHIRQ is not needed in MSI mode -- the driver can be sure that the > interrupt is not shared. I expect SA_SHIRQ is harmless since the tg3 interrupt handler can't assume the MSI will be assigned and working. I don't want to add run time checks to tg3 for this (assuming it's obvious where to add them). It might be better to document this in Documentation/MSI-HOWTO.txt. BTW, I expect better perf if the platform code specifies IRQ_PER_CPU in the IRQ descriptor. AFAICT, only ia64 and ppc64 do that. (parisc-linux just switched over to generic IRQ support...it will too). Folks who care about AMD64 performance should look into that as well - maybe it's not possible to direct interrupts to a specific CPU. thanks, grant From roland at topspin.com Tue Jan 11 13:41:00 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 11 Jan 2005 13:41:00 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050111211750.GH10342@esmail.cup.hp.com> (Grant Grundler's message of "Tue, 11 Jan 2005 13:17:50 -0800") References: <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050111064435.GF6198@esmail.cup.hp.com> <52d5wbyfke.fsf@topspin.com> <20050111211750.GH10342@esmail.cup.hp.com> Message-ID: <52llazwsnn.fsf@topspin.com> Grant> I expect SA_SHIRQ is harmless since the tg3 interrupt Grant> handler can't assume the MSI will be assigned and Grant> working. I don't want to add run time checks to tg3 for Grant> this (assuming it's obvious where to add them). It might Grant> be better to document this in Documentation/MSI-HOWTO.txt. I think a full MSI update for tg3 would need a separate MSI interrupt routine that takes advantage of all the additional non-shared and ordering guarantees that MSI provides. This is what I did in mthca -- normally, we pass mthca_interrupt() to request_irq, but in MSI-X mode, we pass mthca_msi_x_interrupt(), which doesn't do any mmio reads. Grant> BTW, I expect better perf if the platform code specifies Grant> IRQ_PER_CPU in the IRQ descriptor. AFAICT, only ia64 and Grant> ppc64 do that. (parisc-linux just switched over to generic Grant> IRQ support...it will too). Folks who care about AMD64 Grant> performance should look into that as well - maybe it's not Grant> possible to direct interrupts to a specific CPU. That's an interesting idea. It is possible to assign interrupts to a particular CPU on i386/x86_64 -- one can do it from userspace by writing a mask with only one 1 in it into /proc/irq/N/smp_affinity. In fact even if the mask allows more than one CPU, in a lot of systems the interrupt will always go to the same CPU unless someone changes the binding (either by the kernel kirqd or userspace IRQ balancer). However I guess there may be a race condition when an IRQ is being moved from one CPU to another. How do ia64/ppc64 handle this? - R. From iod00d at hp.com Tue Jan 11 15:26:08 2005 From: iod00d at hp.com (Grant Grundler) Date: Tue, 11 Jan 2005 15:26:08 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52llazwsnn.fsf@topspin.com> References: <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050111064435.GF6198@esmail.cup.hp.com> <52d5wbyfke.fsf@topspin.com> <20050111211750.GH10342@esmail.cup.hp.com> <52llazwsnn.fsf@topspin.com> Message-ID: <20050111232608.GA11782@esmail.cup.hp.com> On Tue, Jan 11, 2005 at 01:41:00PM -0800, Roland Dreier wrote: > I think a full MSI update for tg3 would need a separate MSI interrupt > routine that takes advantage of all the additional non-shared and > ordering guarantees that MSI provides. That's the beauty of bcm57xx. The DMA/Intr ordering is handled by passing tags back of forth - so the NIC knows which status block the host saw on the current interrupt. It might result in a spurious interrupt on occasion but very portable IMHO. > This is what I did in mthca -- > normally, we pass mthca_interrupt() to request_irq, but in MSI-X mode, > we pass mthca_msi_x_interrupt(), which doesn't do any mmio reads. *nod* > That's an interesting idea. It is possible to assign interrupts to a > particular CPU on i386/x86_64 -- one can do it from userspace by > writing a mask with only one 1 in it into /proc/irq/N/smp_affinity. Yes. If one can program the HW so that is enforced. I'm not sure IRQ redirection is tunable on older x86 chipsets that might also have PCI. It is for anything modern that uses xAPIC (aka SAPIC for ia64/parisc). I've already suggested to parisc-linux forum it might be worth making IRQ_PER_CPU a compile time option instead of a run time option. Especially on arches where that is the ONLY available behavior. > In fact even if the mask allows more than one CPU, in a lot of systems > the interrupt will always go to the same CPU unless someone changes > the binding (either by the kernel kirqd or userspace IRQ balancer). AFAIK: PPC, IA64, parisc, and alpha by design. Maybe others too. IA64 *can* redirect interrupts a la x86 if "XPR" register is implemented in the chipset. HP IA64 chipsets to date do not and that was intentional. > However I guess there may be a race condition when an IRQ is being > moved from one CPU to another. How do ia64/ppc64 handle this? Off hand I don't know. I expect something like disable_irq()/change params/enable_irq() to DTRT. disable_irq() will guarantee all "inflight" IRQs have been handled and the respective handlers have exited. As the name implies, disable_irq_nosync() does not provide that guarantee. grant From mst at mellanox.co.il Tue Jan 11 16:37:45 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 12 Jan 2005 02:37:45 +0200 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050111232608.GA11782@esmail.cup.hp.com> References: <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050111064435.GF6198@esmail.cup.hp.com> <52d5wbyfke.fsf@topspin.com> <20050111211750.GH10342@esmail.cup.hp.com> <52llazwsnn.fsf@topspin.com> <20050111232608.GA11782@esmail.cup.hp.com> Message-ID: <20050112003745.GA14042@mellanox.co.il> Quoting r. Grant Grundler (iod00d at hp.com) "Re: [openib-general] ip over ib throughtput": > On Tue, Jan 11, 2005 at 01:41:00PM -0800, Roland Dreier wrote: > > I think a full MSI update for tg3 would need a separate MSI interrupt > > routine that takes advantage of all the additional non-shared and > > ordering guarantees that MSI provides. > > That's the beauty of bcm57xx. The DMA/Intr ordering is handled by passing > tags back of forth - so the NIC knows which status block the host saw > on the current interrupt. It might result in a spurious interrupt > on occasion but very portable IMHO. Does this mean that after MSI wa asserted, and before status is passed back, no more messages of the same kind are sent? mst From iod00d at hp.com Tue Jan 11 16:37:38 2005 From: iod00d at hp.com (Grant Grundler) Date: Tue, 11 Jan 2005 16:37:38 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52brc33nms.fsf@topspin.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52brc33nms.fsf@topspin.com> Message-ID: <20050112003738.GF11782@esmail.cup.hp.com> On Wed, Jan 05, 2005 at 07:24:11AM -0800, Roland Dreier wrote: > Grant, what FW are you running? I just realized that all FW prior to > 3.3.1 has issues with MSI-X. So if you want to use MSI-X then you > should upgrade to FW 3.3.2 (since 3.3.1 has a bug in CQ handling). Thanks to help from Roland, I upgraded to 3.3.2 and can load "mthca msi_x=1" now too. It really was just a firmware problem. I'll try to get some netperf numbers for IPoIB next (with msi_x=1)... thanks, grant From iod00d at hp.com Tue Jan 11 17:37:22 2005 From: iod00d at hp.com (Grant Grundler) Date: Tue, 11 Jan 2005 17:37:22 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050112003738.GF11782@esmail.cup.hp.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52brc33nms.fsf@topspin.com> <20050112003738.GF11782@esmail.cup.hp.com> Message-ID: <20050112013722.GH11782@esmail.cup.hp.com> On Tue, Jan 11, 2005 at 04:37:38PM -0800, Grant Grundler wrote: > I'll try to get some netperf numbers for IPoIB next (with msi_x=1)... I forgot to mention why with "msi_x=1" and not with "msi=1": ionize:~# modprobe ib_mthca msi_x=1 ib_mthca: Mellanox InfiniBand HCA driver v0.06-pre (November 8, 2004) ib_mthca: Initializing Mellanox Technology MT23108 InfiniHost (0000:81:00.0) GSI 60 (level, low) -> CPU 0 (0x0000) vector 63 ACPI: PCI interrupt 0000:81:00.0[A] -> GSI 60 (level, low) -> IRQ 63 MSI INIT SUCCESS ionize:~# ... [ mess with tg3 driver for a bit ] ionize:/home/grundler# rmmod ib_mthca ionize:/home/grundler# modprobe ib_mthca msi=1 ib_mthca: Mellanox InfiniBand HCA driver v0.06-pre (November 8, 2004) ib_mthca: Initializing Mellanox Technology MT23108 InfiniHost (0000:81:00.0) ACPI: PCI interrupt 0000:81:00.0[A] -> GSI 60 (level, low) -> IRQ 63 Can't enable MSI. Device already had MSI-X vectors assigned ionize:/home/grundler# i.e. one can't switch from MSI-X to MSI for a particular device. Roland and I both suspect this is probably something to do with core MSI support. grant From roland at topspin.com Tue Jan 11 17:45:05 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 11 Jan 2005 17:45:05 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050112013722.GH11782@esmail.cup.hp.com> (Grant Grundler's message of "Tue, 11 Jan 2005 17:37:22 -0800") References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52brc33nms.fsf@topspin.com> <20050112003738.GF11782@esmail.cup.hp.com> <20050112013722.GH11782@esmail.cup.hp.com> Message-ID: <52wtujto7y.fsf@topspin.com> Grant> i.e. one can't switch from MSI-X to MSI for a particular Grant> device. Roland and I both suspect this is probably Grant> something to do with core MSI support. In fact I'm pretty positive of this now: there is no call to msi_free_vector() in pci_disable_msix(), so pci_enable_msi() is guaranteed to fail. - R. From mst at mellanox.co.il Wed Jan 12 02:06:46 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 12 Jan 2005 12:06:46 +0200 Subject: [openib-general] Re: mstflint failing on sparc64 In-Reply-To: <20050106182821.GF26357@mellanox.co.il> References: <1105034992.14325.9.camel@duffman> <20050106182821.GF26357@mellanox.co.il> Message-ID: <20050112100646.GA22105@mellanox.co.il> Hello! Quoting r. Michael S. Tsirkin (mst at mellanox.co.il) "[openib-general] Re: mstflint failing on sparc64": > > this looks ok except for the Board ID. > > > > tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q > > Image type: FailSafe > > Chip rev.: A1 > > GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 > > 50d0000100c90200 > > Board ID: guoCC ra > > But on x86 it looks right? Thats not in mtcr, that will be > flint code proper. I'll look at it the next week, I 'm sure > its nothing critical. Okay, I fixed the board ID for now. I also added some options for Makefile, to make it easier to build e.g. without optimisations, like this, for example: make CFLAGS='-g -m64' mst From Andras.Horvath at cern.ch Wed Jan 12 02:48:41 2005 From: Andras.Horvath at cern.ch (Andras.Horvath at cern.ch) Date: Wed, 12 Jan 2005 11:48:41 +0100 Subject: [openib-general] ip over ib throughtput In-Reply-To: <521xct1c32.fsf@topspin.com> References: <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> Message-ID: <20050112104841.GH2351@cern.ch> > It seems you have an ancient firmware version (1.18). MSI-X will not > work correctly with firmware older than 3.3.2. In fact it seems I'll try to work on that, thanks. > capability. If you do lspci -v, do you see a capability like Capabilities: [40] #0d [001f] Capabilities: [60] Message Signalled Interrupts: 64bit+ Queue=0/5 Enable+ so I tried msi=1 instead of msi_x=1 and this one sort of works (with significant performance gain), although not stable. I'll upgrade firmware first. Andras From mst at mellanox.co.il Wed Jan 12 02:51:56 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 12 Jan 2005 12:51:56 +0200 Subject: [openib-general] mstflint - test1 In-Reply-To: <20050111193455.GC13436@mellanox.co.il> References: <1105470345.14894.31.camel@duffman> <20050111193455.GC13436@mellanox.co.il> Message-ID: <20050112105156.GA22372@mellanox.co.il> OK. Tom, here's a simple test. After this we will know for sure whether mmap works, or not. I hard-coded the physical memory offset to 1ff00100000 (this seems to be what you have), you can find out the real offset for the first resource from lspci -vv or from cat /proc/iomem. You have to be root to run. ================================== #define BAR0 0x1ff00100000ull #define _XOPEN_SOURCE 500 #define _FILE_OFFSET_BITS 64 #include #include #include #include int main() { int fd; void *ptr; unsigned value; unsigned long long offset = BAR0; fd = open("/dev/mem",O_RDWR | O_SYNC); if (fd<0) { perror("open"); return 1; } ptr = mmap(NULL, 0x100000, PROT_READ | PROT_WRITE, MAP_SHARED, fd, offset); if ( (! ptr) || (ptr == MAP_FAILED) ) { perror("map"); return 1; } value= *( (unsigned*)(ptr + 0x000f0014) ); printf("value at 0x000f0014 is %#8.8x\n", value); return 0; err: return 1; } From halr at voltaire.com Wed Jan 12 06:05:28 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 12 Jan 2005 09:05:28 -0500 Subject: [openib-general] OpenSM Log Message Format Message-ID: <1105538728.4649.812.camel@localhost.localdomain> Hi, Should date/time format be used rather than timeval when OSM logs messages ? That would make the messages more like the other daemons. Here's a proposed patch to do this. Signed-off-by: Hal Rosenstock -- Hal Index: osm_log.c =================================================================== --- osm_log.c (revision 1519) +++ osm_log.c (working copy) @@ -96,6 +96,23 @@ #include #endif +#ifndef WIN32 +static char *month_str[] = { + "Jan", + "Feb", + "Mar", + "Apr", + "May", + "Jun", + "Jul", + "Aug", + "Sep", + "Oct", + "Nov", + "Dec" +}; +#endif + void osm_log( IN osm_log_t* const p_log, @@ -111,8 +128,8 @@ uint32_t pid = GetCurrentThreadId(); #else pid_t pid; - struct timeval tv; - struct timezone tz; + time_t tim; + struct tm result; #endif /* WIN32 */ /* If this is a call to syslog - always print it */ @@ -152,9 +169,12 @@ #else pid = pthread_self(); - gettimeofday( &tv, &tz ); - ret = fprintf( p_log->out_port, "[%09ld:%09ld][%04X] -> %s", - tv.tv_sec, (long)tv.tv_usec, + tim = time(NULL); + localtime_r(&tim, &result); + ret = fprintf( p_log->out_port, "%s %02d %02d:%02d:%02d [%04X] -> %s", + (result.tm_mon < 12 ? month_str[result.tm_mon] : "???"), + result.tm_mday, result.tm_hour, + result.tm_min, result.tm_sec, pid, buffer); #endif /* WIN32 */ From halr at voltaire.com Wed Jan 12 07:08:40 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 12 Jan 2005 10:08:40 -0500 Subject: [openib-general] Some Missing Features from mthca/user MADaccess In-Reply-To: <41E409CD.10604@ichips.intel.com> References: <1105392150.4649.615.camel@localhost.localdomain> <1105450228.4649.670.camel@localhost.localdomain> <41E409CD.10604@ichips.intel.com> Message-ID: <1105542520.4649.841.camel@localhost.localdomain> On Tue, 2005-01-11 at 12:15, Sean Hefty wrote: > An issue with attribute filtering is that is results in an O(lg n) > algorithm being used to route MADs to the correct client. Routing > based on class/method can be done in O(1), since the range of > classes/methods is substantially smaller than that of attributes. > > Adding an attribute mask isn't overly difficult, it just wasn't felt > that it was necessary. Right. It was a combination of the implementation inefficiency but more significantly the lack of a compelling need but... Do you see a way to handle the different SA client registrations for events (InformInfo) where an incoming Report could go to multiple clients with the current approach ? Even adding attribute ID is insufficient as there would need to be some sense of what reports were being registered for (perhaps by TrapNumber but one could support even more granularity including ProducerType and other fields in the subscription (InformInfo) request). I know no OpenIB code is currently doing this, but shouldn't this be supported ? -- Hal From eitan at mellanox.co.il Wed Jan 12 07:19:16 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Wed, 12 Jan 2005 17:19:16 +0200 Subject: [openib-general] Some Missing Features from mthca/user MADacc ess Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC06@mtlex01.yok.mtl.com> Hal wrote: [HAL] > Do you see a way to handle the different SA client registrations for [HAL] > events (InformInfo) where an incoming Report could go to multiple [HAL] > clients with the current approach ? Even adding attribute ID is [HAL] > insufficient as there would need to be some sense of what reports were [HAL] > being registered for (perhaps by TrapNumber but one could support even [HAL] > more granularity including ProducerType and other fields in the [HAL] > subscription (InformInfo) request). I think the issue I raised with the InformInfo was a bad example. I reread the chapter. Actually, if we let two clients respond to a single incoming an-affiliated (unsolicited) MAD, we will break the assumption that there is only one response to a request. The SubnAdm.Report(Notice) has a response defined. After reading the spec again, I think the idea was that if a client wants to register to a Report - it should use a special QP for that sake. The SA is providing filtering by whatever InformInfo field is available. The Report will be sent to the QP the SubnAdmin.Set(InformInfo) came from. So let me revert what I have said. I think that having a single manager to each class is quite reasonable. Otherwise it is un-clear to me which client will be generating the response. Sorry for the confussion. EZ -------------- next part -------------- An HTML attachment was scrubbed... URL: From eitan at mellanox.co.il Wed Jan 12 07:21:47 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Wed, 12 Jan 2005 17:21:47 +0200 Subject: [openib-general] OpenSM Log Message Format Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC07@mtlex01.yok.mtl.com> Hi Hal, I have incorporated your patch into the next next release code. If it is urgent you can put it directly into gen2 too. EZ Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -----Original Message----- From: Hal Rosenstock [mailto:halr at voltaire.com] Sent: Wednesday, January 12, 2005 4:05 PM To: openib-general at openib.org Subject: [openib-general] OpenSM Log Message Format Hi, Should date/time format be used rather than timeval when OSM logs messages ? That would make the messages more like the other daemons. Here's a proposed patch to do this. Signed-off-by: Hal Rosenstock -- Hal Index: osm_log.c =================================================================== --- osm_log.c (revision 1519) +++ osm_log.c (working copy) @@ -96,6 +96,23 @@ #include #endif +#ifndef WIN32 +static char *month_str[] = { + "Jan", + "Feb", + "Mar", + "Apr", + "May", + "Jun", + "Jul", + "Aug", + "Sep", + "Oct", + "Nov", + "Dec" +}; +#endif + void osm_log( IN osm_log_t* const p_log, @@ -111,8 +128,8 @@ uint32_t pid = GetCurrentThreadId(); #else pid_t pid; - struct timeval tv; - struct timezone tz; + time_t tim; + struct tm result; #endif /* WIN32 */ /* If this is a call to syslog - always print it */ @@ -152,9 +169,12 @@ #else pid = pthread_self(); - gettimeofday( &tv, &tz ); - ret = fprintf( p_log->out_port, "[%09ld:%09ld][%04X] -> %s", - tv.tv_sec, (long)tv.tv_usec, + tim = time(NULL); + localtime_r(&tim, &result); + ret = fprintf( p_log->out_port, "%s %02d %02d:%02d:%02d [%04X] -> %s", + (result.tm_mon < 12 ? month_str[result.tm_mon] : "???"), + result.tm_mday, result.tm_hour, + result.tm_min, result.tm_sec, pid, buffer); #endif /* WIN32 */ _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From halr at voltaire.com Wed Jan 12 07:29:47 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 12 Jan 2005 10:29:47 -0500 Subject: [openib-general] Some Missing Features from mthca/user MADacc ess In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEC06@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6047EEC06@mtlex01.yok.mtl.com> Message-ID: <1105543786.4649.848.camel@localhost.localdomain> Hi Eitan, On Wed, 2005-01-12 at 10:19, Eitan Zahavi wrote: > I think the issue I raised with the InformInfo was a bad example. > I reread the chapter. Actually, if we let two clients respond to a > single incoming an-affiliated (unsolicited) MAD, we will break the > assumption that there is only one response to a request. The > SubnAdm.Report(Notice) has a response defined. There would also need to be some "coaelscing" to define when the (single) response was sent back. The first issue would be how the multiple clients see the Report. > After reading the spec again, I think the idea was that if a client > wants to register to a Report - it should use a special QP for that > sake. The SA is providing filtering by whatever InformInfo field is > available. The Report will be sent to the QP the > SubnAdmin.Set(InformInfo) came from. By special, I don't think you mean QP0/1 but a unique one per client. > So let me revert what I have said. I think that having a single > manager to each class is quite reasonable. Otherwise it is un-clear to > me which client will be generating the response. That would be another way (which I think would currently work with the existing APIs) of doing this putting the all the burden on the SA. (more Reports needing to be sent) saving this additional complexity at the end node. If this is acceptable to all, then I will consider this closed. -- Hal From halr at voltaire.com Wed Jan 12 09:22:54 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 12 Jan 2005 12:22:54 -0500 Subject: [openib-general] OpenSM Log Message Format In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEC07@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6047EEC07@mtlex01.yok.mtl.com> Message-ID: <1105550574.4649.874.camel@localhost.localdomain> On Wed, 2005-01-12 at 10:21, Eitan Zahavi wrote: > I have incorporated your patch into the next next release code. Sure. You are welcome to backport anything that is done with OpenIB (gen2) back to gen1 if you want. > If it is urgent you can put it directly into gen2 too. We are in the process of applying changes to gen2 (there are other differences) and are not waiting for for changes in gen1 work although we will merge in appropriate gen1 changes when they are available. This is currently via Mellanox Gold releases. Shahar merged up to 1.6.1 a week or so ago. -- Hal From iod00d at hp.com Wed Jan 12 09:28:27 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 12 Jan 2005 09:28:27 -0800 Subject: [openib-general] mstflint - test1 In-Reply-To: <20050112105156.GA22372@mellanox.co.il> References: <1105470345.14894.31.camel@duffman> <20050111193455.GC13436@mellanox.co.il> <20050112105156.GA22372@mellanox.co.il> Message-ID: <20050112172827.GA14784@esmail.cup.hp.com> On Wed, Jan 12, 2005 at 12:51:56PM +0200, Michael S. Tsirkin wrote: > OK. > Tom, here's a simple test. > After this we will know for sure whether mmap works, or not. > I hard-coded the physical memory offset to > 1ff00100000 (this seems to be what you have), you can find out the > real offset for the first resource from lspci -vv or from cat /proc/iomem. Michael, You don't need to commit every test to the SVN repository. Just include the patch for Tom (or whoever) to try out. grant From roland at topspin.com Wed Jan 12 09:32:20 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 09:32:20 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050112104841.GH2351@cern.ch> (Andras Horvath's message of "Wed, 12 Jan 2005 11:48:41 +0100") References: <20050105000322.GB12343@esmail.cup.hp.com> <528y784tu6.fsf@topspin.com> <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> Message-ID: <52hdlmtuxn.fsf@topspin.com> Andras> so I tried msi=1 instead of msi_x=1 and this one sort of Andras> works (with significant performance gain), although not Andras> stable. I'll upgrade firmware first. That's what I would expect. As far as I know, all FW before 3.3.2 has bugs with MSI and MSI-X. Thanks, Roland From mst at mellanox.co.il Wed Jan 12 10:15:02 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 12 Jan 2005 20:15:02 +0200 Subject: [openib-general] mstflint - test1 In-Reply-To: <20050112172827.GA14784@esmail.cup.hp.com> References: <1105470345.14894.31.camel@duffman> <20050111193455.GC13436@mellanox.co.il> <20050112105156.GA22372@mellanox.co.il> <20050112172827.GA14784@esmail.cup.hp.com> Message-ID: <20050112181502.GA23104@mellanox.co.il> > Michael, > You don't need to commit every test to the SVN repository. > Just include the patch for Tom (or whoever) to try out. > > grant Hi, Grant! I didn't commit it though :) >svn status test1.c ? test1.c Thats why I sent the whole file inside the message text. ms From halr at voltaire.com Wed Jan 12 10:45:41 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 12 Jan 2005 13:45:41 -0500 Subject: [openib-general] is_sm bit redux Message-ID: <1105555541.4649.920.camel@localhost.localdomain> Hi, I would like to make a call for consensus on the is_sm bit. It seems like there are two alternatives: (1) separate file, or (2) special write. Are there any strong technical reasons for choosing one approach over the other ? Is a separate file any better or worse than a special write ? If not, can one be chosen and just move on ? Given the Linux way, we can always undo this if we learn more down the road. Thanks. -- Hal From mst at mellanox.co.il Wed Jan 12 11:05:20 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 12 Jan 2005 21:05:20 +0200 Subject: [openib-general] is_sm bit redux In-Reply-To: <1105555541.4649.920.camel@localhost.localdomain> References: <1105555541.4649.920.camel@localhost.localdomain> Message-ID: <20050112190520.GC23104@mellanox.co.il> Hello! Quoting r. Hal Rosenstock (halr at voltaire.com) "[openib-general] is_sm bit redux": > Hi, > > I would like to make a call for consensus on the is_sm bit. It seems > like there are two alternatives: (1) separate file, or (2) special > write. > > Are there any strong technical reasons for choosing one approach over > the other ? Is a separate file any better or worse than a special write > ? > > If not, can one be chosen and just move on ? Given the Linux way, we can > always undo this if we learn more down the road. > > Thanks. > > -- Hal I dont believe there are strong reasons, either way. I'm for separate file, if we change it, old software will get a clearer error (unable to open is_sm file ...) From roland at topspin.com Wed Jan 12 12:50:51 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 12:50:51 -0800 Subject: [openib-general] debugfs directory structure Message-ID: <52d5watlqs.fsf@topspin.com> Hi Greg, Now that debugfs is merged into Linus's tree, I'm looking at using it to replace the IPoIB debugging pseudo-filesystem (ipoib_debugfs). Is there any guidance on what the structure of debugfs should look like? Right now I'm planning on putting all the debug info files under an ipoib/ top level directory. Does that sound reasonable? Thanks, Roland From greg at kroah.com Wed Jan 12 13:01:36 2005 From: greg at kroah.com (Greg KH) Date: Wed, 12 Jan 2005 13:01:36 -0800 Subject: [openib-general] Re: debugfs directory structure In-Reply-To: <52d5watlqs.fsf@topspin.com> References: <52d5watlqs.fsf@topspin.com> Message-ID: <20050112210136.GC12319@kroah.com> On Wed, Jan 12, 2005 at 12:50:51PM -0800, Roland Dreier wrote: > Hi Greg, > > Now that debugfs is merged into Linus's tree, I'm looking at using it > to replace the IPoIB debugging pseudo-filesystem (ipoib_debugfs). Great! > Is > there any guidance on what the structure of debugfs should look like? > Right now I'm planning on putting all the debug info files under an > ipoib/ top level directory. Does that sound reasonable? Anarchy rules in debugfs. Do what you want. If you stomp over someone else's stuff, I expect complaints and maybe someone will have to arbitrate, but odds are that will ever happen is pretty slim. So yes, ipoib/ in the top level sounds just fine. thanks, greg k-h From davej at redhat.com Wed Jan 12 13:09:45 2005 From: davej at redhat.com (Dave Jones) Date: Wed, 12 Jan 2005 16:09:45 -0500 Subject: [openib-general] Re: debugfs directory structure In-Reply-To: <52d5watlqs.fsf@topspin.com> References: <52d5watlqs.fsf@topspin.com> Message-ID: <20050112210945.GN24518@redhat.com> On Wed, Jan 12, 2005 at 12:50:51PM -0800, Roland Dreier wrote: > Hi Greg, > > Now that debugfs is merged into Linus's tree, I'm looking at using it > to replace the IPoIB debugging pseudo-filesystem (ipoib_debugfs). Is > there any guidance on what the structure of debugfs should look like? > Right now I'm planning on putting all the debug info files under an > ipoib/ top level directory. Does that sound reasonable? How about mirroring the toplevel kernel source structure ? Ie, you'd make drivers/infiniband/ulp/ipoib ? It could get ugly quickly without some structure at least to the toplevel dir. Dave From greg at kroah.com Wed Jan 12 13:41:08 2005 From: greg at kroah.com (Greg KH) Date: Wed, 12 Jan 2005 13:41:08 -0800 Subject: [openib-general] Re: debugfs directory structure In-Reply-To: <20050112210945.GN24518@redhat.com> References: <52d5watlqs.fsf@topspin.com> <20050112210945.GN24518@redhat.com> Message-ID: <20050112214108.GA13801@kroah.com> On Wed, Jan 12, 2005 at 04:09:45PM -0500, Dave Jones wrote: > On Wed, Jan 12, 2005 at 12:50:51PM -0800, Roland Dreier wrote: > > Hi Greg, > > > > Now that debugfs is merged into Linus's tree, I'm looking at using it > > to replace the IPoIB debugging pseudo-filesystem (ipoib_debugfs). Is > > there any guidance on what the structure of debugfs should look like? > > Right now I'm planning on putting all the debug info files under an > > ipoib/ top level directory. Does that sound reasonable? > > How about mirroring the toplevel kernel source structure ? > > Ie, you'd make drivers/infiniband/ulp/ipoib ? But who would be in charge of createing the "drivers/" subdirectory? debugfs can't handle "/" in a directory name, like procfs does. > It could get ugly quickly without some structure at least to > the toplevel dir. I say ipoib/ is fine, remember, this is for debugging stuff, it will quickly get ugly anyway :) thanks, greg k-h From roland at topspin.com Wed Jan 12 13:46:22 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:46:22 -0800 Subject: [openib-general] [PATCH][1/18] InfiniBand/IPoIB: use correct static rate in IpoIB In-Reply-To: <20051121346.ovB7UajyiLcLxIWH@topspin.com> Message-ID: <20051121346.WdeZxxpd8OfUS1Xw@topspin.com> Calculate static rate for IPoIB address handles based on local width/speed and path rate. Signed-off-by: Roland Dreier --- linux/drivers/infiniband/include/ib_sa.h (revision 1409) +++ linux/drivers/infiniband/include/ib_sa.h (revision 1410) @@ -59,6 +59,34 @@ IB_SA_BEST = 3 }; +enum ib_sa_rate { + IB_SA_RATE_2_5_GBPS = 2, + IB_SA_RATE_5_GBPS = 5, + IB_SA_RATE_10_GBPS = 3, + IB_SA_RATE_20_GBPS = 6, + IB_SA_RATE_30_GBPS = 4, + IB_SA_RATE_40_GBPS = 7, + IB_SA_RATE_60_GBPS = 8, + IB_SA_RATE_80_GBPS = 9, + IB_SA_RATE_120_GBPS = 10 +}; + +static inline int ib_sa_rate_enum_to_int(enum ib_sa_rate rate) +{ + switch (rate) { + case IB_SA_RATE_2_5_GBPS: return 1; + case IB_SA_RATE_5_GBPS: return 2; + case IB_SA_RATE_10_GBPS: return 4; + case IB_SA_RATE_20_GBPS: return 8; + case IB_SA_RATE_30_GBPS: return 12; + case IB_SA_RATE_40_GBPS: return 16; + case IB_SA_RATE_60_GBPS: return 24; + case IB_SA_RATE_80_GBPS: return 32; + case IB_SA_RATE_120_GBPS: return 48; + default: return -1; + } +} + typedef u64 __bitwise ib_sa_comp_mask; #define IB_SA_COMP_MASK(n) ((__force ib_sa_comp_mask) cpu_to_be64(1ull << n)) --- linux/drivers/infiniband/ulp/ipoib/ipoib_main.c (revision 1410) +++ linux/drivers/infiniband/ulp/ipoib/ipoib_main.c (revision 1411) @@ -283,21 +283,21 @@ skb_queue_head_init(&skqueue); if (!status) { - /* - * For now we set static_rate to 0. This is not - * really correct: we should look at the rate - * component of the path member record, compare it - * with the rate of our local port (calculated from - * the active link speed and link width) and set an - * inter-packet delay appropriately. - */ struct ib_ah_attr av = { .dlid = be16_to_cpu(pathrec->dlid), .sl = pathrec->sl, - .static_rate = 0, .port_num = priv->port }; + if (ib_sa_rate_enum_to_int(pathrec->rate) > 0) + av.static_rate = (2 * priv->local_rate - + ib_sa_rate_enum_to_int(pathrec->rate) - 1) / + (priv->local_rate ? priv->local_rate : 1); + + ipoib_dbg(priv, "static_rate %d for local port %dX, path %dX\n", + av.static_rate, priv->local_rate, + ib_sa_rate_enum_to_int(pathrec->rate)); + ah = ipoib_create_ah(dev, priv->pd, &av); } --- linux/drivers/infiniband/ulp/ipoib/ipoib_multicast.c (revision 1410) +++ linux/drivers/infiniband/ulp/ipoib/ipoib_multicast.c (revision 1411) @@ -238,19 +238,10 @@ } { - /* - * For now we set static_rate to 0. This is not - * really correct: we should look at the rate - * component of the MC member record, compare it with - * the rate of our local port (calculated from the - * active link speed and link width) and set an - * inter-packet delay appropriately. - */ struct ib_ah_attr av = { .dlid = be16_to_cpu(mcast->mcmember.mlid), .port_num = priv->port, .sl = mcast->mcmember.sl, - .static_rate = 0, .ah_flags = IB_AH_GRH, .grh = { .flow_label = be32_to_cpu(mcast->mcmember.flow_label), @@ -262,6 +253,15 @@ av.grh.dgid = mcast->mcmember.mgid; + if (ib_sa_rate_enum_to_int(mcast->mcmember.rate) > 0) + av.static_rate = (2 * priv->local_rate - + ib_sa_rate_enum_to_int(mcast->mcmember.rate) - 1) / + (priv->local_rate ? priv->local_rate : 1); + + ipoib_dbg_mcast(priv, "static_rate %d for local port %dX, mcmember %dX\n", + av.static_rate, priv->local_rate, + ib_sa_rate_enum_to_int(mcast->mcmember.rate)); + mcast->ah = ipoib_create_ah(dev, priv->pd, &av); if (!mcast->ah) { ipoib_warn(priv, "ib_address_create failed\n"); @@ -506,6 +506,17 @@ else memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid)); + { + struct ib_port_attr attr; + + if (!ib_query_port(priv->ca, priv->port, &attr)) { + priv->local_lid = attr.lid; + priv->local_rate = attr.active_speed * + ib_width_enum_to_int(attr.active_width); + } else + ipoib_warn(priv, "ib_query_port failed\n"); + } + if (!priv->broadcast) { priv->broadcast = ipoib_mcast_alloc(dev, 1); if (!priv->broadcast) { @@ -554,15 +565,6 @@ return; } - { - struct ib_port_attr attr; - - if (!ib_query_port(priv->ca, priv->port, &attr)) - priv->local_lid = attr.lid; - else - ipoib_warn(priv, "ib_query_port failed\n"); - } - priv->mcast_mtu = ib_mtu_enum_to_int(priv->broadcast->mcmember.mtu) - IPOIB_ENCAP_LEN; dev->mtu = min(priv->mcast_mtu, priv->admin_mtu); --- linux/drivers/infiniband/ulp/ipoib/ipoib.h (revision 1410) +++ linux/drivers/infiniband/ulp/ipoib/ipoib.h (revision 1411) @@ -143,6 +143,7 @@ union ib_gid local_gid; u16 local_lid; + u8 local_rate; unsigned int admin_mtu; unsigned int mcast_mtu; From roland at topspin.com Wed Jan 12 13:47:38 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:47:38 -0800 Subject: [openib-general] [PATCH][0/18] InfiniBand: updates for 2.6.11-rc1 Message-ID: <20051121347.unEev2HOanwhx9cL@topspin.com> Here are updates since the initial merge to drivers/infiniband taken from the OpenIB repository. This is a mix of cleanups, bug fixes and small features. There shouldn't be anything controversial or risky. Thanks, Roland From roland at topspin.com Wed Jan 12 13:46:21 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:46:21 -0800 Subject: [openib-general] [PATCH][0/18] InfiniBand: updates for 2.6.11-rc1 Message-ID: <20051121346.ovB7UajyiLcLxIWH@topspin.com> Here are updates since the initial merge to drivers/infiniband taken from the OpenIB repository. This is a mix of cleanups, bug fixes and small features. There shouldn't be anything controversial or risky. Thanks, Roland From roland at topspin.com Wed Jan 12 13:47:44 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:47:44 -0800 Subject: [openib-general] [PATCH][1/18] InfiniBand/IPoIB: use correct static rate in IpoIB In-Reply-To: <20051121347.unEev2HOanwhx9cL@topspin.com> Message-ID: <20051121347.3xXrBXJCB2Hv1qHb@topspin.com> Calculate static rate for IPoIB address handles based on local width/speed and path rate. Signed-off-by: Roland Dreier --- linux/drivers/infiniband/include/ib_sa.h (revision 1409) +++ linux/drivers/infiniband/include/ib_sa.h (revision 1410) @@ -59,6 +59,34 @@ IB_SA_BEST = 3 }; +enum ib_sa_rate { + IB_SA_RATE_2_5_GBPS = 2, + IB_SA_RATE_5_GBPS = 5, + IB_SA_RATE_10_GBPS = 3, + IB_SA_RATE_20_GBPS = 6, + IB_SA_RATE_30_GBPS = 4, + IB_SA_RATE_40_GBPS = 7, + IB_SA_RATE_60_GBPS = 8, + IB_SA_RATE_80_GBPS = 9, + IB_SA_RATE_120_GBPS = 10 +}; + +static inline int ib_sa_rate_enum_to_int(enum ib_sa_rate rate) +{ + switch (rate) { + case IB_SA_RATE_2_5_GBPS: return 1; + case IB_SA_RATE_5_GBPS: return 2; + case IB_SA_RATE_10_GBPS: return 4; + case IB_SA_RATE_20_GBPS: return 8; + case IB_SA_RATE_30_GBPS: return 12; + case IB_SA_RATE_40_GBPS: return 16; + case IB_SA_RATE_60_GBPS: return 24; + case IB_SA_RATE_80_GBPS: return 32; + case IB_SA_RATE_120_GBPS: return 48; + default: return -1; + } +} + typedef u64 __bitwise ib_sa_comp_mask; #define IB_SA_COMP_MASK(n) ((__force ib_sa_comp_mask) cpu_to_be64(1ull << n)) --- linux/drivers/infiniband/ulp/ipoib/ipoib_main.c (revision 1410) +++ linux/drivers/infiniband/ulp/ipoib/ipoib_main.c (revision 1411) @@ -283,21 +283,21 @@ skb_queue_head_init(&skqueue); if (!status) { - /* - * For now we set static_rate to 0. This is not - * really correct: we should look at the rate - * component of the path member record, compare it - * with the rate of our local port (calculated from - * the active link speed and link width) and set an - * inter-packet delay appropriately. - */ struct ib_ah_attr av = { .dlid = be16_to_cpu(pathrec->dlid), .sl = pathrec->sl, - .static_rate = 0, .port_num = priv->port }; + if (ib_sa_rate_enum_to_int(pathrec->rate) > 0) + av.static_rate = (2 * priv->local_rate - + ib_sa_rate_enum_to_int(pathrec->rate) - 1) / + (priv->local_rate ? priv->local_rate : 1); + + ipoib_dbg(priv, "static_rate %d for local port %dX, path %dX\n", + av.static_rate, priv->local_rate, + ib_sa_rate_enum_to_int(pathrec->rate)); + ah = ipoib_create_ah(dev, priv->pd, &av); } --- linux/drivers/infiniband/ulp/ipoib/ipoib_multicast.c (revision 1410) +++ linux/drivers/infiniband/ulp/ipoib/ipoib_multicast.c (revision 1411) @@ -238,19 +238,10 @@ } { - /* - * For now we set static_rate to 0. This is not - * really correct: we should look at the rate - * component of the MC member record, compare it with - * the rate of our local port (calculated from the - * active link speed and link width) and set an - * inter-packet delay appropriately. - */ struct ib_ah_attr av = { .dlid = be16_to_cpu(mcast->mcmember.mlid), .port_num = priv->port, .sl = mcast->mcmember.sl, - .static_rate = 0, .ah_flags = IB_AH_GRH, .grh = { .flow_label = be32_to_cpu(mcast->mcmember.flow_label), @@ -262,6 +253,15 @@ av.grh.dgid = mcast->mcmember.mgid; + if (ib_sa_rate_enum_to_int(mcast->mcmember.rate) > 0) + av.static_rate = (2 * priv->local_rate - + ib_sa_rate_enum_to_int(mcast->mcmember.rate) - 1) / + (priv->local_rate ? priv->local_rate : 1); + + ipoib_dbg_mcast(priv, "static_rate %d for local port %dX, mcmember %dX\n", + av.static_rate, priv->local_rate, + ib_sa_rate_enum_to_int(mcast->mcmember.rate)); + mcast->ah = ipoib_create_ah(dev, priv->pd, &av); if (!mcast->ah) { ipoib_warn(priv, "ib_address_create failed\n"); @@ -506,6 +506,17 @@ else memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid)); + { + struct ib_port_attr attr; + + if (!ib_query_port(priv->ca, priv->port, &attr)) { + priv->local_lid = attr.lid; + priv->local_rate = attr.active_speed * + ib_width_enum_to_int(attr.active_width); + } else + ipoib_warn(priv, "ib_query_port failed\n"); + } + if (!priv->broadcast) { priv->broadcast = ipoib_mcast_alloc(dev, 1); if (!priv->broadcast) { @@ -554,15 +565,6 @@ return; } - { - struct ib_port_attr attr; - - if (!ib_query_port(priv->ca, priv->port, &attr)) - priv->local_lid = attr.lid; - else - ipoib_warn(priv, "ib_query_port failed\n"); - } - priv->mcast_mtu = ib_mtu_enum_to_int(priv->broadcast->mcmember.mtu) - IPOIB_ENCAP_LEN; dev->mtu = min(priv->mcast_mtu, priv->admin_mtu); --- linux/drivers/infiniband/ulp/ipoib/ipoib.h (revision 1410) +++ linux/drivers/infiniband/ulp/ipoib/ipoib.h (revision 1411) @@ -143,6 +143,7 @@ union ib_gid local_gid; u16 local_lid; + u8 local_rate; unsigned int admin_mtu; unsigned int mcast_mtu; From roland at topspin.com Wed Jan 12 13:47:45 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:47:45 -0800 Subject: [openib-general] [PATCH][2/18] InfiniBand/mthca: trivial formatting fix In-Reply-To: <20051121347.3xXrBXJCB2Hv1qHb@topspin.com> Message-ID: <20051121347.SllTsxtwWAwPk3Gh@topspin.com> Trivial formatting fix for empty for loops. Signed-off-by: Roland Dreier --- linux/drivers/infiniband/hw/mthca/mthca_mr.c (revision 1420) +++ linux/drivers/infiniband/hw/mthca/mthca_mr.c (revision 1421) @@ -197,7 +197,7 @@ for (i = dev->limits.mtt_seg_size / 8, mr->order = 0; i < list_len; i <<= 1, ++mr->order) - /* nothing */ ; + ; /* nothing */ mr->first_seg = mthca_alloc_mtt(dev, mr->order); if (mr->first_seg == -1) @@ -337,7 +337,7 @@ for (i = 1, dev->mr_table.max_mtt_order = 0; i < dev->limits.num_mtt_segs; i <<= 1, ++dev->mr_table.max_mtt_order) - /* nothing */ ; + ; /* nothing */ dev->mr_table.mtt_buddy = kmalloc((dev->mr_table.max_mtt_order + 1) * sizeof (long *), From roland at topspin.com Wed Jan 12 13:47:46 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:47:46 -0800 Subject: [openib-general] [PATCH][3/18] InfiniBand/mthca: support RDMA/atomic attributes in QP modify In-Reply-To: <20051121347.SllTsxtwWAwPk3Gh@topspin.com> Message-ID: <20051121347.gzXWVDbfUCDwWmdf@topspin.com> Implement setting of RDMA/atomic enable bits, initiator resources and responder resources for modify QP in low-level Mellanox HCA driver (should complete RDMA/atomic implementation). Signed-off-by: Roland Dreier --- linux/drivers/infiniband/hw/mthca/mthca_dev.h (revision 1421) +++ linux/drivers/infiniband/hw/mthca/mthca_dev.h (revision 1422) @@ -75,6 +75,7 @@ MTHCA_EQ_CONTEXT_SIZE = 0x40, MTHCA_CQ_CONTEXT_SIZE = 0x40, MTHCA_QP_CONTEXT_SIZE = 0x200, + MTHCA_RDB_ENTRY_SIZE = 0x20, MTHCA_AV_SIZE = 0x20, MTHCA_MGM_ENTRY_SIZE = 0x40 }; @@ -121,7 +122,6 @@ int mtt_seg_size; int reserved_mtts; int reserved_mrws; - int num_rdbs; int reserved_uars; int num_mgms; int num_amgms; @@ -174,6 +174,8 @@ struct mthca_qp_table { struct mthca_alloc alloc; + u32 rdb_base; + int rdb_shift; int sqp_start; spinlock_t lock; struct mthca_array qp; --- linux/drivers/infiniband/hw/mthca/mthca_provider.h (revision 1421) +++ linux/drivers/infiniband/hw/mthca/mthca_provider.h (revision 1422) @@ -162,9 +162,12 @@ spinlock_t lock; atomic_t refcount; u32 qpn; - int transport; - enum ib_qp_state state; int is_direct; + u8 transport; + u8 state; + u8 atomic_rd_en; + u8 resp_depth; + struct mthca_mr mr; struct mthca_wq rq; --- linux/drivers/infiniband/hw/mthca/mthca_profile.c (revision 1421) +++ linux/drivers/infiniband/hw/mthca/mthca_profile.c (revision 1422) @@ -50,7 +50,6 @@ }; enum { - MTHCA_RDB_ENTRY_SIZE = 32, MTHCA_MTT_SEG_SIZE = 64 }; @@ -181,8 +180,13 @@ init_hca->log_num_eqs = profile[i].log_num; break; case MTHCA_RES_RDB: - dev->limits.num_rdbs = profile[i].num; - init_hca->rdb_base = profile[i].start; + for (dev->qp_table.rdb_shift = 0; + profile[MTHCA_RES_QP].num << dev->qp_table.rdb_shift < + profile[i].num; + ++dev->qp_table.rdb_shift) + ; /* nothing */ + dev->qp_table.rdb_base = (u32) profile[i].start; + init_hca->rdb_base = profile[i].start; break; case MTHCA_RES_MCG: dev->limits.num_mgms = profile[i].num >> 1; --- linux/drivers/infiniband/hw/mthca/mthca_qp.c (revision 1421) +++ linux/drivers/infiniband/hw/mthca/mthca_qp.c (revision 1422) @@ -146,7 +146,7 @@ MTHCA_QP_OPTPAR_ALT_ADDR_PATH = 1 << 0, MTHCA_QP_OPTPAR_RRE = 1 << 1, MTHCA_QP_OPTPAR_RAE = 1 << 2, - MTHCA_QP_OPTPAR_REW = 1 << 3, + MTHCA_QP_OPTPAR_RWE = 1 << 3, MTHCA_QP_OPTPAR_PKEY_INDEX = 1 << 4, MTHCA_QP_OPTPAR_Q_KEY = 1 << 5, MTHCA_QP_OPTPAR_RNR_TIMEOUT = 1 << 6, @@ -697,14 +697,87 @@ qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RETRY_COUNT); } - /* XXX initiator resources */ + if (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) { + qp_context->params1 |= cpu_to_be32(min(attr->max_dest_rd_atomic ? + ffs(attr->max_dest_rd_atomic) - 1 : 0, + 7) << 21); + qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_SRA_MAX); + } if (attr_mask & IB_QP_SQ_PSN) qp_context->next_send_psn = cpu_to_be32(attr->sq_psn); qp_context->cqn_snd = cpu_to_be32(to_mcq(ibqp->send_cq)->cqn); - /* XXX RDMA/atomic enable, responder resources */ + if (attr_mask & IB_QP_ACCESS_FLAGS) { + /* + * Only enable RDMA/atomics if we have responder + * resources set to a non-zero value. + */ + if (qp->resp_depth) { + qp_context->params2 |= + cpu_to_be32(attr->qp_access_flags & IB_ACCESS_REMOTE_WRITE ? + MTHCA_QP_BIT_RWE : 0); + qp_context->params2 |= + cpu_to_be32(attr->qp_access_flags & IB_ACCESS_REMOTE_READ ? + MTHCA_QP_BIT_RRE : 0); + qp_context->params2 |= + cpu_to_be32(attr->qp_access_flags & IB_ACCESS_REMOTE_ATOMIC ? + MTHCA_QP_BIT_RAE : 0); + } + qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE | + MTHCA_QP_OPTPAR_RRE | + MTHCA_QP_OPTPAR_RAE); + + qp->atomic_rd_en = attr->qp_access_flags; + } + + if (attr_mask & IB_QP_MAX_QP_RD_ATOMIC) { + u8 rra_max; + + if (qp->resp_depth && !attr->max_rd_atomic) { + /* + * Lowering our responder resources to zero. + * Turn off RDMA/atomics as responder. + * (RWE/RRE/RAE in params2 already zero) + */ + qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE | + MTHCA_QP_OPTPAR_RRE | + MTHCA_QP_OPTPAR_RAE); + } + + if (!qp->resp_depth && attr->max_rd_atomic) { + /* + * Increasing our responder resources from + * zero. Turn on RDMA/atomics as appropriate. + */ + qp_context->params2 |= + cpu_to_be32(qp->atomic_rd_en & IB_ACCESS_REMOTE_WRITE ? + MTHCA_QP_BIT_RWE : 0); + qp_context->params2 |= + cpu_to_be32(qp->atomic_rd_en & IB_ACCESS_REMOTE_READ ? + MTHCA_QP_BIT_RRE : 0); + qp_context->params2 |= + cpu_to_be32(qp->atomic_rd_en & IB_ACCESS_REMOTE_ATOMIC ? + MTHCA_QP_BIT_RAE : 0); + + qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RWE | + MTHCA_QP_OPTPAR_RRE | + MTHCA_QP_OPTPAR_RAE); + } + + for (rra_max = 0; + 1 << rra_max < attr->max_rd_atomic && + rra_max < dev->qp_table.rdb_shift; + ++rra_max) + ; /* nothing */ + + qp_context->params2 |= cpu_to_be32(rra_max << 21); + qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_RRA_MAX); + + qp->resp_depth = attr->max_rd_atomic; + } + if (qp->rq.policy == IB_SIGNAL_ALL_WR) qp_context->params2 |= cpu_to_be32(MTHCA_QP_BIT_RSC); if (attr_mask & IB_QP_MIN_RNR_TIMER) { @@ -714,7 +787,9 @@ if (attr_mask & IB_QP_RQ_PSN) qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn); - /* XXX ra_buff_indx */ + qp_context->ra_buff_indx = dev->qp_table.rdb_base + + ((qp->qpn & (dev->limits.num_qps - 1)) * MTHCA_RDB_ENTRY_SIZE << + dev->qp_table.rdb_shift); qp_context->cqn_rcv = cpu_to_be32(to_mcq(ibqp->recv_cq)->cqn); @@ -910,6 +985,8 @@ spin_lock_init(&qp->lock); atomic_set(&qp->refcount, 1); qp->state = IB_QPS_RESET; + qp->atomic_rd_en = 0; + qp->resp_depth = 0; qp->sq.policy = send_policy; qp->rq.policy = recv_policy; qp->rq.cur = 0; From roland at topspin.com Wed Jan 12 13:47:47 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:47:47 -0800 Subject: [openib-general] [PATCH][4/18] InfiniBand/mthca: clean up allocation mapping of HCA context memory In-Reply-To: <20051121347.gzXWVDbfUCDwWmdf@topspin.com> Message-ID: <20051121347.kR765yQEXhqhoLHL@topspin.com> Clean up the way we allocate and map memory for use as ICM ("InfiniHost Context Memory") when running in Arbel MemFree mode. This slightly improves the code for mapping the firmware area and will make future progress towards full MemFree support much easier. Signed-off-by: Roland Dreier --- linux/drivers/infiniband/hw/mthca/mthca_dev.h (revision 1425) +++ linux/drivers/infiniband/hw/mthca/mthca_dev.h (revision 1426) @@ -40,7 +40,6 @@ #include #include #include -#include #include "mthca_provider.h" #include "mthca_doorbell.h" @@ -214,7 +213,7 @@ u64 clr_int_base; u64 eq_arm_base; u64 eq_set_ci_base; - struct scatterlist *mem; + struct mthca_icm *icm; u16 fw_pages; } arbel; } fw; --- linux/drivers/infiniband/hw/mthca/mthca_main.c (revision 1425) +++ linux/drivers/infiniband/hw/mthca/mthca_main.c (revision 1426) @@ -48,6 +48,7 @@ #include "mthca_config_reg.h" #include "mthca_cmd.h" #include "mthca_profile.h" +#include "mthca_memfree.h" MODULE_AUTHOR("Roland Dreier"); MODULE_DESCRIPTION("Mellanox InfiniBand HCA low-level driver"); @@ -259,75 +260,26 @@ { u8 status; int err; - int num_ent, num_sg, fw_pages, cur_order; - int i; /* FIXME: use HCA-attached memory for FW if present */ - mdev->fw.arbel.mem = kmalloc(sizeof *mdev->fw.arbel.mem * - mdev->fw.arbel.fw_pages, - GFP_KERNEL); - if (!mdev->fw.arbel.mem) { + mdev->fw.arbel.icm = + mthca_alloc_icm(mdev, mdev->fw.arbel.fw_pages, + GFP_HIGHUSER | __GFP_NOWARN); + if (!mdev->fw.arbel.icm) { mthca_err(mdev, "Couldn't allocate FW area, aborting.\n"); return -ENOMEM; } - memset(mdev->fw.arbel.mem, 0, - sizeof *mdev->fw.arbel.mem * mdev->fw.arbel.fw_pages); - - fw_pages = mdev->fw.arbel.fw_pages; - num_ent = 0; - - /* - * We allocate in as big chunks as we can, up to a maximum of - * 256 KB per chunk. - */ - cur_order = get_order(1 << 18); - - while (fw_pages > 0) { - while (1 << cur_order > fw_pages) - --cur_order; - - /* - * We allocate with GFP_HIGHUSER because only the - * firmware is going to touch these pages, so there's - * no need for a kernel virtual address. We use - * __GFP_NOWARN because we'll deal with any allocation - * failures ourselves. - */ - mdev->fw.arbel.mem[num_ent].page = alloc_pages(GFP_HIGHUSER | __GFP_NOWARN, - cur_order); - mdev->fw.arbel.mem[num_ent].length = PAGE_SIZE << cur_order; - if (!mdev->fw.arbel.mem[num_ent].page) { - --cur_order; - if (cur_order < 0) { - mthca_err(mdev, "Couldn't allocate FW area, aborting.\n"); - err = -ENOMEM; - goto err_free; - } - } else { - ++num_ent; - fw_pages -= 1 << cur_order; - } - } - - num_sg = pci_map_sg(mdev->pdev, mdev->fw.arbel.mem, num_ent, - PCI_DMA_BIDIRECTIONAL); - if (num_sg <= 0) { - mthca_err(mdev, "Couldn't allocate FW area, aborting.\n"); - err = -ENOMEM; - goto err_free; - } - - err = mthca_MAP_FA(mdev, num_sg, mdev->fw.arbel.mem, &status); + err = mthca_MAP_FA(mdev, mdev->fw.arbel.icm, &status); if (err) { mthca_err(mdev, "MAP_FA command failed, aborting.\n"); - goto err_unmap; + goto err_free; } if (status) { mthca_err(mdev, "MAP_FA returned status 0x%02x, aborting.\n", status); err = -EINVAL; - goto err_unmap; + goto err_free; } err = mthca_RUN_FW(mdev, &status); if (err) { @@ -345,15 +297,8 @@ err_unmap_fa: mthca_UNMAP_FA(mdev, &status); -err_unmap: - pci_unmap_sg(mdev->pdev, mdev->fw.arbel.mem, - mdev->fw.arbel.fw_pages, PCI_DMA_BIDIRECTIONAL); err_free: - for (i = 0; i < mdev->fw.arbel.fw_pages; ++i) - if (mdev->fw.arbel.mem[i].page) - __free_pages(mdev->fw.arbel.mem[i].page, - get_order(mdev->fw.arbel.mem[i].length)); - kfree(mdev->fw.arbel.mem); + mthca_free_icm(mdev, mdev->fw.arbel.icm); return err; } @@ -397,13 +342,17 @@ err = mthca_dev_lim(mdev, &dev_lim); if (err) { mthca_err(mdev, "QUERY_DEV_LIM command failed, aborting.\n"); - goto err_out_disable; + goto err_out_stop_fw; } mthca_warn(mdev, "Sorry, native MT25208 mode support is not done, " "aborting.\n"); err = -ENODEV; +err_out_stop_fw: + mthca_UNMAP_FA(mdev, &status); + mthca_free_icm(mdev, mdev->fw.arbel.icm); + err_out_disable: if (!(mdev->mthca_flags & MTHCA_FLAG_NO_LAM)) mthca_DISABLE_LAM(mdev, &status); @@ -610,22 +559,13 @@ static void mthca_close_hca(struct mthca_dev *mdev) { u8 status; - int i; mthca_CLOSE_HCA(mdev, 0, &status); if (mdev->hca_type == ARBEL_NATIVE) { mthca_UNMAP_FA(mdev, &status); + mthca_free_icm(mdev, mdev->fw.arbel.icm); - pci_unmap_sg(mdev->pdev, mdev->fw.arbel.mem, - mdev->fw.arbel.fw_pages, PCI_DMA_BIDIRECTIONAL); - - for (i = 0; i < mdev->fw.arbel.fw_pages; ++i) - if (mdev->fw.arbel.mem[i].page) - __free_pages(mdev->fw.arbel.mem[i].page, - get_order(mdev->fw.arbel.mem[i].length)); - kfree(mdev->fw.arbel.mem); - if (!(mdev->mthca_flags & MTHCA_FLAG_NO_LAM)) mthca_DISABLE_LAM(mdev, &status); } else --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ linux/drivers/infiniband/hw/mthca/mthca_memfree.h (revision 1426) @@ -0,0 +1,107 @@ +/* + * Copyright (c) 2004 Topspin Communications. All rights reserved. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * OpenIB.org BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * + * $Id$ + */ + +#ifndef MTHCA_MEMFREE_H +#define MTHCA_MEMFREE_H + +#include +#include + +#define MTHCA_ICM_CHUNK_LEN \ + ((512 - sizeof (struct list_head) - 2 * sizeof (int)) / \ + (sizeof (struct scatterlist))) + +struct mthca_icm_chunk { + struct list_head list; + int npages; + int nsg; + struct scatterlist mem[MTHCA_ICM_CHUNK_LEN]; +}; + +struct mthca_icm { + struct list_head chunk_list; +}; + +struct mthca_icm_iter { + struct mthca_icm *icm; + struct mthca_icm_chunk *chunk; + int page_idx; +}; + +struct mthca_dev; + +struct mthca_icm *mthca_alloc_icm(struct mthca_dev *dev, int npages, + unsigned int gfp_mask); +void mthca_free_icm(struct mthca_dev *dev, struct mthca_icm *icm); + +static inline void mthca_icm_first(struct mthca_icm *icm, + struct mthca_icm_iter *iter) +{ + iter->icm = icm; + iter->chunk = list_empty(&icm->chunk_list) ? + NULL : list_entry(icm->chunk_list.next, + struct mthca_icm_chunk, list); + iter->page_idx = 0; +} + +static inline int mthca_icm_last(struct mthca_icm_iter *iter) +{ + return !iter->chunk; +} + +static inline void mthca_icm_next(struct mthca_icm_iter *iter) +{ + if (++iter->page_idx >= iter->chunk->nsg) { + if (iter->chunk->list.next == &iter->icm->chunk_list) { + iter->chunk = NULL; + return; + } + + iter->chunk = list_entry(iter->chunk->list.next, + struct mthca_icm_chunk, list); + iter->page_idx = 0; + } +} + +static inline dma_addr_t mthca_icm_addr(struct mthca_icm_iter *iter) +{ + return sg_dma_address(&iter->chunk->mem[iter->page_idx]); +} + +static inline unsigned long mthca_icm_size(struct mthca_icm_iter *iter) +{ + return sg_dma_len(&iter->chunk->mem[iter->page_idx]); +} + +#endif /* MTHCA_MEMFREE_H */ --- linux/drivers/infiniband/hw/mthca/mthca_cmd.c (revision 1425) +++ linux/drivers/infiniband/hw/mthca/mthca_cmd.c (revision 1426) @@ -40,6 +40,7 @@ #include "mthca_dev.h" #include "mthca_config_reg.h" #include "mthca_cmd.h" +#include "mthca_memfree.h" #define CMD_POLL_TOKEN 0xffff @@ -508,38 +509,38 @@ return mthca_cmd(dev, 0, 0, 0, CMD_SYS_DIS, HZ, status); } -int mthca_MAP_FA(struct mthca_dev *dev, int count, - struct scatterlist *sglist, u8 *status) +int mthca_MAP_FA(struct mthca_dev *dev, struct mthca_icm *icm, u8 *status) { u32 *inbox; dma_addr_t indma; + struct mthca_icm_iter iter; int lg; int nent = 0; - int i, j; + int i; int err = 0; int ts = 0; inbox = pci_alloc_consistent(dev->pdev, PAGE_SIZE, &indma); memset(inbox, 0, PAGE_SIZE); - for (i = 0; i < count; ++i) { + for (mthca_icm_first(icm, &iter); !mthca_icm_last(&iter); mthca_icm_next(&iter)) { /* * We have to pass pages that are aligned to their * size, so find the least significant 1 in the * address or size and use that as our log2 size. */ - lg = ffs(sg_dma_address(sglist + i) | sg_dma_len(sglist + i)) - 1; + lg = ffs(mthca_icm_addr(&iter) | mthca_icm_size(&iter)) - 1; if (lg < 12) { - mthca_warn(dev, "Got FW area not aligned to 4K (%llx/%x).\n", - (unsigned long long) sg_dma_address(sglist + i), - sg_dma_len(sglist + i)); + mthca_warn(dev, "Got FW area not aligned to 4K (%llx/%lx).\n", + (unsigned long long) mthca_icm_addr(&iter), + mthca_icm_size(&iter)); err = -EINVAL; goto out; } - for (j = 0; j < sg_dma_len(sglist + i) / (1 << lg); ++j, ++nent) { + for (i = 0; i < mthca_icm_size(&iter) / (1 << lg); ++i, ++nent) { *((__be64 *) (inbox + nent * 4 + 2)) = - cpu_to_be64((sg_dma_address(sglist + i) + - (j << lg)) | + cpu_to_be64((mthca_icm_addr(&iter) + + (i << lg)) | (lg - 12)); ts += 1 << (lg - 10); if (nent == PAGE_SIZE / 16) { --- linux/drivers/infiniband/hw/mthca/mthca_cmd.h (revision 1425) +++ linux/drivers/infiniband/hw/mthca/mthca_cmd.h (revision 1426) @@ -219,8 +219,7 @@ int mthca_SYS_EN(struct mthca_dev *dev, u8 *status); int mthca_SYS_DIS(struct mthca_dev *dev, u8 *status); -int mthca_MAP_FA(struct mthca_dev *dev, int count, - struct scatterlist *sglist, u8 *status); +int mthca_MAP_FA(struct mthca_dev *dev, struct mthca_icm *icm, u8 *status); int mthca_UNMAP_FA(struct mthca_dev *dev, u8 *status); int mthca_RUN_FW(struct mthca_dev *dev, u8 *status); int mthca_QUERY_FW(struct mthca_dev *dev, u8 *status); --- linux/drivers/infiniband/hw/mthca/Makefile (revision 1425) +++ linux/drivers/infiniband/hw/mthca/Makefile (revision 1426) @@ -9,4 +9,4 @@ ib_mthca-y := mthca_main.o mthca_cmd.o mthca_profile.o mthca_reset.o \ mthca_allocator.o mthca_eq.o mthca_pd.o mthca_cq.o \ mthca_mr.o mthca_qp.o mthca_av.o mthca_mcg.o mthca_mad.o \ - mthca_provider.o + mthca_provider.o mthca_memfree.o --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ linux/drivers/infiniband/hw/mthca/mthca_memfree.c (revision 1426) @@ -0,0 +1,133 @@ +/* + * Copyright (c) 2004 Topspin Communications. All rights reserved. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING in the main directory of this source tree, or the + * OpenIB.org BSD license below: + * + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retain the above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * + * $Id$ + */ + +#include "mthca_memfree.h" +#include "mthca_dev.h" + +void mthca_free_icm(struct mthca_dev *dev, struct mthca_icm *icm) +{ + struct mthca_icm_chunk *chunk, *tmp; + int i; + + if (!icm) + return; + + list_for_each_entry_safe(chunk, tmp, &icm->chunk_list, list) { + if (chunk->nsg > 0) + pci_unmap_sg(dev->pdev, chunk->mem, chunk->npages, + PCI_DMA_BIDIRECTIONAL); + + for (i = 0; i < chunk->npages; ++i) + __free_pages(chunk->mem[i].page, + get_order(chunk->mem[i].length)); + + kfree(chunk); + } + + kfree(icm); +} + +struct mthca_icm *mthca_alloc_icm(struct mthca_dev *dev, int npages, + unsigned int gfp_mask) +{ + struct mthca_icm *icm; + struct mthca_icm_chunk *chunk = NULL; + int cur_order; + + icm = kmalloc(sizeof *icm, gfp_mask & ~(__GFP_HIGHMEM | __GFP_NOWARN)); + if (!icm) + return icm; + + INIT_LIST_HEAD(&icm->chunk_list); + + /* + * We allocate in as big chunks as we can, up to a maximum of + * 256 KB per chunk. + */ + cur_order = get_order(1 << 18); + + while (npages > 0) { + if (!chunk) { + chunk = kmalloc(sizeof *chunk, + gfp_mask & ~(__GFP_HIGHMEM | __GFP_NOWARN)); + if (!chunk) + goto fail; + + chunk->npages = 0; + chunk->nsg = 0; + list_add_tail(&chunk->list, &icm->chunk_list); + } + + while (1 << cur_order > npages) + --cur_order; + + chunk->mem[chunk->npages].page = alloc_pages(gfp_mask, cur_order); + if (chunk->mem[chunk->npages].page) { + chunk->mem[chunk->npages].length = PAGE_SIZE << cur_order; + chunk->mem[chunk->npages].offset = 0; + + if (++chunk->npages == MTHCA_ICM_CHUNK_LEN) { + chunk->nsg = pci_map_sg(dev->pdev, chunk->mem, + chunk->npages, + PCI_DMA_BIDIRECTIONAL); + + if (chunk->nsg <= 0) + goto fail; + + chunk = NULL; + } + + npages -= 1 << cur_order; + } else { + --cur_order; + if (cur_order < 0) + goto fail; + } + } + + if (chunk) { + chunk->nsg = pci_map_sg(dev->pdev, chunk->mem, + chunk->npages, + PCI_DMA_BIDIRECTIONAL); + + if (chunk->nsg <= 0) + goto fail; + } + + return icm; + +fail: + mthca_free_icm(dev, icm); + return NULL; +} From roland at topspin.com Wed Jan 12 13:47:48 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:47:48 -0800 Subject: [openib-general] [PATCH][5/18] InfiniBand/mthca: add needed rmb() in event queue poll In-Reply-To: <20051121347.kR765yQEXhqhoLHL@topspin.com> Message-ID: <20051121347.vxtR3merv690zIQY@topspin.com> Add an rmb() between checking the ownership bit of an event queue entry and reading the contents of the EQE. Without this barrier, the CPU could read stale contents of the EQE before HW writes the EQE but have the read of the ownership bit reordered until after HW finishes writing, which leads to the driver processing an incorrect event. This was actually observed to happen when multiple completion queues are in heavy use on an IBM JS20 PowerPC 970 system. Also explain the existing rmb() in completion queue poll (there for the same reason) and slightly improve debugging output. Signed-off-by: Roland Dreier --- linux/drivers/infiniband/hw/mthca/mthca_cq.c (revision 1437) +++ linux/drivers/infiniband/hw/mthca/mthca_cq.c (revision 1439) @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -391,6 +391,10 @@ if (!next_cqe_sw(cq)) return -EAGAIN; + /* + * Make sure we read CQ entry contents after we've checked the + * ownership bit. + */ rmb(); cqe = get_cqe(cq, cq->cons_index); @@ -768,7 +772,8 @@ u32 *ctx = MAILBOX_ALIGN(mailbox); int j; - printk(KERN_ERR "context for CQN %x\n", cq->cqn); + printk(KERN_ERR "context for CQN %x (cons index %x, next sw %d)\n", + cq->cqn, cq->cons_index, next_cqe_sw(cq)); for (j = 0; j < 16; ++j) printk(KERN_ERR "[%2x] %08x\n", j * 4, be32_to_cpu(ctx[j])); } --- linux/drivers/infiniband/hw/mthca/mthca_eq.c (revision 1437) +++ linux/drivers/infiniband/hw/mthca/mthca_eq.c (revision 1439) @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -240,6 +240,12 @@ int set_ci = 0; eqe = get_eqe(eq, eq->cons_index); + /* + * Make sure we read EQ entry contents after we've + * checked the ownership bit. + */ + rmb(); + switch (eqe->type) { case MTHCA_EVENT_TYPE_COMP: disarm_cqn = be32_to_cpu(eqe->event.comp.cqn) & 0xffffff; From roland at topspin.com Wed Jan 12 13:47:49 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:47:49 -0800 Subject: [openib-general] [PATCH][6/18] InfiniBand/core: remove debug printk In-Reply-To: <20051121347.vxtR3merv690zIQY@topspin.com> Message-ID: <20051121347.Eers4foFN4d7Nfl8@topspin.com> Remove debug printk accidentally included. Signed-off-by: Tom Duffy Signed-off-by: Roland Dreier --- linux/drivers/infiniband/core/sysfs.c (revision 1455) +++ linux/drivers/infiniband/core/sysfs.c (revision 1456) @@ -188,8 +188,6 @@ case 4: speed = " QDR"; break; } - printk(KERN_ERR "width %d speed %d\n", attr.active_width, attr.active_speed); - rate = 25 * ib_width_enum_to_int(attr.active_width) * attr.active_speed; if (rate < 0) return -EINVAL; From roland at topspin.com Wed Jan 12 13:47:50 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:47:50 -0800 Subject: [openib-general] [PATCH][7/18] InfiniBand: make more code static In-Reply-To: <20051121347.Eers4foFN4d7Nfl8@topspin.com> Message-ID: <20051121347.WsPtvzM0EMoPIX2y@topspin.com> Make needlessly global code static. Signed-off-by: Adrian Bunk Signed-off-by: Roland Dreier --- linux/drivers/infiniband/ulp/ipoib/ipoib_main.c (revision 1456) +++ linux/drivers/infiniband/ulp/ipoib/ipoib_main.c (revision 1457) @@ -606,7 +606,7 @@ return NETDEV_TX_OK; } -struct net_device_stats *ipoib_get_stats(struct net_device *dev) +static struct net_device_stats *ipoib_get_stats(struct net_device *dev) { struct ipoib_dev_priv *priv = netdev_priv(dev); --- linux/drivers/infiniband/ulp/ipoib/ipoib_multicast.c (revision 1456) +++ linux/drivers/infiniband/ulp/ipoib/ipoib_multicast.c (revision 1457) @@ -44,7 +44,7 @@ #include "ipoib.h" #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG -int mcast_debug_level; +static int mcast_debug_level; module_param(mcast_debug_level, int, 0644); MODULE_PARM_DESC(mcast_debug_level, @@ -623,7 +623,7 @@ return 0; } -int ipoib_mcast_leave(struct net_device *dev, struct ipoib_mcast *mcast) +static int ipoib_mcast_leave(struct net_device *dev, struct ipoib_mcast *mcast) { struct ipoib_dev_priv *priv = netdev_priv(dev); struct ib_sa_mcmember_rec rec = { --- linux/drivers/infiniband/ulp/ipoib/ipoib_ib.c (revision 1456) +++ linux/drivers/infiniband/ulp/ipoib/ipoib_ib.c (revision 1457) @@ -357,7 +357,7 @@ } } -void __ipoib_reap_ah(struct net_device *dev) +static void __ipoib_reap_ah(struct net_device *dev) { struct ipoib_dev_priv *priv = netdev_priv(dev); struct ipoib_ah *ah, *tah; --- linux/drivers/infiniband/core/cache.c (revision 1456) +++ linux/drivers/infiniband/core/cache.c (revision 1457) @@ -252,7 +252,7 @@ } } -void ib_cache_setup_one(struct ib_device *device) +static void ib_cache_setup_one(struct ib_device *device) { int p; @@ -295,7 +295,7 @@ kfree(device->cache.gid_cache); } -void ib_cache_cleanup_one(struct ib_device *device) +static void ib_cache_cleanup_one(struct ib_device *device) { int p; @@ -311,7 +311,7 @@ kfree(device->cache.gid_cache); } -struct ib_client cache_client = { +static struct ib_client cache_client = { .name = "cache", .add = ib_cache_setup_one, .remove = ib_cache_cleanup_one From roland at topspin.com Wed Jan 12 13:47:51 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:47:51 -0800 Subject: [openib-general] [PATCH][8/18] InfiniBand/core: set byte_cnt correctly in MAD completion In-Reply-To: <20051121347.WsPtvzM0EMoPIX2y@topspin.com> Message-ID: <20051121347.GcISM37CLpmJtFzr@topspin.com> Integrate Michael Tsirkin's patch to local_completion to set the WC byte_cnt according to the IBA 1.1 spec (include the GRH size regardless of whether it is present or not). Signed-off-by: Hal Rosenstock Signed-off-by: Roland Dreier --- linux/drivers/infiniband/core/mad.c (revision 1458) +++ linux/drivers/infiniband/core/mad.c (revision 1459) @@ -2018,9 +2018,10 @@ wc.status = IB_WC_SUCCESS; wc.opcode = IB_WC_RECV; wc.vendor_err = 0; - wc.byte_len = sizeof(struct ib_mad); + wc.byte_len = sizeof(struct ib_mad) + + sizeof(struct ib_grh); wc.src_qp = IB_QP0; - wc.wc_flags = 0; + wc.wc_flags = 0; /* No GRH */ wc.pkey_index = 0; wc.slid = IB_LID_PERMISSIVE; wc.sl = 0; From roland at topspin.com Wed Jan 12 13:47:56 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:47:56 -0800 Subject: [openib-general] [PATCH][9/18] InfiniBand/core: add QP number to work completion struct In-Reply-To: <20051121347.GcISM37CLpmJtFzr@topspin.com> Message-ID: <20051121347.GID20pY2t5GaCSiw@topspin.com> InfiniBand spec rev 1.2 compliance: add local qp number to work completion structure. Signed-off-by: Michael S. Tsirkin Signed-off-by: Roland Dreier --- linux/drivers/infiniband/include/ib_verbs.h (revision 1466) +++ linux/drivers/infiniband/include/ib_verbs.h (revision 1468) @@ -352,6 +352,7 @@ u32 vendor_err; u32 byte_len; __be32 imm_data; + u32 qp_num; u32 src_qp; int wc_flags; u16 pkey_index; --- linux/drivers/infiniband/core/mad.c (revision 1466) +++ linux/drivers/infiniband/core/mad.c (revision 1468) @@ -2026,6 +2026,7 @@ wc.slid = IB_LID_PERMISSIVE; wc.sl = 0; wc.dlid_path_bits = 0; + wc.qp_num = IB_QP0; local->mad_priv->header.recv_wc.wc = &wc; local->mad_priv->header.recv_wc.mad_len = sizeof(struct ib_mad); --- linux/drivers/infiniband/hw/mthca/mthca_cq.c (revision 1466) +++ linux/drivers/infiniband/hw/mthca/mthca_cq.c (revision 1468) @@ -444,6 +444,8 @@ spin_lock(&(*cur_qp)->lock); } + entry->qp_num = (*cur_qp)->qpn; + if (is_send) { wq = &(*cur_qp)->sq; wqe_index = ((be32_to_cpu(cqe->wqe) - (*cur_qp)->send_wqe_offset) From roland at topspin.com Wed Jan 12 13:47:58 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:47:58 -0800 Subject: [openib-general] [PATCH][10/18] InfiniBand/core: add node_type and phys_state sysfs attrs In-Reply-To: <20051121347.GID20pY2t5GaCSiw@topspin.com> Message-ID: <20051121347.YiTPGKcPKdqWU1cs@topspin.com> Add per-device "node_type" and per-port "phys_state" sysfs attributes for InfiniBand devices. Signed-off-by: Roland Dreier --- linux/drivers/infiniband/include/ib_verbs.h (revision 1480) +++ linux/drivers/infiniband/include/ib_verbs.h (revision 1490) @@ -212,6 +212,7 @@ u8 init_type_reply; u8 active_width; u8 active_speed; + u8 phys_state; }; enum ib_device_modify_flags { --- linux/drivers/infiniband/core/sysfs.c (revision 1480) +++ linux/drivers/infiniband/core/sysfs.c (revision 1490) @@ -197,6 +197,29 @@ ib_width_enum_to_int(attr.active_width), speed); } +static ssize_t phys_state_show(struct ib_port *p, struct port_attribute *unused, + char *buf) +{ + struct ib_port_attr attr; + + ssize_t ret; + + ret = ib_query_port(p->ibdev, p->port_num, &attr); + if (ret) + return ret; + + switch (attr.phys_state) { + case 1: return sprintf(buf, "1: Sleep\n"); + case 2: return sprintf(buf, "2: Polling\n"); + case 3: return sprintf(buf, "3: Disabled\n"); + case 4: return sprintf(buf, "4: PortConfigurationTraining\n"); + case 5: return sprintf(buf, "5: LinkUp\n"); + case 6: return sprintf(buf, "6: LinkErrorRecovery\n"); + case 7: return sprintf(buf, "7: Phy Test\n"); + default: return sprintf(buf, "%d: \n", attr.phys_state); + } +} + static PORT_ATTR_RO(state); static PORT_ATTR_RO(lid); static PORT_ATTR_RO(lid_mask_count); @@ -204,6 +227,7 @@ static PORT_ATTR_RO(sm_sl); static PORT_ATTR_RO(cap_mask); static PORT_ATTR_RO(rate); +static PORT_ATTR_RO(phys_state); static struct attribute *port_default_attrs[] = { &port_attr_state.attr, @@ -213,6 +237,7 @@ &port_attr_sm_sl.attr, &port_attr_cap_mask.attr, &port_attr_rate.attr, + &port_attr_phys_state.attr, NULL }; @@ -572,6 +597,18 @@ return ret; } +static ssize_t show_node_type(struct class_device *cdev, char *buf) +{ + struct ib_device *dev = container_of(cdev, struct ib_device, class_dev); + + switch (dev->node_type) { + case IB_NODE_CA: return sprintf(buf, "%d: CA\n", dev->node_type); + case IB_NODE_SWITCH: return sprintf(buf, "%d: switch\n", dev->node_type); + case IB_NODE_ROUTER: return sprintf(buf, "%d: router\n", dev->node_type); + default: return sprintf(buf, "%d: \n", dev->node_type); + } +} + static ssize_t show_sys_image_guid(struct class_device *cdev, char *buf) { struct ib_device *dev = container_of(cdev, struct ib_device, class_dev); @@ -606,10 +643,12 @@ be16_to_cpu(((u16 *) &attr.node_guid)[3])); } +static CLASS_DEVICE_ATTR(node_type, S_IRUGO, show_node_type, NULL); static CLASS_DEVICE_ATTR(sys_image_guid, S_IRUGO, show_sys_image_guid, NULL); static CLASS_DEVICE_ATTR(node_guid, S_IRUGO, show_node_guid, NULL); static struct class_device_attribute *ib_class_attributes[] = { + &class_device_attr_node_type, &class_device_attr_sys_image_guid, &class_device_attr_node_guid }; --- linux/drivers/infiniband/hw/mthca/mthca_provider.c (revision 1480) +++ linux/drivers/infiniband/hw/mthca/mthca_provider.c (revision 1490) @@ -119,6 +119,7 @@ props->sm_lid = be16_to_cpup((u16 *) (out_mad->data + 18)); props->sm_sl = out_mad->data[36] & 0xf; props->state = out_mad->data[32] & 0xf; + props->phys_state = out_mad->data[33] >> 4; props->port_cap_flags = be32_to_cpup((u32 *) (out_mad->data + 20)); props->gid_tbl_len = to_mdev(ibdev)->limits.gid_table_len; props->pkey_tbl_len = to_mdev(ibdev)->limits.pkey_table_len; --- linux/Documentation/infiniband/sysfs.txt (revision 1480) +++ linux/Documentation/infiniband/sysfs.txt (revision 1490) @@ -3,6 +3,7 @@ For each InfiniBand device, the InfiniBand drivers create the following files under /sys/class/linux/drivers/infiniband/: + node_type - Node type (CA, switch or router) node_guid - Node GUID sys_image_guid - System image GUID @@ -25,6 +26,7 @@ sm_lid - Subnet manager LID for port's subnet sm_sl - Subnet manager SL for port's subnet state - Port state (DOWN, INIT, ARMED, ACTIVE or ACTIVE_DEFER) + phys_state - Port physical state (Sleep, Polling, LinkUp, etc) There is also a "counters" subdirectory, with files From roland at topspin.com Wed Jan 12 13:48:04 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:48:04 -0800 Subject: [openib-general] [PATCH][11/18] InfiniBand/mthca: clean up computation of HCA memory map In-Reply-To: <20051121347.YiTPGKcPKdqWU1cs@topspin.com> Message-ID: <20051121348.wTtIj6K84YZQwY0U@topspin.com> Clean up the computation of the HCA context memory map. This serves two purposes: - make it easier to change the HCA "profile" (eg add more QPs) - make it easier to implement mem-free Arbel support Signed-off-by: Roland Dreier --- linux/drivers/infiniband/hw/mthca/mthca_dev.h (revision 1493) +++ linux/drivers/infiniband/hw/mthca/mthca_dev.h (revision 1494) @@ -70,13 +70,16 @@ }; enum { - MTHCA_MPT_ENTRY_SIZE = 0x40, MTHCA_EQ_CONTEXT_SIZE = 0x40, MTHCA_CQ_CONTEXT_SIZE = 0x40, MTHCA_QP_CONTEXT_SIZE = 0x200, MTHCA_RDB_ENTRY_SIZE = 0x20, MTHCA_AV_SIZE = 0x20, - MTHCA_MGM_ENTRY_SIZE = 0x40 + MTHCA_MGM_ENTRY_SIZE = 0x40, + + /* Arbel FW gives us these, but we need them for Tavor */ + MTHCA_MPT_ENTRY_SIZE = 0x40, + MTHCA_MTT_SEG_SIZE = 0x40, }; enum { --- linux/drivers/infiniband/hw/mthca/mthca_main.c (revision 1493) +++ linux/drivers/infiniband/hw/mthca/mthca_main.c (revision 1494) @@ -76,6 +76,20 @@ "ib_mthca: Mellanox InfiniBand HCA driver v" DRV_VERSION " (" DRV_RELDATE ")\n"; +static struct mthca_profile default_profile = { + .num_qp = 1 << 16, + .rdb_per_qp = 4, + .num_cq = 1 << 16, + .num_mcg = 1 << 13, + .num_mpt = 1 << 17, + .num_mtt = 1 << 20 +}; + +enum { + MTHCA_TAVOR_NUM_UDAV = 1 << 15, + MTHCA_ARBEL_UARC_SIZE = 1 << 18 +}; + static int __devinit mthca_tune_pci(struct mthca_dev *mdev) { int cap; @@ -175,6 +189,7 @@ u8 status; int err; struct mthca_dev_lim dev_lim; + struct mthca_profile profile; struct mthca_init_hca_param init_hca; struct mthca_adapter adapter; @@ -214,7 +229,11 @@ err = mthca_dev_lim(mdev, &dev_lim); - err = mthca_make_profile(mdev, &dev_lim, &init_hca); + profile = default_profile; + profile.num_uar = dev_lim.uar_size / PAGE_SIZE; + profile.num_udav = MTHCA_TAVOR_NUM_UDAV; + + err = mthca_make_profile(mdev, &profile, &dev_lim, &init_hca); if (err) goto err_out_disable; --- linux/drivers/infiniband/hw/mthca/mthca_profile.c (revision 1493) +++ linux/drivers/infiniband/hw/mthca/mthca_profile.c (revision 1494) @@ -37,31 +37,34 @@ #include "mthca_profile.h" -static int default_profile[MTHCA_RES_NUM] = { - [MTHCA_RES_QP] = 1 << 16, - [MTHCA_RES_EQP] = 1 << 16, - [MTHCA_RES_CQ] = 1 << 16, - [MTHCA_RES_EQ] = 32, - [MTHCA_RES_RDB] = 1 << 18, - [MTHCA_RES_MCG] = 1 << 13, - [MTHCA_RES_MPT] = 1 << 17, - [MTHCA_RES_MTT] = 1 << 20, - [MTHCA_RES_UDAV] = 1 << 15 -}; - enum { - MTHCA_MTT_SEG_SIZE = 64 + MTHCA_RES_QP, + MTHCA_RES_EEC, + MTHCA_RES_SRQ, + MTHCA_RES_CQ, + MTHCA_RES_EQP, + MTHCA_RES_EEEC, + MTHCA_RES_EQ, + MTHCA_RES_RDB, + MTHCA_RES_MCG, + MTHCA_RES_MPT, + MTHCA_RES_MTT, + MTHCA_RES_UAR, + MTHCA_RES_UDAV, + MTHCA_RES_UARC, + MTHCA_RES_NUM }; enum { + MTHCA_NUM_EQS = 32, MTHCA_NUM_PDS = 1 << 15 }; int mthca_make_profile(struct mthca_dev *dev, + struct mthca_profile *request, struct mthca_dev_lim *dev_lim, struct mthca_init_hca_param *init_hca) { - /* just use default profile for now */ struct mthca_resource { u64 size; u64 start; @@ -70,17 +73,18 @@ int log_num; }; + u64 mem_base, mem_avail; u64 total_size = 0; struct mthca_resource *profile; struct mthca_resource tmp; int i, j; - default_profile[MTHCA_RES_UAR] = dev_lim->uar_size / PAGE_SIZE; - profile = kmalloc(MTHCA_RES_NUM * sizeof *profile, GFP_KERNEL); if (!profile) return -ENOMEM; + memset(profile, 0, MTHCA_RES_NUM * sizeof *profile); + profile[MTHCA_RES_QP].size = dev_lim->qpc_entry_sz; profile[MTHCA_RES_EEC].size = dev_lim->eec_entry_sz; profile[MTHCA_RES_SRQ].size = dev_lim->srq_entry_sz; @@ -90,18 +94,38 @@ profile[MTHCA_RES_EQ].size = dev_lim->eqc_entry_sz; profile[MTHCA_RES_RDB].size = MTHCA_RDB_ENTRY_SIZE; profile[MTHCA_RES_MCG].size = MTHCA_MGM_ENTRY_SIZE; - profile[MTHCA_RES_MPT].size = MTHCA_MPT_ENTRY_SIZE; - profile[MTHCA_RES_MTT].size = MTHCA_MTT_SEG_SIZE; + profile[MTHCA_RES_MPT].size = dev_lim->mpt_entry_sz; + profile[MTHCA_RES_MTT].size = dev_lim->mtt_seg_sz; profile[MTHCA_RES_UAR].size = dev_lim->uar_scratch_entry_sz; profile[MTHCA_RES_UDAV].size = MTHCA_AV_SIZE; + profile[MTHCA_RES_UARC].size = request->uarc_size; + profile[MTHCA_RES_QP].num = request->num_qp; + profile[MTHCA_RES_EQP].num = request->num_qp; + profile[MTHCA_RES_RDB].num = request->num_qp * request->rdb_per_qp; + profile[MTHCA_RES_CQ].num = request->num_cq; + profile[MTHCA_RES_EQ].num = MTHCA_NUM_EQS; + profile[MTHCA_RES_MCG].num = request->num_mcg; + profile[MTHCA_RES_MPT].num = request->num_mpt; + profile[MTHCA_RES_MTT].num = request->num_mtt; + profile[MTHCA_RES_UAR].num = request->num_uar; + profile[MTHCA_RES_UARC].num = request->num_uar; + profile[MTHCA_RES_UDAV].num = request->num_udav; + for (i = 0; i < MTHCA_RES_NUM; ++i) { profile[i].type = i; - profile[i].num = default_profile[i]; - profile[i].log_num = max(ffs(default_profile[i]) - 1, 0); - profile[i].size *= default_profile[i]; + profile[i].log_num = max(ffs(profile[i].num) - 1, 0); + profile[i].size *= profile[i].num; } + if (dev->hca_type == ARBEL_NATIVE) { + mem_base = 0; + mem_avail = dev_lim->hca.arbel.max_icm_sz; + } else { + mem_base = dev->ddr_start; + mem_avail = dev->fw.tavor.fw_start - dev->ddr_start; + } + /* * Sort the resources in decreasing order of size. Since they * all have sizes that are powers of 2, we'll be able to keep @@ -119,16 +143,14 @@ for (i = 0; i < MTHCA_RES_NUM; ++i) { if (profile[i].size) { - profile[i].start = dev->ddr_start + total_size; + profile[i].start = mem_base + total_size; total_size += profile[i].size; } - if (total_size > dev->fw.tavor.fw_start - dev->ddr_start) { + if (total_size > mem_avail) { mthca_err(dev, "Profile requires 0x%llx bytes; " - "won't fit between DDR start at 0x%016llx " - "and FW start at 0x%016llx.\n", + "won't in 0x%llx bytes of context memory.\n", (unsigned long long) total_size, - (unsigned long long) dev->ddr_start, - (unsigned long long) dev->fw.tavor.fw_start); + (unsigned long long) mem_avail); kfree(profile); return -ENOMEM; } @@ -141,10 +163,13 @@ (unsigned long long) profile[i].size); } - mthca_dbg(dev, "HCA memory: allocated %d KB/%d KB (%d KB free)\n", - (int) (total_size >> 10), - (int) ((dev->fw.tavor.fw_start - dev->ddr_start) >> 10), - (int) ((dev->fw.tavor.fw_start - dev->ddr_start - total_size) >> 10)); + if (dev->hca_type == ARBEL_NATIVE) + mthca_dbg(dev, "HCA context memory: reserving %d KB\n", + (int) (total_size >> 10)); + else + mthca_dbg(dev, "HCA memory: allocated %d KB/%d KB (%d KB free)\n", + (int) (total_size >> 10), (int) (mem_avail >> 10), + (int) ((mem_avail - total_size) >> 10)); for (i = 0; i < MTHCA_RES_NUM; ++i) { switch (profile[i].type) { @@ -203,10 +228,10 @@ break; case MTHCA_RES_MTT: dev->limits.num_mtt_segs = profile[i].num; - dev->limits.mtt_seg_size = MTHCA_MTT_SEG_SIZE; + dev->limits.mtt_seg_size = dev_lim->mtt_seg_sz; dev->mr_table.mtt_base = profile[i].start; init_hca->mtt_base = profile[i].start; - init_hca->mtt_seg_sz = ffs(MTHCA_MTT_SEG_SIZE) - 7; + init_hca->mtt_seg_sz = ffs(dev_lim->mtt_seg_sz) - 7; break; case MTHCA_RES_UAR: init_hca->uar_scratch_base = profile[i].start; --- linux/drivers/infiniband/hw/mthca/mthca_cmd.c (revision 1493) +++ linux/drivers/infiniband/hw/mthca/mthca_cmd.c (revision 1494) @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -959,9 +959,9 @@ MTHCA_GET(field, outbox, QUERY_DEV_LIM_RSZ_SRQ_OFFSET); dev_lim->hca.arbel.resize_srq = field & 1; MTHCA_GET(size, outbox, QUERY_DEV_LIM_MTT_ENTRY_SZ_OFFSET); - dev_lim->hca.arbel.mtt_entry_sz = size; + dev_lim->mtt_seg_sz = size; MTHCA_GET(size, outbox, QUERY_DEV_LIM_MPT_ENTRY_SZ_OFFSET); - dev_lim->hca.arbel.mpt_entry_sz = size; + dev_lim->mpt_entry_sz = size; MTHCA_GET(field, outbox, QUERY_DEV_LIM_PBL_SZ_OFFSET); dev_lim->hca.arbel.max_pbl_sz = 1 << (field & 0x3f); MTHCA_GET(dev_lim->hca.arbel.bmme_flags, outbox, @@ -987,6 +987,8 @@ } else { MTHCA_GET(field, outbox, QUERY_DEV_LIM_MAX_AV_OFFSET); dev_lim->hca.tavor.max_avs = 1 << (field & 0x3f); + dev_lim->mtt_seg_sz = MTHCA_MTT_SEG_SIZE; + dev_lim->mpt_entry_sz = MTHCA_MPT_ENTRY_SIZE; } out: --- linux/drivers/infiniband/hw/mthca/mthca_profile.h (revision 1493) +++ linux/drivers/infiniband/hw/mthca/mthca_profile.h (revision 1494) @@ -38,24 +38,20 @@ #include "mthca_dev.h" #include "mthca_cmd.h" -enum { - MTHCA_RES_QP, - MTHCA_RES_EEC, - MTHCA_RES_SRQ, - MTHCA_RES_CQ, - MTHCA_RES_EQP, - MTHCA_RES_EEEC, - MTHCA_RES_EQ, - MTHCA_RES_RDB, - MTHCA_RES_MCG, - MTHCA_RES_MPT, - MTHCA_RES_MTT, - MTHCA_RES_UAR, - MTHCA_RES_UDAV, - MTHCA_RES_NUM +struct mthca_profile { + int num_qp; + int rdb_per_qp; + int num_cq; + int num_mcg; + int num_mpt; + int num_mtt; + int num_udav; + int num_uar; + int uarc_size; }; int mthca_make_profile(struct mthca_dev *mdev, + struct mthca_profile *request, struct mthca_dev_lim *dev_lim, struct mthca_init_hca_param *init_hca); --- linux/drivers/infiniband/hw/mthca/mthca_cmd.h (revision 1493) +++ linux/drivers/infiniband/hw/mthca/mthca_cmd.h (revision 1494) @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -148,14 +148,14 @@ int cqc_entry_sz; int srq_entry_sz; int uar_scratch_entry_sz; + int mtt_seg_sz; + int mpt_entry_sz; union { struct { int max_avs; } tavor; struct { int resize_srq; - int mtt_entry_sz; - int mpt_entry_sz; int max_pbl_sz; u8 bmme_flags; u32 reserved_lkey; From roland at topspin.com Wed Jan 12 13:48:07 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:48:07 -0800 Subject: [openib-general] [PATCH][12/18] InfiniBand/core: fix handling of 0-hop directed route MADs In-Reply-To: <20051121348.wTtIj6K84YZQwY0U@topspin.com> Message-ID: <20051121348.Xc0vsayRkBF6BIqu@topspin.com> Handle outgoing DR 0 hop SMPs properly when provider returns just SUCCESS to process_mad. Signed-off-by: Hal Rosenstock Signed-off-by: Roland Dreier --- linux/drivers/infiniband/core/mad.c (revision 1501) +++ linux/drivers/infiniband/core/mad.c (revision 1502) @@ -60,6 +60,9 @@ static int method_in_use(struct ib_mad_mgmt_method_table **method, struct ib_mad_reg_req *mad_reg_req); static void remove_mad_reg_req(struct ib_mad_agent_private *priv); +static struct ib_mad_agent_private *find_mad_agent( + struct ib_mad_port_private *port_priv, + struct ib_mad *mad, int solicited); static int ib_mad_post_receive_mads(struct ib_mad_qp_info *qp_info, struct ib_mad_private *mad); static void cancel_mads(struct ib_mad_agent_private *mad_agent_priv); @@ -623,10 +626,12 @@ struct ib_smp *smp, struct ib_send_wr *send_wr) { - int ret, alloc_flags; + int ret, alloc_flags, solicited; unsigned long flags; struct ib_mad_local_private *local; struct ib_mad_private *mad_priv; + struct ib_mad_port_private *port_priv; + struct ib_mad_agent_private *recv_mad_agent = NULL; struct ib_device *device = mad_agent_priv->agent.device; u8 port_num = mad_agent_priv->agent.port_num; @@ -651,6 +656,7 @@ goto out; } local->mad_priv = NULL; + local->recv_mad_agent = NULL; mad_priv = kmem_cache_alloc(ib_mad_cache, alloc_flags); if (!mad_priv) { ret = -ENOMEM; @@ -669,19 +675,41 @@ * there is a recv handler */ if (solicited_mad(&mad_priv->mad.mad) && - mad_agent_priv->agent.recv_handler) + mad_agent_priv->agent.recv_handler) { local->mad_priv = mad_priv; - else + local->recv_mad_agent = mad_agent_priv; + /* + * Reference MAD agent until receive + * side of local completion handled + */ + atomic_inc(&mad_agent_priv->refcount); + } else kmem_cache_free(ib_mad_cache, mad_priv); break; case IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_CONSUMED: kmem_cache_free(ib_mad_cache, mad_priv); break; case IB_MAD_RESULT_SUCCESS: - kmem_cache_free(ib_mad_cache, mad_priv); - kfree(local); - ret = 0; - goto out; + /* Treat like an incoming receive MAD */ + solicited = solicited_mad(&mad_priv->mad.mad); + port_priv = ib_get_mad_port(mad_agent_priv->agent.device, + mad_agent_priv->agent.port_num); + if (port_priv) { + mad_priv->mad.mad.mad_hdr.tid = + ((struct ib_mad *)smp)->mad_hdr.tid; + recv_mad_agent = find_mad_agent(port_priv, + &mad_priv->mad.mad, + solicited); + } + if (!port_priv || !recv_mad_agent) { + kmem_cache_free(ib_mad_cache, mad_priv); + kfree(local); + ret = 0; + goto out; + } + local->mad_priv = mad_priv; + local->recv_mad_agent = recv_mad_agent; + break; default: kmem_cache_free(ib_mad_cache, mad_priv); kfree(local); @@ -696,7 +724,7 @@ local->send_wr.next = NULL; local->tid = send_wr->wr.ud.mad_hdr->tid; local->wr_id = send_wr->wr_id; - /* Reference MAD agent until local completion handled */ + /* Reference MAD agent until send side of local completion handled */ atomic_inc(&mad_agent_priv->refcount); /* Queue local completion to local list */ spin_lock_irqsave(&mad_agent_priv->lock, flags); @@ -1997,6 +2025,7 @@ { struct ib_mad_agent_private *mad_agent_priv; struct ib_mad_local_private *local; + struct ib_mad_agent_private *recv_mad_agent; unsigned long flags; struct ib_wc wc; struct ib_mad_send_wc mad_send_wc; @@ -2010,6 +2039,13 @@ completion_list); spin_unlock_irqrestore(&mad_agent_priv->lock, flags); if (local->mad_priv) { + recv_mad_agent = local->recv_mad_agent; + if (!recv_mad_agent) { + printk(KERN_ERR PFX "No receive MAD agent for local completion\n"); + kmem_cache_free(ib_mad_cache, local->mad_priv); + goto local_send_completion; + } + /* * Defined behavior is to complete response * before request @@ -2034,15 +2070,19 @@ local->mad_priv->header.recv_wc.recv_buf.grh = NULL; local->mad_priv->header.recv_wc.recv_buf.mad = &local->mad_priv->mad.mad; - if (atomic_read(&mad_agent_priv->qp_info->snoop_count)) - snoop_recv(mad_agent_priv->qp_info, + if (atomic_read(&recv_mad_agent->qp_info->snoop_count)) + snoop_recv(recv_mad_agent->qp_info, &local->mad_priv->header.recv_wc, IB_MAD_SNOOP_RECVS); - mad_agent_priv->agent.recv_handler( - &mad_agent_priv->agent, + recv_mad_agent->agent.recv_handler( + &recv_mad_agent->agent, &local->mad_priv->header.recv_wc); + spin_lock_irqsave(&recv_mad_agent->lock, flags); + atomic_dec(&recv_mad_agent->refcount); + spin_unlock_irqrestore(&recv_mad_agent->lock, flags); } +local_send_completion: /* Complete send */ mad_send_wc.status = IB_WC_SUCCESS; mad_send_wc.vendor_err = 0; --- linux/drivers/infiniband/core/mad_priv.h (revision 1501) +++ linux/drivers/infiniband/core/mad_priv.h (revision 1502) @@ -127,6 +127,7 @@ struct ib_mad_local_private { struct list_head completion_list; struct ib_mad_private *mad_priv; + struct ib_mad_agent_private *recv_mad_agent; struct ib_send_wr send_wr; struct ib_sge sg_list[IB_MAD_SEND_REQ_MAX_SG]; u64 wr_id; /* client WR ID */ From roland at topspin.com Wed Jan 12 13:48:08 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:48:08 -0800 Subject: [openib-general] [PATCH][13/18] InfiniBand/core: add more parameters to process_mad In-Reply-To: <20051121348.Xc0vsayRkBF6BIqu@topspin.com> Message-ID: <20051121348.cZjtF8ckKVdplJpJ@topspin.com> Add parameters to process_mad device method to support full Mellanox firmware capabilities (pass sufficient information for baseboard management trap generation, etc). Signed-off-by: Michael S. Tsirkin Signed-off-by: Roland Dreier --- linux/drivers/infiniband/include/ib_verbs.h (revision 1502) +++ linux/drivers/infiniband/include/ib_verbs.h (revision 1504) @@ -684,9 +684,12 @@ }; struct ib_mad; +struct ib_grh; enum ib_process_mad_flags { - IB_MAD_IGNORE_MKEY = 1 + IB_MAD_IGNORE_MKEY = 1, + IB_MAD_IGNORE_BKEY = 2, + IB_MAD_IGNORE_ALL = IB_MAD_IGNORE_MKEY | IB_MAD_IGNORE_BKEY }; enum ib_mad_result { @@ -812,7 +815,8 @@ int (*process_mad)(struct ib_device *device, int process_mad_flags, u8 port_num, - u16 source_lid, + struct ib_wc *in_wc, + struct ib_grh *in_grh, struct ib_mad *in_mad, struct ib_mad *out_mad); --- linux/drivers/infiniband/core/mad.c (revision 1502) +++ linux/drivers/infiniband/core/mad.c (revision 1504) @@ -617,6 +617,23 @@ spin_unlock_irqrestore(&qp_info->snoop_lock, flags); } +static void build_smp_wc(u64 wr_id, u16 slid, u16 pkey_index, u8 port_num, + struct ib_wc *wc) +{ + memset(wc, 0, sizeof *wc); + wc->wr_id = wr_id; + wc->status = IB_WC_SUCCESS; + wc->opcode = IB_WC_RECV; + wc->pkey_index = pkey_index; + wc->byte_len = sizeof(struct ib_mad) + sizeof(struct ib_grh); + wc->src_qp = IB_QP0; + wc->qp_num = IB_QP0; + wc->slid = slid; + wc->sl = 0; + wc->dlid_path_bits = 0; + wc->port_num = port_num; +} + /* * Return 0 if SMP is to be sent * Return 1 if SMP was consumed locally (whether or not solicited) @@ -634,6 +651,7 @@ struct ib_mad_agent_private *recv_mad_agent; struct ib_device *device = mad_agent_priv->agent.device; u8 port_num = mad_agent_priv->agent.port_num; + struct ib_wc mad_wc; if (!smi_handle_dr_smp_send(smp, device->node_type, port_num)) { ret = -EINVAL; @@ -664,7 +682,12 @@ kfree(local); goto out; } - ret = device->process_mad(device, 0, port_num, smp->dr_slid, + + build_smp_wc(send_wr->wr_id, smp->dr_slid, send_wr->wr.ud.pkey_index, + send_wr->wr.ud.port_num, &mad_wc); + + /* No GRH for DR SMP */ + ret = device->process_mad(device, 0, port_num, &mad_wc, NULL, (struct ib_mad *)smp, (struct ib_mad *)&mad_priv->mad); switch (ret) @@ -1622,7 +1645,7 @@ ret = port_priv->device->process_mad(port_priv->device, 0, port_priv->port_num, - wc->slid, + wc, &recv->grh, &recv->mad.mad, &response->mad.mad); if (ret & IB_MAD_RESULT_SUCCESS) { @@ -2050,19 +2073,10 @@ * Defined behavior is to complete response * before request */ - wc.wr_id = local->wr_id; - wc.status = IB_WC_SUCCESS; - wc.opcode = IB_WC_RECV; - wc.vendor_err = 0; - wc.byte_len = sizeof(struct ib_mad) + - sizeof(struct ib_grh); - wc.src_qp = IB_QP0; - wc.wc_flags = 0; /* No GRH */ - wc.pkey_index = 0; - wc.slid = IB_LID_PERMISSIVE; - wc.sl = 0; - wc.dlid_path_bits = 0; - wc.qp_num = IB_QP0; + build_smp_wc(local->wr_id, IB_LID_PERMISSIVE, + 0 /* pkey index */, + recv_mad_agent->agent.port_num, &wc); + local->mad_priv->header.recv_wc.wc = &wc; local->mad_priv->header.recv_wc.mad_len = sizeof(struct ib_mad); --- linux/drivers/infiniband/core/sysfs.c (revision 1502) +++ linux/drivers/infiniband/core/sysfs.c (revision 1504) @@ -315,8 +315,8 @@ in_mad->data[41] = p->port_num; /* PortSelect field */ - if ((p->ibdev->process_mad(p->ibdev, IB_MAD_IGNORE_MKEY, p->port_num, 0xffff, - in_mad, out_mad) & + if ((p->ibdev->process_mad(p->ibdev, IB_MAD_IGNORE_MKEY, + p->port_num, NULL, NULL, in_mad, out_mad) & (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) != (IB_MAD_RESULT_SUCCESS | IB_MAD_RESULT_REPLY)) { ret = -EINVAL; --- linux/drivers/infiniband/hw/mthca/mthca_dev.h (revision 1502) +++ linux/drivers/infiniband/hw/mthca/mthca_dev.h (revision 1504) @@ -381,7 +381,8 @@ int mthca_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num, - u16 slid, + struct ib_wc *in_wc, + struct ib_grh *in_grh, struct ib_mad *in_mad, struct ib_mad *out_mad); int mthca_create_agents(struct mthca_dev *dev); --- linux/drivers/infiniband/hw/mthca/mthca_mad.c (revision 1502) +++ linux/drivers/infiniband/hw/mthca/mthca_mad.c (revision 1504) @@ -185,12 +185,14 @@ int mthca_process_mad(struct ib_device *ibdev, int mad_flags, u8 port_num, - u16 slid, + struct ib_wc *in_wc, + struct ib_grh *in_grh, struct ib_mad *in_mad, struct ib_mad *out_mad) { int err; u8 status; + u16 slid = in_wc ? in_wc->slid : IB_LID_PERMISSIVE; /* Forward locally generated traps to the SM */ if (in_mad->mad_hdr.method == IB_MGMT_METHOD_TRAP && From roland at topspin.com Wed Jan 12 13:48:13 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:48:13 -0800 Subject: [openib-general] [PATCH][14/18] InfiniBand/core: add qp_type to struct ib_qp In-Reply-To: <20051121348.cZjtF8ckKVdplJpJ@topspin.com> Message-ID: <20051121348.O0tqjPJiAF6eouQF@topspin.com> Add qp_type to struct ib_qp. Signed-off by: Sean Hefty Signed-off-by: Roland Dreier --- linux/drivers/infiniband/include/ib_verbs.h (revision 1507) +++ linux/drivers/infiniband/include/ib_verbs.h (revision 1508) @@ -659,6 +659,7 @@ void (*event_handler)(struct ib_event *, void *); void *qp_context; u32 qp_num; + enum ib_qp_type qp_type; }; struct ib_mr { --- linux/drivers/infiniband/core/verbs.c (revision 1507) +++ linux/drivers/infiniband/core/verbs.c (revision 1508) @@ -132,6 +132,7 @@ qp->srq = qp_init_attr->srq; qp->event_handler = qp_init_attr->event_handler; qp->qp_context = qp_init_attr->qp_context; + qp->qp_type = qp_init_attr->qp_type; atomic_inc(&pd->usecnt); atomic_inc(&qp_init_attr->send_cq->usecnt); atomic_inc(&qp_init_attr->recv_cq->usecnt); From roland at topspin.com Wed Jan 12 13:48:19 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:48:19 -0800 Subject: [openib-general] [PATCH][15/18] InfiniBand/core: add ib_find_cached_gid function In-Reply-To: <20051121348.O0tqjPJiAF6eouQF@topspin.com> Message-ID: <20051121348.HEHfXs5yLwYCfuQm@topspin.com> Add a new function to find a port on a device given a GID by searching the cached GID tables. Document all cache functions in ib_cache.h. Rename existing functions to better match format of verb routines. Signed-off by: Sean Hefty Signed-off-by: Roland Dreier --- linux/drivers/infiniband/ulp/ipoib/ipoib_verbs.c (revision 1508) +++ linux/drivers/infiniband/ulp/ipoib/ipoib_verbs.c (revision 1509) @@ -49,7 +49,7 @@ if (!qp_attr) goto out; - if (ib_cached_pkey_find(priv->ca, priv->port, priv->pkey, &pkey_index)) { + if (ib_find_cached_pkey(priv->ca, priv->port, priv->pkey, &pkey_index)) { clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags); ret = -ENXIO; goto out; @@ -104,7 +104,7 @@ * The port has to be assigned to the respective IB partition in * advance. */ - ret = ib_cached_pkey_find(priv->ca, priv->port, priv->pkey, &pkey_index); + ret = ib_find_cached_pkey(priv->ca, priv->port, priv->pkey, &pkey_index); if (ret) { clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags); return ret; --- linux/drivers/infiniband/ulp/ipoib/ipoib_ib.c (revision 1508) +++ linux/drivers/infiniband/ulp/ipoib/ipoib_ib.c (revision 1509) @@ -630,7 +630,7 @@ struct ipoib_dev_priv *priv = netdev_priv(dev); u16 pkey_index = 0; - if (ib_cached_pkey_find(priv->ca, priv->port, priv->pkey, &pkey_index)) + if (ib_find_cached_pkey(priv->ca, priv->port, priv->pkey, &pkey_index)) clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags); else set_bit(IPOIB_PKEY_ASSIGNED, &priv->flags); --- linux/drivers/infiniband/include/ib_cache.h (revision 1508) +++ linux/drivers/infiniband/include/ib_cache.h (revision 1509) @@ -37,16 +37,66 @@ #include -int ib_cached_gid_get(struct ib_device *device, - u8 port, +/** + * ib_get_cached_gid - Returns a cached GID table entry + * @device: The device to query. + * @port_num: The port number of the device to query. + * @index: The index into the cached GID table to query. + * @gid: The GID value found at the specified index. + * + * ib_get_cached_gid() fetches the specified GID table entry stored in + * the local software cache. + */ +int ib_get_cached_gid(struct ib_device *device, + u8 port_num, int index, union ib_gid *gid); -int ib_cached_pkey_get(struct ib_device *device_handle, - u8 port, + +/** + * ib_find_cached_gid - Returns the port number and GID table index where + * a specified GID value occurs. + * @device: The device to query. + * @gid: The GID value to search for. + * @port_num: The port number of the device where the GID value was found. + * @index: The index into the cached GID table where the GID was found. This + * parameter may be NULL. + * + * ib_find_cached_gid() searches for the specified GID value in + * the local software cache. + */ +int ib_find_cached_gid(struct ib_device *device, + union ib_gid *gid, + u8 *port_num, + u16 *index); + +/** + * ib_get_cached_pkey - Returns a cached PKey table entry + * @device: The device to query. + * @port_num: The port number of the device to query. + * @index: The index into the cached PKey table to query. + * @pkey: The PKey value found at the specified index. + * + * ib_get_cached_pkey() fetches the specified PKey table entry stored in + * the local software cache. + */ +int ib_get_cached_pkey(struct ib_device *device_handle, + u8 port_num, int index, u16 *pkey); -int ib_cached_pkey_find(struct ib_device *device, - u8 port, + +/** + * ib_find_cached_pkey - Returns the PKey table index where a specified + * PKey value occurs. + * @device: The device to query. + * @port_num: The port number of the device to search for the PKey. + * @pkey: The PKey value to search for. + * @index: The index into the cached PKey table where the PKey was found. + * + * ib_find_cached_pkey() searches the specified PKey table in + * the local software cache. + */ +int ib_find_cached_pkey(struct ib_device *device, + u8 port_num, u16 pkey, u16 *index); --- linux/drivers/infiniband/core/cache.c (revision 1508) +++ linux/drivers/infiniband/core/cache.c (revision 1509) @@ -65,8 +65,8 @@ return device->node_type == IB_NODE_SWITCH ? 0 : device->phys_port_cnt; } -int ib_cached_gid_get(struct ib_device *device, - u8 port, +int ib_get_cached_gid(struct ib_device *device, + u8 port_num, int index, union ib_gid *gid) { @@ -74,12 +74,12 @@ unsigned long flags; int ret = 0; - if (port < start_port(device) || port > end_port(device)) + if (port_num < start_port(device) || port_num > end_port(device)) return -EINVAL; read_lock_irqsave(&device->cache.lock, flags); - cache = device->cache.gid_cache[port - start_port(device)]; + cache = device->cache.gid_cache[port_num - start_port(device)]; if (index < 0 || index >= cache->table_len) ret = -EINVAL; @@ -90,10 +90,45 @@ return ret; } -EXPORT_SYMBOL(ib_cached_gid_get); +EXPORT_SYMBOL(ib_get_cached_gid); -int ib_cached_pkey_get(struct ib_device *device, - u8 port, +int ib_find_cached_gid(struct ib_device *device, + union ib_gid *gid, + u8 *port_num, + u16 *index) +{ + struct ib_gid_cache *cache; + unsigned long flags; + int p, i; + int ret = -ENOENT; + + *port_num = -1; + if (index) + *index = -1; + + read_lock_irqsave(&device->cache.lock, flags); + + for (p = 0; p <= end_port(device) - start_port(device); ++p) { + cache = device->cache.gid_cache[p]; + for (i = 0; i < cache->table_len; ++i) { + if (!memcmp(gid, &cache->table[i], sizeof *gid)) { + *port_num = p; + if (index) + *index = i; + ret = 0; + goto found; + } + } + } +found: + read_unlock_irqrestore(&device->cache.lock, flags); + + return ret; +} +EXPORT_SYMBOL(ib_find_cached_gid); + +int ib_get_cached_pkey(struct ib_device *device, + u8 port_num, int index, u16 *pkey) { @@ -101,12 +136,12 @@ unsigned long flags; int ret = 0; - if (port < start_port(device) || port > end_port(device)) + if (port_num < start_port(device) || port_num > end_port(device)) return -EINVAL; read_lock_irqsave(&device->cache.lock, flags); - cache = device->cache.pkey_cache[port - start_port(device)]; + cache = device->cache.pkey_cache[port_num - start_port(device)]; if (index < 0 || index >= cache->table_len) ret = -EINVAL; @@ -117,10 +152,10 @@ return ret; } -EXPORT_SYMBOL(ib_cached_pkey_get); +EXPORT_SYMBOL(ib_get_cached_pkey); -int ib_cached_pkey_find(struct ib_device *device, - u8 port, +int ib_find_cached_pkey(struct ib_device *device, + u8 port_num, u16 pkey, u16 *index) { @@ -129,12 +164,12 @@ int i; int ret = -ENOENT; - if (port < start_port(device) || port > end_port(device)) + if (port_num < start_port(device) || port_num > end_port(device)) return -EINVAL; read_lock_irqsave(&device->cache.lock, flags); - cache = device->cache.pkey_cache[port - start_port(device)]; + cache = device->cache.pkey_cache[port_num - start_port(device)]; *index = -1; @@ -149,7 +184,7 @@ return ret; } -EXPORT_SYMBOL(ib_cached_pkey_find); +EXPORT_SYMBOL(ib_find_cached_pkey); static void ib_cache_update(struct ib_device *device, u8 port) --- linux/drivers/infiniband/hw/mthca/mthca_av.c (revision 1508) +++ linux/drivers/infiniband/hw/mthca/mthca_av.c (revision 1509) @@ -159,7 +159,7 @@ (be32_to_cpu(ah->av->sl_tclass_flowlabel) >> 20) & 0xff; header->grh.flow_label = ah->av->sl_tclass_flowlabel & cpu_to_be32(0xfffff); - ib_cached_gid_get(&dev->ib_dev, + ib_get_cached_gid(&dev->ib_dev, be32_to_cpu(ah->av->port_pd) >> 24, ah->av->gid_index, &header->grh.source_gid); --- linux/drivers/infiniband/hw/mthca/mthca_qp.c (revision 1508) +++ linux/drivers/infiniband/hw/mthca/mthca_qp.c (revision 1509) @@ -1190,11 +1190,11 @@ sqp->ud_header.lrh.source_lid = 0xffff; sqp->ud_header.bth.solicited_event = !!(wr->send_flags & IB_SEND_SOLICITED); if (!sqp->qp.ibqp.qp_num) - ib_cached_pkey_get(&dev->ib_dev, sqp->port, + ib_get_cached_pkey(&dev->ib_dev, sqp->port, sqp->pkey_index, &sqp->ud_header.bth.pkey); else - ib_cached_pkey_get(&dev->ib_dev, sqp->port, + ib_get_cached_pkey(&dev->ib_dev, sqp->port, wr->wr.ud.pkey_index, &sqp->ud_header.bth.pkey); cpu_to_be16s(&sqp->ud_header.bth.pkey); From roland at topspin.com Wed Jan 12 13:48:25 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:48:25 -0800 Subject: [openib-general] [PATCH][16/18] InfiniBand: update copyrights for new year In-Reply-To: <20051121348.HEHfXs5yLwYCfuQm@topspin.com> Message-ID: <20051121348.60O3cyevOZe3iYxf@topspin.com> Update copyright line (files were modified in 2005). Signed-off-by: Hal Rosenstock Signed-off-by: Roland Dreier --- linux/drivers/infiniband/core/mad.c (revision 1510) +++ linux/drivers/infiniband/core/mad.c (revision 1512) @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, Voltaire, Inc. All rights reserved. + * Copyright (c) 2004, 2005 Voltaire, Inc. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU --- linux/drivers/infiniband/core/mad_priv.h (revision 1510) +++ linux/drivers/infiniband/core/mad_priv.h (revision 1512) @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, Voltaire, Inc. All rights reserved. + * Copyright (c) 2004, 2005, Voltaire, Inc. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU --- linux/drivers/infiniband/core/sysfs.c (revision 1510) +++ linux/drivers/infiniband/core/sysfs.c (revision 1512) @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU --- linux/drivers/infiniband/hw/mthca/mthca_provider.c (revision 1510) +++ linux/drivers/infiniband/hw/mthca/mthca_provider.c (revision 1512) @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU From roland at topspin.com Wed Jan 12 13:48:26 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:48:26 -0800 Subject: [openib-general] [PATCH][17/18] InfiniBand/ipoib: move structs from stack to device private struct In-Reply-To: <20051121348.60O3cyevOZe3iYxf@topspin.com> Message-ID: <20051121348.B8o2ZVVtV8zXmvPq@topspin.com> Move the gather list and work request used for posting sends from the stack in ipoib_send() to the private structure. This reduces the stack usage for the data path function ipoib_send() and may speed things up slightly because we don't need to initialize constant members of the structures. Signed-off-by: Roland Dreier --- linux/drivers/infiniband/ulp/ipoib/ipoib_verbs.c (revision 1520) +++ linux/drivers/infiniband/ulp/ipoib/ipoib_verbs.c (revision 1521) @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -187,7 +187,7 @@ priv->mr = ib_get_dma_mr(priv->pd, IB_ACCESS_LOCAL_WRITE); if (IS_ERR(priv->mr)) { - printk(KERN_WARNING "%s: ib_reg_phys_mr failed\n", ca->name); + printk(KERN_WARNING "%s: ib_get_dma_mr failed\n", ca->name); goto out_free_cq; } @@ -204,6 +204,13 @@ priv->dev->dev_addr[2] = (priv->qp->qp_num >> 8) & 0xff; priv->dev->dev_addr[3] = (priv->qp->qp_num ) & 0xff; + priv->tx_sge.lkey = priv->mr->lkey; + + priv->tx_wr.opcode = IB_WR_SEND; + priv->tx_wr.sg_list = &priv->tx_sge; + priv->tx_wr.num_sge = 1; + priv->tx_wr.send_flags = IB_SEND_SIGNALED; + return 0; out_free_mr: --- linux/drivers/infiniband/ulp/ipoib/ipoib.h (revision 1520) +++ linux/drivers/infiniband/ulp/ipoib/ipoib.h (revision 1521) @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -150,10 +150,12 @@ struct ipoib_buf *rx_ring; - spinlock_t tx_lock; + spinlock_t tx_lock; struct ipoib_buf *tx_ring; - unsigned tx_head; - unsigned tx_tail; + unsigned tx_head; + unsigned tx_tail; + struct ib_sge tx_sge; + struct ib_send_wr tx_wr; struct ib_wc ibwc[IPOIB_NUM_WC]; --- linux/drivers/infiniband/ulp/ipoib/ipoib_multicast.c (revision 1520) +++ linux/drivers/infiniband/ulp/ipoib/ipoib_multicast.c (revision 1521) @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -213,8 +213,10 @@ /* Set the cached Q_Key before we attach if it's the broadcast group */ if (!memcmp(mcast->mcmember.mgid.raw, priv->dev->broadcast + 4, - sizeof (union ib_gid))) + sizeof (union ib_gid))) { priv->qkey = be32_to_cpu(priv->broadcast->mcmember.qkey); + priv->tx_wr.wr.ud.remote_qkey = priv->qkey; + } if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) { if (test_and_set_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) { --- linux/drivers/infiniband/ulp/ipoib/ipoib_ib.c (revision 1520) +++ linux/drivers/infiniband/ulp/ipoib/ipoib_ib.c (revision 1521) @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -281,28 +281,16 @@ struct ib_ah *address, u32 qpn, dma_addr_t addr, int len) { - struct ib_sge list = { - .addr = addr, - .length = len, - .lkey = priv->mr->lkey, - }; - struct ib_send_wr param = { - .wr_id = wr_id, - .opcode = IB_WR_SEND, - .sg_list = &list, - .num_sge = 1, - .wr = { - .ud = { - .remote_qpn = qpn, - .remote_qkey = priv->qkey, - .ah = address - }, - }, - .send_flags = IB_SEND_SIGNALED, - }; struct ib_send_wr *bad_wr; - return ib_post_send(priv->qp, ¶m, &bad_wr); + priv->tx_sge.addr = addr; + priv->tx_sge.length = len; + + priv->tx_wr.wr_id = wr_id; + priv->tx_wr.wr.ud.remote_qpn = qpn; + priv->tx_wr.wr.ud.ah = address; + + return ib_post_send(priv->qp, &priv->tx_wr, &bad_wr); } void ipoib_send(struct net_device *dev, struct sk_buff *skb, From roland at topspin.com Wed Jan 12 13:48:27 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 13:48:27 -0800 Subject: [openib-general] [PATCH][18/18] InfiniBand/core: rename handle_outgoing_smp In-Reply-To: <20051121348.B8o2ZVVtV8zXmvPq@topspin.com> Message-ID: <20051121348.PHUuXZDT6PZldJ8r@topspin.com> Change routine name from handle_outgoing_smp to handle_outgoing_dr_smp. Signed-off-by: Hal Rosenstock Signed-off-by: Roland Dreier --- linux/drivers/infiniband/core/mad.c (revision 1449) +++ linux/drivers/infiniband/core/mad.c (revision 1450) @@ -619,9 +619,9 @@ * Return 1 if SMP was consumed locally (whether or not solicited) * Return < 0 if error */ -static int handle_outgoing_smp(struct ib_mad_agent_private *mad_agent_priv, - struct ib_smp *smp, - struct ib_send_wr *send_wr) +static int handle_outgoing_dr_smp(struct ib_mad_agent_private *mad_agent_priv, + struct ib_smp *smp, + struct ib_send_wr *send_wr) { int ret, alloc_flags; unsigned long flags; @@ -797,7 +797,8 @@ smp = (struct ib_smp *)send_wr->wr.ud.mad_hdr; if (smp->mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) { - ret = handle_outgoing_smp(mad_agent_priv, smp, send_wr); + ret = handle_outgoing_dr_smp(mad_agent_priv, smp, + send_wr); if (ret < 0) /* error */ goto error2; else if (ret == 1) /* locally consumed */ From rminnich at lanl.gov Wed Jan 12 14:00:19 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Wed, 12 Jan 2005 15:00:19 -0700 (MST) Subject: [openib-general] question Message-ID: I am ins'moding everything on a bproc master node, and I see ib0 when I'm done. Same on a slave node, and no ib0. What does the correct operation of all this depend on? I am hoping there is not some daemon required, just checking. Or is there some thing I might have gotten wrong? ron p.s. opensm seems to work. This openib is looking better daily, it's really a great job you all have done. From davej at redhat.com Wed Jan 12 14:01:43 2005 From: davej at redhat.com (Dave Jones) Date: Wed, 12 Jan 2005 17:01:43 -0500 Subject: [openib-general] Re: debugfs directory structure In-Reply-To: <20050112214108.GA13801@kroah.com> References: <52d5watlqs.fsf@topspin.com> <20050112210945.GN24518@redhat.com> <20050112214108.GA13801@kroah.com> Message-ID: <20050112220142.GO24518@redhat.com> On Wed, Jan 12, 2005 at 01:41:08PM -0800, Greg KH wrote: > On Wed, Jan 12, 2005 at 04:09:45PM -0500, Dave Jones wrote: > > On Wed, Jan 12, 2005 at 12:50:51PM -0800, Roland Dreier wrote: > > > Hi Greg, > > > > > > Now that debugfs is merged into Linus's tree, I'm looking at using it > > > to replace the IPoIB debugging pseudo-filesystem (ipoib_debugfs). Is > > > there any guidance on what the structure of debugfs should look like? > > > Right now I'm planning on putting all the debug info files under an > > > ipoib/ top level directory. Does that sound reasonable? > > > > How about mirroring the toplevel kernel source structure ? > > > > Ie, you'd make drivers/infiniband/ulp/ipoib ? > > But who would be in charge of createing the "drivers/" subdirectory? > debugfs can't handle "/" in a directory name, like procfs does. maybe it should ? > > It could get ugly quickly without some structure at least to > > the toplevel dir. > I say ipoib/ is fine, remember, this is for debugging stuff, it will > quickly get ugly anyway :) with no heirarchy, what happens when two drivers want to make the same directory / filenames ? Dave From roland at topspin.com Wed Jan 12 14:13:57 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 14:13:57 -0800 Subject: [openib-general] question In-Reply-To: (Ronald G. Minnich's message of "Wed, 12 Jan 2005 15:00:19 -0700 (MST)") References: Message-ID: <52u0pms3bu.fsf@topspin.com> Ronald> I am ins'moding everything on a bproc master node, and I Ronald> see ib0 when I'm done. Ronald> Same on a slave node, and no ib0. Ronald> What does the correct operation of all this depend on? I Ronald> am hoping there is not some daemon required, just Ronald> checking. Or is there some thing I might have gotten Ronald> wrong? There is no daemon required. If you have ib_mthca and ib_ipoib loaded, the IPoIB interfaces should be created (assuming mthca finds some devices). When you load ib_mthca on the slave node, is there anything in /sys/class/infiniband? If not, can you build with CONFIG_INFINIBAND_MTHCA_DEBUG=y and post the kernel output when you load ib_mthca? Thanks, Roland From rminnich at lanl.gov Wed Jan 12 14:22:28 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Wed, 12 Jan 2005 15:22:28 -0700 (MST) Subject: [openib-general] question In-Reply-To: <52u0pms3bu.fsf@topspin.com> References: <52u0pms3bu.fsf@topspin.com> Message-ID: On Wed, 12 Jan 2005, Roland Dreier wrote: > When you load ib_mthca on the slave node, is there anything in > /sys/class/infiniband? If not, can you build with > CONFIG_INFINIBAND_MTHCA_DEBUG=y and post the kernel output when you > load ib_mthca? /sys/class/infiniband is empty. I'll rebuild. thanks ron From roland at topspin.com Wed Jan 12 14:43:55 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 14:43:55 -0800 Subject: [openib-general] question In-Reply-To: (Ronald G. Minnich's message of "Wed, 12 Jan 2005 15:22:28 -0700 (MST)") References: <52u0pms3bu.fsf@topspin.com> Message-ID: <52pt0as1xw.fsf@topspin.com> Ronald> /sys/class/infiniband is empty. I'll rebuild. Great. Another thing to check is whether your HCA shows up on the PCI bus with lspci at all. The symptom of empty sysfs directory means either mthca isn't seeing your HCA or the initialization is failing. - R. From greg at kroah.com Wed Jan 12 14:16:33 2005 From: greg at kroah.com (Greg KH) Date: Wed, 12 Jan 2005 14:16:33 -0800 Subject: [openib-general] Re: debugfs directory structure In-Reply-To: <20050112220142.GO24518@redhat.com> References: <52d5watlqs.fsf@topspin.com> <20050112210945.GN24518@redhat.com> <20050112214108.GA13801@kroah.com> <20050112220142.GO24518@redhat.com> Message-ID: <20050112221632.GA14230@kroah.com> On Wed, Jan 12, 2005 at 05:01:43PM -0500, Dave Jones wrote: > On Wed, Jan 12, 2005 at 01:41:08PM -0800, Greg KH wrote: > > On Wed, Jan 12, 2005 at 04:09:45PM -0500, Dave Jones wrote: > > > On Wed, Jan 12, 2005 at 12:50:51PM -0800, Roland Dreier wrote: > > > > Hi Greg, > > > > > > > > Now that debugfs is merged into Linus's tree, I'm looking at using it > > > > to replace the IPoIB debugging pseudo-filesystem (ipoib_debugfs). Is > > > > there any guidance on what the structure of debugfs should look like? > > > > Right now I'm planning on putting all the debug info files under an > > > > ipoib/ top level directory. Does that sound reasonable? > > > > > > How about mirroring the toplevel kernel source structure ? > > > > > > Ie, you'd make drivers/infiniband/ulp/ipoib ? > > > > But who would be in charge of createing the "drivers/" subdirectory? > > debugfs can't handle "/" in a directory name, like procfs does. > > maybe it should ? Right now debugfs is dentry based, not string based. If someone wants to send me patches to change it, I'll reconsider it :) > > > It could get ugly quickly without some structure at least to > > > the toplevel dir. > > I say ipoib/ is fine, remember, this is for debugging stuff, it will > > quickly get ugly anyway :) > > with no heirarchy, what happens when two drivers want to make > the same directory / filenames ? The second call will fail. Code should always check return values, right? thanks, greg k-h From rminnich at lanl.gov Wed Jan 12 15:03:11 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Wed, 12 Jan 2005 16:03:11 -0700 (MST) Subject: [openib-general] question In-Reply-To: <52pt0as1xw.fsf@topspin.com> References: <52u0pms3bu.fsf@topspin.com> <52pt0as1xw.fsf@topspin.com> Message-ID: life is now good, it was a script error (my mistake) for starting up the bproc nodes. I've got ipoib on my opteron cluster, with 96-port switches running in hierarchical mode, for the first time with openib. This is really great. Thanks again to this list and the people who wrote the code. I'm looking forward to running mpi over ipoib soon. BTW: I've not kept up with pci at all, and have assumed that MSI is a pci-e thing, not available on PCIX, is that right or wrong? I had never heard of MSI before pci-e. ron From tduffy at sun.com Wed Jan 12 15:07:58 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 12 Jan 2005 15:07:58 -0800 Subject: [openib-general] Re: mstflint - test1 In-Reply-To: <20050112105156.GA22372@mellanox.co.il> References: <1105470345.14894.31.camel@duffman> <20050111193455.GC13436@mellanox.co.il> <20050112105156.GA22372@mellanox.co.il> Message-ID: <1105571278.16635.46.camel@duffman> On Wed, 2005-01-12 at 12:51 +0200, Michael S. Tsirkin wrote: > OK. > Tom, here's a simple test. > After this we will know for sure whether mmap works, or not. > I hard-coded the physical memory offset to > 1ff00100000 (this seems to be what you have), you can find out the real offset > for the first resource from lspci -vv or from cat /proc/iomem. > > You have to be root to run. Bummer... Bus error (core dumped) tat:~# strace ./mstflint-test execve("./mstflint-test", ["./mstflint-test"], [/* 14 vars */]) = 0 uname({sys="Linux", node="tat", ...}) = 0 brk(0) = 0x22000 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/etc/ld.so.preload", O_RDONLY) = -1 ENOENT (No such file or directory) open("/etc/ld.so.cache", O_RDONLY) = 3 fstat64(3, {st_mode=S_IFREG|0644, st_size=53602, ...}) = 0 mmap(NULL, 53602, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7002c000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libc.so.6", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\1\316"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=1291948, ...}) = 0 mmap(NULL, 1361864, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x7003c000 mprotect(0x70170000, 100296, PROT_NONE) = 0 mmap(0x7017c000, 49152, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, 3, 0x130000) = 0x7017c000 mmap(0x70188000, 1992, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x70188000 close(3) = 0 munmap(0x7002c000, 53602) = 0 open("/dev/mem", O_RDWR|O_SYNC|O_LARGEFILE) = 3 mmap2(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x1ff00100) = 0x7018c000 --- SIGBUS (Bus error) @ 0 (0) --- I added a sleep right after mmap so I could look at the proc maps, and this is what I saw: tat:~# cat /proc/7234/maps 00010000-00012000 r-xp 00000000 08:01 749542 /root/mstflint-test 00020000-00022000 rwxp 00000000 08:01 749542 /root/mstflint-test 70000000-7001a000 r-xp 00000000 08:01 700792 /lib/ld-2.3.2.so 70028000-7002a000 rwxp 00018000 08:01 700792 /lib/ld-2.3.2.so 7003c000-70170000 r-xp 00000000 08:01 700795 /lib/libc-2.3.2.so 70170000-7017c000 ---p 00134000 08:01 700795 /lib/libc-2.3.2.so 7017c000-70188000 rwxp 00130000 08:01 700795 /lib/libc-2.3.2.so 70188000-7018a000 rwxp 70188000 00:00 0 7018c000-7028c000 rw-s 1ff00100000 00:0d 316 /dev/mem efffe000-f0000000 rw-p efffe000 00:00 0 If there is a problem with mmap(/dev/mem), I will see if anybody has a clue on sparclinux at vger. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From iod00d at hp.com Wed Jan 12 15:20:45 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 12 Jan 2005 15:20:45 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050112003745.GA14042@mellanox.co.il> References: <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050111064435.GF6198@esmail.cup.hp.com> <52d5wbyfke.fsf@topspin.com> <20050111211750.GH10342@esmail.cup.hp.com> <52llazwsnn.fsf@topspin.com> <20050111232608.GA11782@esmail.cup.hp.com> <20050112003745.GA14042@mellanox.co.il> Message-ID: <20050112232045.GD15659@esmail.cup.hp.com> On Wed, Jan 12, 2005 at 02:37:45AM +0200, Michael S. Tsirkin wrote: > > That's the beauty of bcm57xx. The DMA/Intr ordering is handled by passing > > tags back of forth - so the NIC knows which status block the host saw > > on the current interrupt. It might result in a spurious interrupt > > on occasion but very portable IMHO. > > Does this mean that after MSI wa asserted, and before status is passed > back, no more messages of the same kind are sent? No more MSI are sent until the host ACKs it with a write. The ACK "msg" (MMIO Write) also contains the tag of the status block that was seen by the host. grant From iod00d at hp.com Wed Jan 12 15:23:02 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 12 Jan 2005 15:23:02 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050112003745.GA14042@mellanox.co.il> References: <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050111064435.GF6198@esmail.cup.hp.com> <52d5wbyfke.fsf@topspin.com> <20050111211750.GH10342@esmail.cup.hp.com> <52llazwsnn.fsf@topspin.com> <20050111232608.GA11782@esmail.cup.hp.com> <20050112003745.GA14042@mellanox.co.il> Message-ID: <20050112232302.GE15659@esmail.cup.hp.com> On Wed, Jan 12, 2005 at 02:37:45AM +0200, Michael S. Tsirkin wrote: > > That's the beauty of bcm57xx. The DMA/Intr ordering is handled by passing > > tags back of forth - so the NIC knows which status block the host saw > > on the current interrupt. It might result in a spurious interrupt > > on occasion but very portable IMHO. > > Does this mean that after MSI wa asserted, and before status is passed > back, no more messages of the same kind are sent? BTW, ideally, the card will DMA status back and then "chase" the status DMA with an MSI. Thus the status is guaranteed to be visible before the MSI is delivered. bcm5700 takes that a step further by using "tags" to guarantee ordering was preserved. grant From iod00d at hp.com Wed Jan 12 15:25:42 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 12 Jan 2005 15:25:42 -0800 Subject: [openib-general] question In-Reply-To: References: <52u0pms3bu.fsf@topspin.com> <52pt0as1xw.fsf@topspin.com> Message-ID: <20050112232542.GF15659@esmail.cup.hp.com> On Wed, Jan 12, 2005 at 04:03:11PM -0700, Ronald G. Minnich wrote: > BTW: I've not kept up with pci at all, and have assumed that MSI is a > pci-e thing, not available on PCIX, is that right or wrong? I had never > heard of MSI before pci-e. PCI 2.2 introduced MSI. ie 1998 or so. not sure when MSI-X was introduced. grant From rminnich at lanl.gov Wed Jan 12 15:31:20 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Wed, 12 Jan 2005 16:31:20 -0700 (MST) Subject: [openib-general] question In-Reply-To: <20050112232542.GF15659@esmail.cup.hp.com> References: <52u0pms3bu.fsf@topspin.com> <52pt0as1xw.fsf@topspin.com> <20050112232542.GF15659@esmail.cup.hp.com> Message-ID: On Wed, 12 Jan 2005, Grant Grundler wrote: > PCI 2.2 introduced MSI. ie 1998 or so. > not sure when MSI-X was introduced. that's the problem with working with old PCI books. Darn it. ron From iod00d at hp.com Wed Jan 12 15:39:31 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 12 Jan 2005 15:39:31 -0800 Subject: [openib-general] question In-Reply-To: References: <52u0pms3bu.fsf@topspin.com> <52pt0as1xw.fsf@topspin.com> <20050112232542.GF15659@esmail.cup.hp.com> Message-ID: <20050112233931.GG15659@esmail.cup.hp.com> On Wed, Jan 12, 2005 at 04:31:20PM -0700, Ronald G. Minnich wrote: > > PCI 2.2 introduced MSI. ie 1998 or so. > > that's the problem with working with old PCI books. Darn it. google for pci22.pdf yeilds: http://cmclab.rice.edu/projects/giganic/datasheets/PCI/SPECS/Pci22.pdf and http://www.singlix.org/trdos/PCI22.pdf grant From rminnich at lanl.gov Wed Jan 12 16:09:48 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Wed, 12 Jan 2005 17:09:48 -0700 (MST) Subject: [openib-general] question In-Reply-To: <20050112233931.GG15659@esmail.cup.hp.com> References: <52u0pms3bu.fsf@topspin.com> <52pt0as1xw.fsf@topspin.com> <20050112232542.GF15659@esmail.cup.hp.com> <20050112233931.GG15659@esmail.cup.hp.com> Message-ID: On Wed, 12 Jan 2005, Grant Grundler wrote: > > http://cmclab.rice.edu/projects/giganic/datasheets/PCI/SPECS/Pci22.pdf > and > http://www.singlix.org/trdos/PCI22.pdf yikes. That's cool. They used to charge for it, I think all my copies are bootleg. Wait, was the microphone on when I said that? I was taken out of context! ron From iod00d at hp.com Wed Jan 12 16:29:49 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 12 Jan 2005 16:29:49 -0800 Subject: [openib-general] question In-Reply-To: References: <52u0pms3bu.fsf@topspin.com> <52pt0as1xw.fsf@topspin.com> <20050112232542.GF15659@esmail.cup.hp.com> <20050112233931.GG15659@esmail.cup.hp.com> Message-ID: <20050113002949.GI15659@esmail.cup.hp.com> On Wed, Jan 12, 2005 at 05:09:48PM -0700, Ronald G. Minnich wrote: > yikes. That's cool. They used to charge for it... Even found pci23.pdf... www.laogu.com/download/pci23.pdf grant From bob at pantasys.com Wed Jan 12 17:35:40 2005 From: bob at pantasys.com (Bob Lee) Date: Wed, 12 Jan 2005 17:35:40 -0800 Subject: [openib-general] Simple user level verb work Message-ID: <20050113013540.GG9379@Baruch.pantasys.com> All, I'm using the current Mellanox software release. The goal is to do RDMA between two nodes. I've looked at the code for perf_main, and the OSU MPI implementation. Currently, my attempt to use the HCA die attempting to create the queue pair. From all I can tell, I mimic the initialization code up to that point, but get the following error message: Max. SG size exceeds capabilities The question is, I assume this has to do with the scatter gather count that the HCA can support. HCA cap lists max_num_sg_ent = 28 and max_num_sg_ent_rd = 0. The initialization values for the queue pair max_sg_size_rq and max_sg_size_sq are set to 8. This is using user level verbs interface, but right now, it is the only level that supports both user and kernel level interfaces. Alternatively, are there any other very straight forward examples of setting up an RDMA connection (NOTE: perf_main hasn't worked so far -- at least in being straight forward). thanks in advance - bob From iod00d at hp.com Wed Jan 12 17:34:06 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 12 Jan 2005 17:34:06 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52mzvo52a0.fsf@topspin.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> Message-ID: <20050113013406.GA16755@esmail.cup.hp.com> On Tue, Jan 04, 2005 at 01:10:15PM -0800, Roland Dreier wrote: > Josh> I'm seeing about 364 MB/s between 2 PCIe Xeon 3.2GHz boxes > Josh> using netperf-2.3pl1. > > Are you using MSI-X? To use it, set CONFIG_PCI_MSI=y when you build > your kernel and either "modprobe ib_mthca msi_x=1"... Good news: Topspin firmware 3.3.2 can run netperf w/MSI-X on ia64 too Bad news: I'm getting weak perf #s on the ZX1 boxes (~1580 Mbps == ~200MB/s) This is with MSI-X enabled on both systems. RX2600 sending TCP_Stream packets to RX4640 via topspin 12port switch. Rx2600 has "Low Profile" (Cougarcub) and rx4640 has "Cougar" installed in "dual rope" slots. /opt/netperf/netperf -l 60 -H 10.0.1.81 -t TCP_STREAM -i 5,2 -I 99,5 -- -m 8192 -s 262144 -S 262144 TCP STREAM TEST to 10.0.1.81 : +/-2.5% @ 99% conf. Recv Send Send Socket Socket Message Elapsed Size Size Size Time Throughput bytes bytes bytes secs. 10^6bits/sec 262142 262142 8192 60.00 1588.33 q-syscollect on netperf client (RX2600, dual 1.5Ghz): ionize:~/.q# q-view kernel-cpu1.info#0 | less Flat profile of CPU_CYCLES in kernel-cpu1.hist#0: Each histogram sample counts as 1.00034m seconds % time self cumul calls self/call tot/call name 25.09 14.98 14.98 80.7k 186u 186u default_idle 9.73 5.81 20.79 35.9M 162n 162n _spin_unlock_irqrestore 5.63 3.36 24.15 27.8M 121n 136n ipt_do_table 4.27 2.55 26.70 15.0M 170n 170n do_csum 3.49 2.08 28.78 6.95M 300n 300n __copy_user 2.66 1.59 30.37 14.3M 111n 673n nf_iterate 2.63 1.57 31.94 5.82M 270n 729n tcp_transmit_skb 2.59 1.54 33.49 68.5M 22.5n 33.2n local_bh_enable 2.33 1.39 34.88 6.79M 205n - tcp_packet 1.83 1.09 35.97 355k 3.08u 32.4u tcp_sendmsg 1.57 0.94 36.91 2.32M 405n 2.11u ipoib_ib_completion 1.48 0.88 37.79 5.92M 149n 162n ip_queue_xmit 1.46 0.87 38.67 2.46M 354n 2.41u mthca_eq_int 1.20 0.72 39.39 6.93M 104n 376n ip_conntrack_in 1.17 0.70 40.08 7.52M 92.6n 92.6n time_interpolator_get_o ffset ... And on the "netserver" (RX4640, 4 1.3Ghz) side: t profile of CPU_CYCLES in kernel-cpu3.hist#0: Each histogram sample counts as 551.305u seconds % time self cumul calls self/call tot/call name 34.69 18.97 18.97 16.6M 1.15u 1.15u do_csum 7.58 4.15 23.12 19.4M 213n 213n _spin_unlock_irqrestore 6.67 3.65 26.76 61.4k 59.4u 59.4u default_idle 5.33 2.91 29.68 22.3M 131n 149n ipt_do_table 3.02 1.65 31.33 1.93M 856n 8.35u ipoib_ib_completion 2.73 1.49 32.82 6.45M 231n 231n __copy_user 2.61 1.43 34.25 11.2M 128n 1.32u nf_iterate 2.30 1.26 35.51 5.55M 227n - tcp_packet 2.06 1.12 36.63 51.3M 21.9n 25.4n local_bh_enable 1.97 1.08 37.71 5.51M 195n 273n tcp_v4_rcv 1.43 0.78 38.49 1.77M 443n 9.63u mthca_eq_int 1.35 0.74 39.23 5.28M 139n 1.93u netif_receive_skb 1.19 0.65 39.88 5.60M 116n 1.59u ip_conntrack_in 1.14 0.62 40.50 5.53M 113n 2.92u tcp_rcv_established 1.03 0.56 41.06 5.31M 106n 135n ip_route_input 1.02 0.56 41.62 5.24M 107n 1.80u ip_rcv 0.91 0.50 42.12 5.43M 91.6n 369n ip_local_deliver_finish 0.90 0.49 42.61 5.51M 89.7n 89.7n netif_rx 0.89 0.49 43.10 1.93M 253n 9.13u handle_IRQ_event 0.85 0.46 43.56 33.7M 13.8n 13.8n _read_lock_bh ... _spin_unlock_irqrestore is a clue we are spending time in interrupt handlers and that isn't getting measured. top was reporting "netserver" consuming ~80% of one CPU and netperf consuming ~60% of one CPU. Other cpu's were idle on both boxes. Something else is slowing things down...I know these boxes are capable of 800-900 MB/s on the PCI bus. hth, grant From davidm at napali.hpl.hp.com Wed Jan 12 17:39:38 2005 From: davidm at napali.hpl.hp.com (David Mosberger) Date: Wed, 12 Jan 2005 17:39:38 -0800 Subject: [ia64 R&D] Re: [openib-general] ip over ib throughtput In-Reply-To: <20050113013406.GA16755@esmail.cup.hp.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050113013406.GA16755@esmail.cup.hp.com> Message-ID: <16869.53594.77274.679904@napali.hpl.hp.com> >>>>> On Wed, 12 Jan 2005 17:34:06 -0800, Grant Grundler said: Grant> _spin_unlock_irqrestore is a clue we are spending time in Grant> interrupt handlers and that isn't getting measured. You can use "q-syscollect -i" to avoid that problem (see the q-tools/README for details). --david From roland at topspin.com Wed Jan 12 18:37:51 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 12 Jan 2005 18:37:51 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050113013406.GA16755@esmail.cup.hp.com> (Grant Grundler's message of "Wed, 12 Jan 2005 17:34:06 -0800") References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050113013406.GA16755@esmail.cup.hp.com> Message-ID: <52hdlmrr40.fsf@topspin.com> Grant> Good news: Topspin firmware 3.3.2 can run netperf w/MSI-X Grant> on ia64 too Bad news: I'm getting weak perf #s on the ZX1 Grant> boxes (~1580 Mbps == ~200MB/s) This may or may not help on your ia64 systems, but one thing I've found helpful for getting the highest IPoIB performance is to bind the HCA's interrupt handlers to one CPU and use taskset to bind the netperf/netserver processes to a different CPU. For example I use 1 for the irq's smp_affinity mask and then use 4 for the taskset mask. (This is on a dual Xeon system with hyperthreading, so logical CPUs 0 and 1 are the same physical core -- so the mask 4 uses the second physical CPU). - R. From mlleinin at hpcn.ca.sandia.gov Wed Jan 12 19:24:37 2005 From: mlleinin at hpcn.ca.sandia.gov (Matt Leininger) Date: Wed, 12 Jan 2005 19:24:37 -0800 Subject: [openib-general] Gentoo has OpenIB code Message-ID: <1105586677.2787.887.camel@localhost> Gentoo seems to be the latest distribution that contains the OpenIB code. Gentoo is using the 2.6.11-rc1 as the "development-sources" kernel. It's great to see the OpenIB code trickling down to the Linux distros. Nice work everyone. - Matt From jjengla at sandia.gov Wed Jan 12 20:25:37 2005 From: jjengla at sandia.gov (Josh England) Date: Wed, 12 Jan 2005 20:25:37 -0800 Subject: [openib-general] Simple user level verb work In-Reply-To: <20050113013540.GG9379@Baruch.pantasys.com> References: <20050113013540.GG9379@Baruch.pantasys.com> Message-ID: <1105590337.21102.4.camel@localhost> Look at: usr/mellanox/src/HCA/examples/rctest/rctp.c -JE On Wed, 2005-01-12 at 17:35 -0800, Bob Lee wrote: > All, > I'm using the current Mellanox software release. The goal is > to do RDMA between two nodes. I've looked at the code for > perf_main, and the OSU MPI implementation. Currently, my attempt > to use the HCA die attempting to create the queue pair. From > all I can tell, I mimic the initialization code up to that point, > but get the following error message: > > Max. SG size exceeds capabilities > > The question is, I assume this has to do with the scatter gather > count that the HCA can support. HCA cap lists max_num_sg_ent = 28 > and max_num_sg_ent_rd = 0. The initialization values for the > queue pair max_sg_size_rq and max_sg_size_sq are set to 8. > > This is using user level verbs interface, but right now, it > is the only level that supports both user and kernel level interfaces. > Alternatively, are there any other very straight forward examples > of setting up an RDMA connection (NOTE: perf_main hasn't worked > so far -- at least in being straight forward). > > thanks in advance > - bob > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general > From mst at mellanox.co.il Thu Jan 13 00:44:16 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 13 Jan 2005 10:44:16 +0200 Subject: [openib-general] Re: mstflint - test1 In-Reply-To: <1105571278.16635.46.camel@duffman> References: <1105571278.16635.46.camel@duffman> Message-ID: <20050113084416.GB31088@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: mstflint - test1": > On Wed, 2005-01-12 at 12:51 +0200, Michael S. Tsirkin wrote: > > OK. > > Tom, here's a simple test. > > After this we will know for sure whether mmap works, or not. > > I hard-coded the physical memory offset to > > 1ff00100000 (this seems to be what you have), you can find out the > > real offset > > for the first resource from lspci -vv or from cat /proc/iomem. > > > > You have to be root to run. > > Bummer... > > Bus error (core dumped) > > tat:~# strace ./mstflint-test > execve("./mstflint-test", ["./mstflint-test"], [/* 14 vars */]) = 0 > uname({sys="Linux", node="tat", ...}) = 0 > brk(0) = 0x22000 > access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or > directory) > open("/etc/ld.so.preload", O_RDONLY) = -1 ENOENT (No such file or > directory) > open("/etc/ld.so.cache", O_RDONLY) = 3 > fstat64(3, {st_mode=S_IFREG|0644, st_size=53602, ...}) = 0 > mmap(NULL, 53602, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7002c000 > close(3) = 0 > access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or > directory) > open("/lib/libc.so.6", O_RDONLY) = 3 > read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\2\0\0\0\1\0\1\316"..., > 512) = 512 > fstat64(3, {st_mode=S_IFREG|0644, st_size=1291948, ...}) = 0 > mmap(NULL, 1361864, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x7003c000 > mprotect(0x70170000, 100296, PROT_NONE) = 0 > mmap(0x7017c000, 49152, PROT_READ|PROT_WRITE|PROT_EXEC, > MAP_PRIVATE|MAP_FIXED, 3, 0x130000) = 0x7017c000 > mmap(0x70188000, 1992, PROT_READ|PROT_WRITE|PROT_EXEC, > MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x70188000 > close(3) = 0 > munmap(0x7002c000, 53602) = 0 > open("/dev/mem", O_RDWR|O_SYNC|O_LARGEFILE) = 3 > mmap2(NULL, 1048576, PROT_READ|PROT_WRITE, MAP_SHARED, 3, 0x1ff00100) = > 0x7018c000 > --- SIGBUS (Bus error) @ 0 (0) --- > > I added a sleep right after mmap so I could look at the proc maps, and > this is what I saw: > > tat:~# cat /proc/7234/maps > 00010000-00012000 r-xp 00000000 08:01 749542 > /root/mstflint-test > 00020000-00022000 rwxp 00000000 08:01 749542 > /root/mstflint-test > 70000000-7001a000 r-xp 00000000 08:01 700792 > /lib/ld-2.3.2.so > 70028000-7002a000 rwxp 00018000 08:01 700792 > /lib/ld-2.3.2.so > 7003c000-70170000 r-xp 00000000 08:01 700795 > /lib/libc-2.3.2.so > 70170000-7017c000 ---p 00134000 08:01 700795 > /lib/libc-2.3.2.so > 7017c000-70188000 rwxp 00130000 08:01 700795 > /lib/libc-2.3.2.so > 70188000-7018a000 rwxp 70188000 00:00 0 > 7018c000-7028c000 rw-s 1ff00100000 00:0d 316 > /dev/mem > efffe000-f0000000 rw-p efffe000 00:00 0 > > If there is a problem with mmap(/dev/mem), I will see if anybody has a > clue on sparclinux at vger. > > -tduffy So it seems (I assume 1ff00100000 *is* the resource address). Also, strace seems to be broken: we are passing the last parameter 0x1ff00100000ULL explicitly, but strace shows 0x1ff00100. mst From tziporet at mellanox.co.il Thu Jan 13 01:02:04 2005 From: tziporet at mellanox.co.il (Tziporet Koren) Date: Thu, 13 Jan 2005 11:02:04 +0200 Subject: [openib-general] has anyone tried MSI-X on Opteron? Message-ID: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> Hi, We are seeing problems (not getting the interrupt) when trying to work with MSIX on Opteron with Fedora core3. Has anyone tried this? Thanks, Tziporet -------------- next part -------------- An HTML attachment was scrubbed... URL: From cdunwoody at graphstream.com Thu Jan 13 01:38:01 2005 From: cdunwoody at graphstream.com (Craig Dunwoody) Date: Thu, 13 Jan 2005 01:38:01 -0800 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: Your message of "Thu, 13 Jan 2005 11:02:04 +0200." <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> Message-ID: <200501130938.j0D9c1hc003973@n20.hq.graphstream.com> tziporet at mellanox.co.il writes: > We are seeing problems (not getting the interrupt) when trying to work with > MSIX on Opteron with Fedora core3. > Has anyone tried this? I did try: Dual-Opteron system: Tyan S2885ANRF mainboard, BIOS v2.02 Fedora Core 2 + recent full yum update unpatched kernel.org 2.6.9 kernel Mellanox fw-23108-rel-3_3_2 Mellanox vapi-linux-4.0.1-rc5 If I did not enable MSI-X in the kernel build, all was fine. If I enabled MSI-X in the kernel build, mod_thh would fail to load. Craig Dunwoody cdunwoody at graphstream.com 650-906-8261 (cell) From mst at mellanox.co.il Thu Jan 13 01:45:32 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 13 Jan 2005 11:45:32 +0200 Subject: [openib-general] [PATCH][5/18] InfiniBand/mthca: add needed rmb() in event queue poll In-Reply-To: <20051121347.vxtR3merv690zIQY@topspin.com> References: <20051121347.kR765yQEXhqhoLHL@topspin.com> <20051121347.vxtR3merv690zIQY@topspin.com> Message-ID: <20050113094532.GA31298@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "[openib-general] [PATCH][5/18] InfiniBand/mthca: add needed rmb() in event queue poll": > Add an rmb() between checking the ownership bit of an event queue > entry and reading the contents of the EQE. Without this barrier, the > CPU could read stale contents of the EQE before HW writes the EQE but > have the read of the ownership bit reordered until after HW finishes > writing, which leads to the driver processing an incorrect event. This > was actually observed to happen when multiple completion queues are in > heavy use on an IBM JS20 PowerPC 970 system. > > Also explain the existing rmb() in completion queue poll (there for > the same reason) and slightly improve debugging output. > > Signed-off-by: Roland Dreier > > --- linux/drivers/infiniband/hw/mthca/mthca_cq.c (revision 1437) > +++ linux/drivers/infiniband/hw/mthca/mthca_cq.c (revision 1439) > @@ -1,5 +1,5 @@ > /* > - * Copyright (c) 2004 Topspin Communications. All rights reserved. > + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. > * > * This software is available to you under a choice of one of two > * licenses. You may choose to be licensed under the terms of the GNU > @@ -391,6 +391,10 @@ > if (!next_cqe_sw(cq)) > return -EAGAIN; > > + /* > + * Make sure we read CQ entry contents after we've checked the > + * ownership bit. > + */ > rmb(); > > cqe = get_cqe(cq, cq->cons_index); > @@ -768,7 +772,8 @@ > u32 *ctx = MAILBOX_ALIGN(mailbox); > int j; > > - printk(KERN_ERR "context for CQN %x\n", cq->cqn); > + printk(KERN_ERR "context for CQN %x (cons index %x, next sw %d)\n", > + cq->cqn, cq->cons_index, next_cqe_sw(cq)); > for (j = 0; j < 16; ++j) > printk(KERN_ERR "[%2x] %08x\n", j * 4, be32_to_cpu(ctx[j])); > } > --- linux/drivers/infiniband/hw/mthca/mthca_eq.c (revision 1437) > +++ linux/drivers/infiniband/hw/mthca/mthca_eq.c (revision 1439) > @@ -1,5 +1,5 @@ > /* > - * Copyright (c) 2004 Topspin Communications. All rights reserved. > + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. > * > * This software is available to you under a choice of one of two > * licenses. You may choose to be licensed under the terms of the GNU > @@ -240,6 +240,12 @@ > int set_ci = 0; > eqe = get_eqe(eq, eq->cons_index); > > + /* > + * Make sure we read EQ entry contents after we've > + * checked the ownership bit. > + */ > + rmb(); > + > switch (eqe->type) { > case MTHCA_EVENT_TYPE_COMP: > disarm_cqn = be32_to_cpu(eqe->event.comp.cqn) & 0xffffff; Since we are using the eqe here, it seems that read_barrier_depends shall be sufficient (as well as in the cq case)? However, I see that read_barrier_depends is a nop on ppc, and the comment indicates that problems were seen on ppc 970. What gives? do I misunderstand what a dependency is? MST From spoole at lanl.gov Thu Jan 13 02:28:29 2005 From: spoole at lanl.gov (Stephen Poole) Date: Thu, 13 Jan 2005 03:28:29 -0700 Subject: [openib-general] Gentoo has OpenIB code In-Reply-To: <1105586677.2787.887.camel@localhost> References: <1105586677.2787.887.camel@localhost> Message-ID: Actually fantastic work everyone. Steve... At 7:24 PM -0800 1/12/05, Matt Leininger wrote: >Gentoo seems to be the latest distribution that contains the OpenIB >code. Gentoo is using the 2.6.11-rc1 as the "development-sources" >kernel. It's great to see the OpenIB code trickling down to the Linux >distros. Nice work everyone. > > - Matt > >_______________________________________________ >openib-general mailing list >openib-general at openib.org >http://openib.org/mailman/listinfo/openib-general > >To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -- Steve Poole (spoole at lanl.gov) Office: 505.665.9662 Los Alamos National Laboratory Cell: 505.699.3807 CCN - Special Projects / Advanced Development Fax: 505.665.7793 P.O. Box 1663, MS B255 Los Alamos, NM. 87545 03149801S From shaharf at voltaire.com Thu Jan 13 04:02:51 2005 From: shaharf at voltaire.com (shaharf) Date: Thu, 13 Jan 2005 14:02:51 +0200 Subject: [openib-general] Some Missing Features from mthca/userMADaccess Message-ID: Hal and Sean, sorry for now responding earlier, but I was sick for few days. On Tue, 2005-01-11 at 12:15, Sean Hefty wrote: > An issue with attribute filtering is that is results in an O(lg n) > algorithm being used to route MADs to the correct client. Routing > based on class/method can be done in O(1), since the range of > classes/methods is substantially smaller than that of attributes. > > Adding an attribute mask isn't overly difficult, it just wasn't felt > that it was necessary. Right. It was a combination of the implementation inefficiency but more significantly the lack of a compelling need but... [SHAHAR] Attributes filtering can be done with O(1). First you don't have to support the entire theoretical range. Currently less then 256 attributes are used per class. I don't see this changing so fast... . Even if you want to support the entire range, you can dedicate an attribute table per class (per port) or, if the memory consumption is too big, you can use a small (open) hash table, and when taking into account that very few attributes are used in practice, you will have O(1) algorithm. Such lookups can be made very efficient. But even more important then that, what is the use for methods filtering? Doing things just because they looks easy is very bad. Currently it seems that the entire filtering scheme is useless. Am I wrong? Does someone have a good justification for it? Do you see a way to handle the different SA client registrations for events (InformInfo) where an incoming Report could go to multiple clients with the current approach ? Even adding attribute ID is insufficient as there would need to be some sense of what reports were being registered for (perhaps by TrapNumber but one could support even more granularity including ProducerType and other fields in the subscription (InformInfo) request). I know no OpenIB code is currently doing this, but shouldn't this be supported ? [SHAHAR] Traps may be an unresolved issue. I guess we have to handle it, but I am not sure that umad based filtering is the correct mechanism. Surely, there is no justification to give up the copy less approach and to switch over to completely copy full approach (i.e. snooping) just for the corner cases. This is not how you achieve optimized systems. You have to keep your main paths very optimized, and handle your corner cases in other mechanism that may be less optimized. For example, we can implement some sort of traps filtering in the umad library. Not everything must be in the kernel. Lean and mean, isn't it the approach (at least in the kernel)? Shahar From halr at voltaire.com Thu Jan 13 05:43:35 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 13 Jan 2005 08:43:35 -0500 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> Message-ID: <1105623814.4649.1674.camel@localhost.localdomain> On Thu, 2005-01-13 at 04:02, Tziporet Koren wrote: > Hi, > > We are seeing problems (not getting the interrupt) when trying to work > with MSIX on Opteron with Fedora core3. > Has anyone tried this? Which FC3 ? I am also using FC3 (for x86_64 dated 11/3) but I installed 2.6.10 and added the OpenIB changes. It is not the latest one mentioned on the list which includes OpenIB; it is the one before that. Is that what you are using ? Is it based on 2.6.10-bk5 ? I do get what could be the same issue when I modprobe mthca with msi_x = 1 on Opteron. The modprobe takes a long time to complete and dmesg shows: ib_mthca: Mellanox InfiniBand HCA driver v0.06-pre (November 8, 2004) ib_mthca: Initializing (0000:04:00.0) ACPI: PCI interrupt 0000:04:00.0[A] -> GSI 27 (level, low) -> IRQ 201 MSI INIT SUCCESS (long delay; several minutes) ib_mthca 0000:02:00.0: Failed to initialize queue pair table, aborting. ib_mthca: probe of 0000:02:00.0 failed with error -16 lspci shows: 02:00.0 InfiniBand: Mellanox Technology MT23108 InfiniHost (rev a1) Subsystem: Mellanox Technology MT23108 InfiniHost Flags: bus master, 66Mhz, medium devsel, latency 64, IRQ 209 Memory at fc500000 (64-bit, non-prefetchable) [size=1M] Memory at ea800000 (64-bit, prefetchable) [size=8M] Memory at e0000000 (64-bit, prefetchable) [size=128M] Capabilities: [40] MSI-X: Enable+ Mask- TabSize=32 Capabilities: [50] Vital Product Data Capabilities: [60] Message Signalled Interrupts: 64bit+ Queue=0/5 Enable- Capabilities: [70] PCI-X non-bridge device. -- Hal From rminnich at lanl.gov Thu Jan 13 07:10:10 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Thu, 13 Jan 2005 08:10:10 -0700 (MST) Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: <200501130938.j0D9c1hc003973@n20.hq.graphstream.com> References: <200501130938.j0D9c1hc003973@n20.hq.graphstream.com> Message-ID: Matt Leininger (spelling) pointed out to me yesterday that the Opteron chip set did not support MSI ... tziporet, which chip set are you using? The fairly standard 8xxx chipset from AMD, or the boards with the Nvidious (oh, well Nvidia) part? What mobo? ron From roland at topspin.com Thu Jan 13 07:32:15 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 13 Jan 2005 07:32:15 -0800 Subject: [openib-general] [PATCH][5/18] InfiniBand/mthca: add needed rmb() in event queue poll In-Reply-To: <20050113094532.GA31298@mellanox.co.il> (Michael S. Tsirkin's message of "Thu, 13 Jan 2005 11:45:32 +0200") References: <20051121347.kR765yQEXhqhoLHL@topspin.com> <20051121347.vxtR3merv690zIQY@topspin.com> <20050113094532.GA31298@mellanox.co.il> Message-ID: <52acrds5ts.fsf@topspin.com> Michael> Since we are using the eqe here, it seems that Michael> read_barrier_depends shall be sufficient (as well as in Michael> the cq case)? Michael> However, I see that read_barrier_depends is a nop on ppc, Michael> and the comment indicates that problems were seen on ppc Michael> 970. What gives? do I misunderstand what a dependency Michael> is? There is no dependency between the EQE ownership field and the rest of the EQE, so read_barrier_depends() is not sufficient. I think you are misunderstanding what a dependency is. The comments in asm-i386/system.h or http://lse.sourceforge.net/locking/wmbdd.html may help clear things up. - R. From roland at topspin.com Thu Jan 13 07:35:06 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 13 Jan 2005 07:35:06 -0800 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> (Tziporet Koren's message of "Thu, 13 Jan 2005 11:02:04 +0200") References: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> Message-ID: <523bx5s5p1.fsf@topspin.com> Tziporet> Hi, We are seeing problems (not getting the interrupt) Tziporet> when trying to work with MSIX on Opteron with Fedora Tziporet> core3. As far as I can tell from reading the data sheet, the standard AMD 8131 PCI-X does not support MSI/MSI-X, so if that's what you are using then MSI-X will not work. I have no information on the nForce4 or other Opteron PCI Express chipsets, but they should support MSI (since it is a mandatory part of the PCI Express spec). The only question is whether they will use the same message address/contents as Intel. If not then updates to the core Linux support are required. - Roland From Andras.Horvath at cern.ch Thu Jan 13 07:43:49 2005 From: Andras.Horvath at cern.ch (Andras.Horvath at cern.ch) Date: Thu, 13 Jan 2005 16:43:49 +0100 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52hdlmtuxn.fsf@topspin.com> References: <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> Message-ID: <20050113154349.GB2351@cern.ch> > That's what I would expect. As far as I know, all FW before 3.3.2 has > bugs with MSI and MSI-X. well, my vendor :) tells me that 3.0.0 is the latest they have and that's almost true since they've shipped some cards with 3.0.2. Anyway, 3.0.0 was pretty stable overnight in two HP rx2600's. However, when I put a card in an rx4640 (four-way thing, same ZX1 chipset as the 2600 ) I got an oops upon modprobe. This is 2.6.10-mm2 (I've compared some diffs with 11-rc1 and nothing relevant seems to have changed). Here's the top of the oops (would you like me to send it all, more details like kernel config etc? to the list, or private?) TIA for any help, Andras ACPI: PCI interrupt for device 0000:41:00.0 disabled iosapic_unregister_intr(4294967295) unbalanced Badness in iosapic_unregister_intr at arch/ia64/kernel/iosapic.c:636 Call Trace: [] show_stack+0x80/0xa0 sp=e0000000064afbd0 bsp=e0000000064a11a0 [] dump_stack+0x30/0x60 sp=e0000000064afda0 bsp=e0000000064a1190 [] iosapic_unregister_intr+0x340/0x3a0 sp=e0000000064afda0 bsp=e0000000064a1138 [] acpi_unregister_gsi+0x20/0x40 sp=e0000000064afda0 bsp=e0000000064a1120 [] acpi_pci_irq_disable+0x180/0x1c0 sp=e0000000064afda0 bsp=e0000000064a10e8 [] pcibios_disable_device+0x20/0x40 sp=e0000000064afdb0 bsp=e0000000064a10d0 [] pci_disable_device+0xc0/0xe0 sp=e0000000064afdb0 bsp=e0000000064a10a8 [] mthca_init_one+0x230/0xd40 [ib_mthca] sp=e0000000064afdc0 bsp=e0000000064a1050 From halr at voltaire.com Thu Jan 13 07:42:20 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 13 Jan 2005 10:42:20 -0500 Subject: [openib-general] userspace/lib[ibverbs mthca]/configure.in nit Message-ID: <1105630940.4649.1694.camel@localhost.localdomain> have the following line: AC_INIT(libsdp, 0.9.0, openib-general at openib.org) Should that be removed ? -- Hal From roland at topspin.com Thu Jan 13 07:49:48 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 13 Jan 2005 07:49:48 -0800 Subject: [openib-general] Re: userspace/lib[ibverbs mthca]/configure.in nit In-Reply-To: <1105630940.4649.1694.camel@localhost.localdomain> (Hal Rosenstock's message of "13 Jan 2005 10:42:20 -0500") References: <1105630940.4649.1694.camel@localhost.localdomain> Message-ID: <52y8exqqg3.fsf@topspin.com> Hal> have the following line: AC_INIT(libsdp, 0.9.0, openib-general at openib.org) Hal> Should that be removed ? It should be corrected to the library name. Thanks. - R. From roland at topspin.com Thu Jan 13 07:57:52 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 13 Jan 2005 07:57:52 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050113154349.GB2351@cern.ch> (Andras Horvath's message of "Thu, 13 Jan 2005 16:43:49 +0100") References: <20050105003001.GD12343@esmail.cup.hp.com> <52zmzo3e22.fsf@topspin.com> <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> Message-ID: <52u0plqq2n.fsf@topspin.com> Andras> However, when I put a card in an rx4640 (four-way thing, Andras> same ZX1 chipset as the 2600 ) I got an oops upon Andras> modprobe. This is 2.6.10-mm2 (I've compared some diffs Andras> with 11-rc1 and nothing relevant seems to have changed). Andras> Here's the top of the oops (would you like me to send it Andras> all, more details like kernel config etc? to the list, or Andras> private?) I'm not sure what's going on. mthca_init_one() is bailing out and disabling the device on the way out, and iosapic_unregister_intr() is warning (not actually an oops, just WARN_ON(1)) because it can't find a valid IRQ number. Does this happen even without MSI turned on? Can you build your drivers with CONFIG_INFINIBAND_MTHCA_DEBUG=y and then do "dmesg -c > /dev/null && modprobe ib_mthca" and send the output of "dmesg"? Don't worry about sending the whole thing to the list, it can't be that giant. Thanks, Roland From cdunwoody at graphstream.com Thu Jan 13 07:58:38 2005 From: cdunwoody at graphstream.com (Craig Dunwoody) Date: Thu, 13 Jan 2005 07:58:38 -0800 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: Your message of "Thu, 13 Jan 2005 08:10:10 MST." Message-ID: <200501131558.j0DFwcBY005242@n20.hq.graphstream.com> Hello Ron, ron writes: > Matt Leininger (spelling) pointed out to me yesterday that the Opteron > chip set did not support MSI Looks to me like MSI is enabled in recent stock FC2 and FC3 2.6.9+ X86_64 kernel builds, so a driver that cannot be told not to use MSI if it is available (as I believe is the case with the current Mellanox vapi-4.0.1 release) would not seem to have a good chance of working on a stock FC2 or FC3 kernel when a AMD-8131 chipset is involved. Craig Dunwoody cdunwoody at graphstream.com 650-906-8261 (cell) From iod00d at hp.com Thu Jan 13 08:31:55 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 13 Jan 2005 08:31:55 -0800 Subject: [openib-general] disable_irq WARN_ON In-Reply-To: <52u0plqq2n.fsf@topspin.com> References: <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> <52u0plqq2n.fsf@topspin.com> Message-ID: <20050113163155.GA19123@esmail.cup.hp.com> On Thu, Jan 13, 2005 at 07:57:52AM -0800, Roland Dreier wrote: > Andras> However, when I put a card in an rx4640 (four-way thing, > Andras> same ZX1 chipset as the 2600 ) I got an oops upon > Andras> modprobe. This is 2.6.10-mm2 (I've compared some diffs > Andras> with 11-rc1 and nothing relevant seems to have changed). ... > I'm not sure what's going on. mthca_init_one() is bailing out and > disabling the device on the way out, and iosapic_unregister_intr() is > warning (not actually an oops, just WARN_ON(1)) because it can't find > a valid IRQ number. I suspect this is a result of mthca_init_one bailing WITHOUT having succesfully called request_irq(). request_irq() implies a call to enable_irq(). The WARN_ON() may be unneccessary since I would expect it to be safe to call disable_irq() multiple times for a given device. I'll ask if that's a reasonable expectation (or not). > Does this happen even without MSI turned on? If MSI were turned on, I would expect the system to MCA (crash hard). He only has firmware rev 3.0.2 on the HCA. As I learned, one needs at least 3.3.2. My advice is to get your vendor to tell you which *mellanox* firmware is safe to use on your HCA if they can't offer you anything newer than 3.0.2. Keep in mind that openib.org is "experimental" and no vendor will officially support it....however they would be smart to informally provide "appropriate resources" (ie newer firmware) so you can do some informal testing using their firmware. grant From robert.j.woodruff at intel.com Thu Jan 13 08:43:40 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Thu, 13 Jan 2005 08:43:40 -0800 Subject: [openib-general] ip over ib throughtput Message-ID: <1AC79F16F5C5284499BB9591B33D6F000345F3F3@orsmsx408> Grant> Good news: Topspin firmware 3.3.2 can run netperf w/MSI-X on ia64 too >Bad news: I'm getting weak perf #s on the ZX1 boxes (~1580 Mbps == ~200MB/s) I found this paper about 10gig ethernet on Itanium where they were not seeing that good of performance and were able to increase it by changing some BIOS setting that controlled PCI-X burst size. Perhaps this might also help IB, although they state in the paper that this seemed to help more with larger MTUs, so with our 2K MTU, not sure if it will help or not. http://www.supercomp.org/sc2003/paperpdfs/pap293.pdf#search='10%20gigabi t%20ethernet%20performance%20on%20Itanium' From halr at voltaire.com Thu Jan 13 08:40:13 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 13 Jan 2005 11:40:13 -0500 Subject: [openib-general] disable_irq WARN_ON In-Reply-To: <20050113163155.GA19123@esmail.cup.hp.com> References: <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> <52u0plqq2n.fsf@topspin.com> <20050113163155.GA19123@esmail.cup.hp.com> Message-ID: <1105634413.4649.1712.camel@localhost.localdomain> On Thu, 2005-01-13 at 11:31, Grant Grundler wrote: > My advice is to get your vendor to tell you which *mellanox* > firmware is safe to use on your HCA if they can't offer you anything > newer than 3.0.2. > > Keep in mind that openib.org is "experimental" and no vendor > will officially support it....however they would be smart to > informally provide "appropriate resources" (ie newer firmware) > so you can do some informal testing using their firmware. In that vein, I would expect that the firmware qualified for a vendor release is not necessarily the same as the one for OpenIB which might be more bleeding edge (it might lag behind some longer QA cycle) and so with that caveat I would hope and expect that a vendor would provide it to you for OpenIB purposes. Running it with a vendor stack would be another matter. -- Hal From iod00d at hp.com Thu Jan 13 08:51:36 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 13 Jan 2005 08:51:36 -0800 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: <1105623814.4649.1674.camel@localhost.localdomain> References: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> <1105623814.4649.1674.camel@localhost.localdomain> Message-ID: <20050113165136.GB19123@esmail.cup.hp.com> On Thu, Jan 13, 2005 at 08:43:35AM -0500, Hal Rosenstock wrote: > lspci shows: > 02:00.0 InfiniBand: Mellanox Technology MT23108 InfiniHost (rev a1) > Subsystem: Mellanox Technology MT23108 InfiniHost > Flags: bus master, 66Mhz, medium devsel, latency 64, IRQ 209 > Memory at fc500000 (64-bit, non-prefetchable) [size=1M] > Memory at ea800000 (64-bit, prefetchable) [size=8M] > Memory at e0000000 (64-bit, prefetchable) [size=128M] > Capabilities: [40] MSI-X: Enable+ Mask- TabSize=32 > Capabilities: [50] Vital Product Data > Capabilities: [60] Message Signalled Interrupts: 64bit+ Queue=0/5 Enable- Please use "lspci -vvs 02:00.0" - this will dump the contents of the MSI address/data regs. grant > Capabilities: [70] PCI-X non-bridge device. > > -- Hal > > > > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general From roland at topspin.com Thu Jan 13 08:58:18 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 13 Jan 2005 08:58:18 -0800 Subject: [openib-general] disable_irq WARN_ON In-Reply-To: <20050113163155.GA19123@esmail.cup.hp.com> (Grant Grundler's message of "Thu, 13 Jan 2005 08:31:55 -0800") References: <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> <52u0plqq2n.fsf@topspin.com> <20050113163155.GA19123@esmail.cup.hp.com> Message-ID: <52llaxqn9x.fsf@topspin.com> Grant> I suspect this is a result of mthca_init_one bailing Grant> WITHOUT having succesfully called request_irq(). Grant> request_irq() implies a call to enable_irq(). The Grant> WARN_ON() may be unneccessary since I would expect it to be Grant> safe to call disable_irq() multiple times for a given Grant> device. I'll ask if that's a reasonable expectation (or Grant> not). If you look at the stack trace, it seems iosapic_unregister_intr() is being called from pci_disable_device(), not disable_irq(). I don't see any way for mthca_init_one() to call pci_disable_device() without a balancing pci_enable_device(), which is why I'm confused. (The IRQ stuff gets involved because of Bjorn Helgaas's recent changes to wait to route IRQs until pci_enable_device() is called) - R. From willy at fc.hp.com Thu Jan 13 09:03:00 2005 From: willy at fc.hp.com (Matthew Wilcox) Date: Thu, 13 Jan 2005 10:03:00 -0700 Subject: [ia64 R&D] Re: [openib-general] disable_irq WARN_ON In-Reply-To: <20050113163155.GA19123@esmail.cup.hp.com> References: <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> <52u0plqq2n.fsf@topspin.com> <20050113163155.GA19123@esmail.cup.hp.com> Message-ID: <20050113170300.GL29332@localhost> On Thu, Jan 13, 2005 at 08:31:55AM -0800, Grant Grundler wrote: > On Thu, Jan 13, 2005 at 07:57:52AM -0800, Roland Dreier wrote: > > Andras> However, when I put a card in an rx4640 (four-way thing, > > Andras> same ZX1 chipset as the 2600 ) I got an oops upon > > Andras> modprobe. This is 2.6.10-mm2 (I've compared some diffs > > Andras> with 11-rc1 and nothing relevant seems to have changed). > ... > > I'm not sure what's going on. mthca_init_one() is bailing out and > > disabling the device on the way out, and iosapic_unregister_intr() is > > warning (not actually an oops, just WARN_ON(1)) because it can't find > > a valid IRQ number. > > I suspect this is a result of mthca_init_one bailing WITHOUT > having succesfully called request_irq(). I don't think that's possible. Seems to me that free_irq() is only called for irqs that have been successfully requested. Look at how mthca_free_irqs() and mthca_init_eq_table() interact with the have_irq flags. The iosapic_unregister_intr() function is brand new, so I would expect that to be buggy, not the driver. I'm not sure who is responsible for the CONFIG_ACPI_DEALLOCATE_IRQ; someone at Intel, I think. -- It's always legal to use Linux (TM) systems http://www.gnu.org/philosophy/why-free.html From krause at cup.hp.com Thu Jan 13 09:04:41 2005 From: krause at cup.hp.com (Michael Krause) Date: Thu, 13 Jan 2005 09:04:41 -0800 Subject: [openib-general] question In-Reply-To: References: <52u0pms3bu.fsf@topspin.com> <52pt0as1xw.fsf@topspin.com> <20050112232542.GF15659@esmail.cup.hp.com> <20050112233931.GG15659@esmail.cup.hp.com> Message-ID: <6.2.0.14.2.20050113090040.027f2768@esmail.cup.hp.com> At 04:09 PM 1/12/2005, Ronald G. Minnich wrote: >On Wed, 12 Jan 2005, Grant Grundler wrote: > > > > > http://cmclab.rice.edu/projects/giganic/datasheets/PCI/SPECS/Pci22.pdf > > and > > http://www.singlix.org/trdos/PCI22.pdf > >yikes. That's cool. They used to charge for it, I think all my copies are >bootleg. > >Wait, was the microphone on when I said that? I was taken out of context! The PCI-SIG provides specs free to its member companies and charges for physical copies (the membership fees for the PCI-SIG are substantially less than for the IBTA and there are other benefits of membership beyond free specs). There are special discounts in place for academic purposes. Given there are over 900 companies in the PCI-SIG and I suspect a large percentage of the people on this reflector work for member companies, you should have free access to the specs (Grant has full access via an internal website I manage for distribution of such material within HP). I would also note that the latest specs are: PCI 3.0 for conventional PCI PCI-X 2.0a for PCI-X PCIe 1.0a for PCI Express (will soon be 1.1 which incorporates nearly all of the ECN / errata generated over the past year as well as the corrected error handling that will be important for people to understand since the 1.0a spec is broken in this regard - a final ECN for 1.0a should also become available shortly). BTW, MSI-X was technology originally conceived within HP many years ago (~15) and developed within the PCI-SIG as an extension to MSI a couple of years ago (I first proposed it during the development of PCI Express and we decided to make it applicable to all PCI technologies - ECN exist for all three types). Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From roland at topspin.com Thu Jan 13 09:09:53 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 13 Jan 2005 09:09:53 -0800 Subject: [ia64 R&D] Re: [openib-general] disable_irq WARN_ON In-Reply-To: <20050113170300.GL29332@localhost> (Matthew Wilcox's message of "Thu, 13 Jan 2005 10:03:00 -0700") References: <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> <52u0plqq2n.fsf@topspin.com> <20050113163155.GA19123@esmail.cup.hp.com> <20050113170300.GL29332@localhost> Message-ID: <52hdllqmqm.fsf@topspin.com> Matthew> The iosapic_unregister_intr() function is brand new, so I Matthew> would expect that to be buggy, not the driver. I'm not Matthew> sure who is responsible for the Matthew> CONFIG_ACPI_DEALLOCATE_IRQ; someone at Intel, I think. Was it Intel or was it part of Bjorn Helgaas's changes to interrupt routing? In any case at first look it does seem like iosapic_unregister_intr() is complaining about a perfectly valid pci_disable_device() balanced by an earlier pci_enable_device(). Perhaps the fact that there's _not_ a request_irq() in the middle is confusing things. In any case I have to confess that I don't understand ia64 interrupt routing and the relationship between gsi, irq and vector well enough to follow what is going on here. All of this leaves open why mthca_init_one() is giving up and trying to disable the device on Andras's system, which is probably the more important question. Answering this will require more information about how far the device initialization is getting before it fails. - R. From halr at voltaire.com Thu Jan 13 09:06:23 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 13 Jan 2005 12:06:23 -0500 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: <20050113165136.GB19123@esmail.cup.hp.com> References: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> <1105623814.4649.1674.camel@localhost.localdomain> <20050113165136.GB19123@esmail.cup.hp.com> Message-ID: <1105635983.4649.1749.camel@localhost.localdomain> On Thu, 2005-01-13 at 11:51, Grant Grundler wrote: > Please use "lspci -vvs 02:00.0" - this will dump the contents of the > MSI address/data regs. lspci -vvs 02:00.0 02:00.0 InfiniBand: Mellanox Technology MT23108 InfiniHost (rev a1) Subsystem: Mellanox Technology MT23108 InfiniHost Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B- Status: Cap+ 66Mhz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR- management/README: Indicate current OpenIB OpenSM limitations Signed-off-by: Hal Rosenstock Index: README =================================================================== --- README (revision 1523) +++ README (working copy) @@ -64,6 +64,12 @@ any of the userspace programs. +A Couple of Current OpenIB Limitations: +1. IsSM capability mask bit is not set in SMInfo (so multiple OpenSMs in +a subnet will not work properly) +2. RMPP is not currently supported (so SA GetTable will not work) + + Other utilites: ibstat - show host adaptors status ibstatus - almost the same but implemented as a script From mshefty at ichips.intel.com Thu Jan 13 09:20:11 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 13 Jan 2005 09:20:11 -0800 Subject: [openib-general] Some Missing Features from mthca/userMADaccess In-Reply-To: References: Message-ID: <41E6ADCB.4010102@ichips.intel.com> shaharf wrote: > > [SHAHAR] Attributes filtering can be done with O(1). First you don't > have to support the entire theoretical range. Currently less then > 256 attributes are used per class. You can't make this assumption for vendor defined classes. > But even more important then that, what is the use > for methods filtering? It should allow creation of a trap handler, or other more modular code. If there are no clients using method filtering, then I'm all for removing it. > Do you see a way to handle the different SA client registrations > for events (InformInfo) where an incoming Report could go to > multiple clients with the current approach ? I think that more complex filtering should be done above the MAD layer. The purpose of the snoop functionality is to let a client register to view all MADs and then apply their own filter on which MADs they want to make a copy of. This is more flexible than any API that we could define that tried to do the filtering in the MAD layer, and I believe is sufficient for kernel-mode clients. For user-mode clients, I would recommend that the snooping be done in the kernel for performance reasons. There would need to be a yet to be defined API defined for user-mode clients to set the snooping parameters. I think a reasonable API would be to let user's specify a mask over the entire MAD (or at least the header). From krause at cup.hp.com Thu Jan 13 09:22:33 2005 From: krause at cup.hp.com (Michael Krause) Date: Thu, 13 Jan 2005 09:22:33 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <1AC79F16F5C5284499BB9591B33D6F000345F3F3@orsmsx408> References: <1AC79F16F5C5284499BB9591B33D6F000345F3F3@orsmsx408> Message-ID: <6.2.0.14.2.20050113091841.027ebb88@esmail.cup.hp.com> At 08:43 AM 1/13/2005, Woodruff, Robert J wrote: > > >Grant> Good news: Topspin firmware 3.3.2 can run netperf w/MSI-X on ia64 >too > >Bad news: I'm getting weak perf #s on the ZX1 boxes (~1580 Mbps == >~200MB/s) > >I found this paper about 10gig ethernet on Itanium where they were >not seeing that good of performance and were able to increase it by >changing some BIOS setting that controlled PCI-X burst size. Perhaps >this >might also help IB, although they state in the paper that this seemed to >help more with larger MTUs, so with our 2K MTU, not sure if it will help >or not. Yes it will help all high-speed I/O devices. The default firmware settings focus on creating a balanced environment across all slots to avoid any perceived QoS issues. Changing the parameters improves performance but could result in minor HOL blocking for completions. The internal interconnect used on these platforms is a serial interface (dual simplex) that has been shipping for many years now and has evolved over time to improve performance and capabilities. >http://www.supercomp.org/sc2003/paperpdfs/pap293.pdf#search='10%20gigabi >t%20ethernet%20performance%20on%20Itanium' -------------- next part -------------- An HTML attachment was scrubbed... URL: From tduffy at sun.com Thu Jan 13 09:37:53 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 13 Jan 2005 09:37:53 -0800 Subject: [openib-general] Re: mstflint - test1 In-Reply-To: <20050113084416.GB31088@mellanox.co.il> References: <1105571278.16635.46.camel@duffman> <20050113084416.GB31088@mellanox.co.il> Message-ID: <1105637873.2527.9.camel@duffman> On Thu, 2005-01-13 at 10:44 +0200, Michael S. Tsirkin wrote: > Also, strace seems to be broken: we are passing the last parameter > 0x1ff00100000ULL explicitly, but strace shows 0x1ff00100. That is clear. I will send a report about that to the strace maintainer. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From halr at voltaire.com Thu Jan 13 09:37:15 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 13 Jan 2005 12:37:15 -0500 Subject: [openib-general] Some Missing Features from mthca/userMADaccess In-Reply-To: <41E6ADCB.4010102@ichips.intel.com> References: <41E6ADCB.4010102@ichips.intel.com> Message-ID: <1105637834.4649.1773.camel@localhost.localdomain> On Thu, 2005-01-13 at 12:20, Sean Hefty wrote: > shaharf wrote: > > > > [SHAHAR] Attributes filtering can be done with O(1). First you don't > > have to support the entire theoretical range. Currently less then > > 256 attributes are used per class. > > You can't make this assumption for vendor defined classes. Are you referring to IDs or number of attributes used per vendor defined class ? > > But even more important then that, what is the use > > for methods filtering? > > It should allow creation of a trap handler, or other more modular code. > If there are no clients using method filtering, then I'm all for > removing it. CM (at least currently) appears to be registering this way. I think it is needed to support CM. BTW, I don't think the response method should be set in the mask (line 336): set_bit(IB_MGMT_METHOD_GET_RESP, reg_req.method_mask); > > Do you see a way to handle the different SA client registrations > > for events (InformInfo) where an incoming Report could go to > > multiple clients with the current approach ? > > I think that more complex filtering should be done above the MAD layer. Including inside the kernel ? > The purpose of the snoop functionality is to let a client register to > view all MADs and then apply their own filter on which MADs they want > to make a copy of. This is more flexible than any API that we could > define that tried to do the filtering in the MAD layer, and I believe > is sufficient for kernel-mode clients. > > For user-mode clients, I would recommend that the snooping be done in > the kernel for performance reasons. There would need to be a yet to be > defined API defined for user-mode clients to set the snooping parameters. > > I think a reasonable API would be to let user's specify a mask over the > entire MAD (or at least the header). Do you see this as the direction to provide this support if this is needed (for incoming traps and reports) ? -- Hal From Andras.Horvath at cern.ch Thu Jan 13 09:55:46 2005 From: Andras.Horvath at cern.ch (Andras.Horvath at cern.ch) Date: Thu, 13 Jan 2005 18:55:46 +0100 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52u0plqq2n.fsf@topspin.com> References: <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> <52u0plqq2n.fsf@topspin.com> Message-ID: <20050113175546.GG2351@cern.ch> > Does this happen even without MSI turned on? > > Can you build your drivers with CONFIG_INFINIBAND_MTHCA_DEBUG=y and > then do "dmesg -c > /dev/null && modprobe ib_mthca" and send the > output of "dmesg"? Don't worry about sending the whole thing to the > list, it can't be that giant. I'll see what I can do about the firmware. Meanwhile, here goes (without MSI this time): # dmesg -c > /dev/null && modprobe ib_mthca [ some minutes pass ] # dmesg ib_mthca: Mellanox InfiniBand HCA driver v0.06-pre (November 8, 2004) ib_mthca: Initializing Mellanox Technology MT23108 InfiniHost (0000:41:00.0) GSI 38 (level, low) -> CPU 1 (0x0100) vector 58 ACPI: PCI interrupt 0000:41:00.0[A] -> GSI 38 (level, low) -> IRQ 58 ib_mthca 0000:41:00.0: Found bridge: Mellanox Technology MT23108 PCI Bridge (0000:40:01.0) ib_mthca 0000:41:00.0: FW version 000300000002, max commands 64 ib_mthca 0000:41:00.0: FW size 6143 KB (start a7a00000, end a7ffffff) ib_mthca 0000:41:00.0: HCA memory size 131071 KB (start a0000000, end a7ffffff) ib_mthca 0000:41:00.0: Max QPs: 16777216, reserved QPs: 16, entry size: 256 ib_mthca 0000:41:00.0: Max CQs: 16777216, reserved CQs: 128, entry size: 64 ib_mthca 0000:41:00.0: Max EQs: 64, reserved EQs: 1, entry size: 64 ib_mthca 0000:41:00.0: reserved MPTs: 16, reserved MTTs: 16 ib_mthca 0000:41:00.0: Max PDs: 16777216, reserved PDs: 0, reserved UARs: 1 ib_mthca 0000:41:00.0: Max QP/MCG: 16777216, reserved MGMs: 0 ib_mthca 0000:41:00.0: Flags: 00370307 ib_mthca 0000:41:00.0: profile[ 0]--10/20 @ 0x a0000000 (size 0x 4000000) ib_mthca 0000:41:00.0: profile[ 1]-- 0/16 @ 0x a4000000 (size 0x 1000000) ib_mthca 0000:41:00.0: profile[ 2]-- 7/18 @ 0x a5000000 (size 0x 800000) ib_mthca 0000:41:00.0: profile[ 3]-- 9/17 @ 0x a5800000 (size 0x 800000) ib_mthca 0000:41:00.0: profile[ 4]-- 3/16 @ 0x a6000000 (size 0x 400000) ib_mthca 0000:41:00.0: profile[ 5]-- 4/16 @ 0x a6400000 (size 0x 200000) ib_mthca 0000:41:00.0: profile[ 6]--12/15 @ 0x a6600000 (size 0x 100000) ib_mthca 0000:41:00.0: profile[ 7]-- 8/13 @ 0x a6700000 (size 0x 80000) ib_mthca 0000:41:00.0: profile[ 8]--11/ 7 @ 0x a6780000 (size 0x 1000) ib_mthca 0000:41:00.0: profile[ 9]-- 6/ 5 @ 0x a6781000 (size 0x 800) ib_mthca 0000:41:00.0: HCA memory: allocated 105990 KB/124928 KB (18938 KB free) ib_mthca 0000:41:00.0: Allocated EQ 1 with 65536 entries ib_mthca 0000:41:00.0: Allocated EQ 2 with 128 entries ib_mthca 0000:41:00.0: Allocated EQ 3 with 128 entries ib_mthca 0000:41:00.0: Setting mask 00000000000343fe for eqn 2 ib_mthca 0000:41:00.0: Setting mask 0000000000000400 for eqn 3 CPI: PCI interrupt for device 0000:41:00.0 disabled iosapic_unregister_intr(4294967295) unbalanced Badness in iosapic_unregister_intr at arch/ia64/kernel/iosapic.c:636 Call Trace: [] show_stack+0x80/0xa0 sp=e0000000068dfbd0 bsp=e0000000068d11a0 [] dump_stack+0x30/0x60 sp=e0000000068dfda0 bsp=e0000000068d1190 [] iosapic_unregister_intr+0x340/0x3a0 sp=e0000000068dfda0 bsp=e0000000068d1138 [] acpi_unregister_gsi+0x20/0x40 sp=e0000000068dfda0 bsp=e0000000068d1120 [] acpi_pci_irq_disable+0x180/0x1c0 sp=e0000000068dfda0 bsp=e0000000068d10e8 [] pcibios_disable_device+0x20/0x40 sp=e0000000068dfdb0 bsp=e0000000068d10d0 [] pci_disable_device+0xc0/0xe0 sp=e0000000068dfdb0 bsp=e0000000068d10a8 [] mthca_init_one+0x230/0xd40 [ib_mthca] sp=e0000000068dfdc0 bsp=e0000000068d1050 [] pci_device_probe_static+0xb0/0x100 sp=e0000000068dfe00 bsp=e0000000068d1020 [] __pci_device_probe+0x60/0x80 sp=e0000000068dfe00 bsp=e0000000068d1000 [] pci_device_probe+0x50/0xa0 sp=e0000000068dfe00 bsp=e0000000068d0fd8 [] driver_probe_device+0xa0/0x140 sp=e0000000068dfe00 bsp=e0000000068d0fa8 [] driver_attach+0x120/0x180 sp=e0000000068dfe00 bsp=e0000000068d0f78 [] bus_add_driver+0x120/0x200 sp=e0000000068dfe00 bsp=e0000000068d0f48 [] driver_register+0xe0/0x100 sp=e0000000068dfe00 bsp=e0000000068d0f30 [] pci_register_driver+0xc0/0xe0 sp=e0000000068dfe30 bsp=e0000000068d0f18 [] mthca_init+0x30/0x60 [ib_mthca] sp=e0000000068dfe30 bsp=e0000000068d0f00 [] sys_init_module+0x6f0/0x700 sp=e0000000068dfe30 bsp=e0000000068d0e80 [] ia64_ret_from_syscall+0x0/0x20 sp=e0000000068dfe30 bsp=e0000000068d0e80 ib_mthca: probe of 0000:41:00.0 failed with error -16 Cheers, Andras From mshefty at ichips.intel.com Thu Jan 13 10:11:45 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 13 Jan 2005 10:11:45 -0800 Subject: [openib-general] Some Missing Features from mthca/userMADaccess In-Reply-To: <1105637834.4649.1773.camel@localhost.localdomain> References: <41E6ADCB.4010102@ichips.intel.com> <1105637834.4649.1773.camel@localhost.localdomain> Message-ID: <41E6B9E1.8050302@ichips.intel.com> Hal Rosenstock wrote: >>>[SHAHAR] Attributes filtering can be done with O(1). First you don't >>>have to support the entire theoretical range. Currently less then >>>256 attributes are used per class. >> >>You can't make this assumption for vendor defined classes. > > Are you referring to IDs or number of attributes used per vendor defined > class ? Either really. >>>But even more important then that, what is the use >>>for methods filtering? >> >>It should allow creation of a trap handler, or other more modular code. >> If there are no clients using method filtering, then I'm all for >>removing it. > > CM (at least currently) appears to be registering this way. I think it > is needed to support CM. > > BTW, I don't think the response method should be set in the mask (line > 336): > set_bit(IB_MGMT_METHOD_GET_RESP, reg_req.method_mask); Thanks, I changed the CM to only register for SENDs, which is all I care about at the moment. >>> Do you see a way to handle the different SA client registrations >>>for events (InformInfo) where an incoming Report could go to >>>multiple clients with the current approach ? >> >>I think that more complex filtering should be done above the MAD layer. > > Including inside the kernel ? Just to be clear, I think complex filtering should be done in the kernel, but for user-mode clients. This would avoid copying the MAD except when needed. I would try to get kernel-mode clients to make use of the snooping functionality. If a kernel client needs to actually own the MAD (e.g. to generate a response), then I would look at layering that filtering above the MAD layer. Of course, I wouldn't make a blanket statement about where the filtering is done, but would want to examine it on a case by case basis. >>I think a reasonable API would be to let user's specify a mask over the >>entire MAD (or at least the header). > > Do you see this as the direction to provide this support if this is > needed (for incoming traps and reports) ? This approach seems the most flexible, so I would see if it would meet everyone's needs. I'm hesitant to put this sort of filtering into the kernel MAD code, since the check would be more expensive than what's needed for most MADs. From iod00d at hp.com Thu Jan 13 10:43:34 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 13 Jan 2005 10:43:34 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52hdlmrr40.fsf@topspin.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050113013406.GA16755@esmail.cup.hp.com> <52hdlmrr40.fsf@topspin.com> Message-ID: <20050113184334.GA19418@esmail.cup.hp.com> On Wed, Jan 12, 2005 at 06:37:51PM -0800, Roland Dreier wrote: > This may or may not help on your ia64 systems, but one thing I've > found helpful for getting the highest IPoIB performance is to bind the > HCA's interrupt handlers to one CPU and use taskset to bind the > netperf/netserver processes to a different CPU. Ok - thanks for the suggestion but it doesn't help. taskset 1 /opt/netperf/netperf -l 60 -H 10.0.0.81 -t TCP_STREAM -- -m 8192 -s 262144 -S 262144 and then manually determining the netserver PID and setting it to various masks. I got: netperf/irq same, netserver/irq same: 1591 Mbps netperf/irq diff, netserver/irq same: 1565 Mbps netperf/irq same, netserver/irq diff: 1507 Mbps netperf/irq diff, netserver/irq diff: 1510 Mbps It's take ~5-10 seconds to locate the PID and set the mask. The last two numbers are too close to draw any conclusions. I didn't expect it to improve since the CPU isn't fully utilized. And it looks like caching is playing a measurable role on the receive side of things. Some prefetching might help...I'll play with that later. thanks, grant From mst at mellanox.co.il Thu Jan 13 10:57:38 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 13 Jan 2005 20:57:38 +0200 Subject: [openib-general] Re: mstflint - test1 In-Reply-To: <1105637873.2527.9.camel@duffman> References: <1105637873.2527.9.camel@duffman> Message-ID: <20050113185738.GA32459@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: mstflint - test1": > On Thu, 2005-01-13 at 10:44 +0200, Michael S. Tsirkin wrote: > > Also, strace seems to be broken: we are passing the last parameter > > 0x1ff00100000ULL explicitly, but strace shows 0x1ff00100. > > That is clear. I will send a report about that to the strace > maintainer. > > -tduffy So, since mmapping /dev/mem does not work: I added an option to do pread/pwrite on dev/mem instead of mmap, on the off-chance that it might work (it does not on a regular x86 box). To try, turn off CONFIG_ENABLE_MMAP and turn on CONFIG_ENABLE_READWRITE. mst From halr at voltaire.com Thu Jan 13 11:13:15 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 13 Jan 2005 14:13:15 -0500 Subject: [openib-general] osm_sa_pkey_record.c when VENDOR_RMPP_SUPPORT defined Message-ID: <1105643594.4649.1862.camel@localhost.localdomain> Hi Eitan, It looks to me like osm_sa_pkey_record.c (line 513) is missing the #else clause as shown below (and in all the other SA files where appropriate). If you concur, I will generate the patch and apply. #ifndef VENDOR_RMPP_SUPPORT /* we support only one packet RMPP - so we will set the first and last flags for gettable */ if (p_rcvd_mad->method == IB_MAD_METHOD_GETTABLE_RESP) { p_resp_sa_mad->rmpp_type = IB_RMPP_TYPE_DATA; p_resp_sa_mad->rmpp_flags = IB_RMPP_FLAG_FIRST | IB_RMPP_FLAG_LAST | IB_RMPP_FLAG_ACTIVE; } #endif missing else clause: #else /* forcefully define the packet as RMPP one */ if (p_resp_sa_mad->method == IB_MAD_METHOD_GETTABLE_RESP) p_resp_sa_mad->rmpp_flags = IB_RMPP_FLAG_ACTIVE; Thanks. -- Hal From roland at topspin.com Thu Jan 13 11:28:08 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 13 Jan 2005 11:28:08 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050113175546.GG2351@cern.ch> (Andras Horvath's message of "Thu, 13 Jan 2005 18:55:46 +0100") References: <52sm5g3dcn.fsf@topspin.com> <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> <52u0plqq2n.fsf@topspin.com> <20050113175546.GG2351@cern.ch> Message-ID: <523bx5qgc7.fsf@topspin.com> Andras> # dmesg -c > /dev/null && modprobe ib_mthca Andras> [ some minutes pass ] Andras> # dmesg Hmm, based on this, it seems as if the HCA's interrupt is being misrouted -- it looks like the driver may be failing as soon as it tries an interrupt-driven FW command. Grant, any idea on what could be going wrong here? Is the fact that vector == irq # OK? Then it seems there is a bug in the IOSAPIC code causing the stack dump when mthca tries to disable the device in its failure path. Based on all the trouble I've seen with interrupt routing on various systems, I'm thinking it's worth adding a test to the driver to make sure that it can receive interrupts... - R. From tduffy at sun.com Thu Jan 13 14:21:58 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 13 Jan 2005 14:21:58 -0800 Subject: [openib-general] [PATCH] fix flint error messages In-Reply-To: <20050113185738.GA32459@mellanox.co.il> References: <1105637873.2527.9.camel@duffman> <20050113185738.GA32459@mellanox.co.il> Message-ID: <1105654918.2527.75.camel@duffman> On Thu, 2005-01-13 at 20:57 +0200, Michael S. Tsirkin wrote: > So, since mmapping /dev/mem does not work: > > I added an option to do pread/pwrite on dev/mem instead of > mmap, on the off-chance that it might work (it does not > on a regular x86 box). > To try, turn off CONFIG_ENABLE_MMAP and turn on > CONFIG_ENABLE_READWRITE. Ok, I tried this, but got the following message: tat:/build1/tduffy/openib-work/gen2-sparc/src/userspace/mstflint# ./mstflint -d 0000:81:00.0 q *** ERROR *** (null) Not very useful, so I updated all the spots where *** ERROR *** was in flint to make it more human readable (and debuggable). Signed-off-by: Tom Duffy Index: flint.cpp =================================================================== --- flint.cpp (revision 1526) +++ flint.cpp (working copy) @@ -3490,7 +3490,7 @@ device = av[i]; if (!f.open(device)) { - printf("*** ERROR *** %s\n", f._err); + fprintf(stderr, "Device open failed: %s\n", f._err); return 1; } } @@ -3639,7 +3639,7 @@ FImage fim; if (!fim.open(image_fname)) { - printf("*** ERROR *** %s\n", fim._err); + fprintf(stderr, "Image open failed: %s\n", fim._err); return 1; } bool old_silent = _silent; @@ -3706,9 +3706,9 @@ if (!f.FailSafe_burn(fim.getBuf(), fim.getBufLength(), !silent)) { - printf("*** ERROR *** %s\n", f._err); - printf("It is impossible to burn this image in a failsafe mode.\n"); - printf("If you want to burn in non failsafe mode, use the \"-nofs\" switch.\n"); + fprintf(stderr, "FailSafe burn failed: %s\n", f._err); + fprintf(stderr, "It is impossible to burn this image in a failsafe mode.\n"); + fprintf(stderr, "If you want to burn in non failsafe mode, use the \"-nofs\" switch.\n"); return 1; } } @@ -3740,7 +3740,7 @@ !silent)) { report("\n"); - printf("*** ERROR *** %s\n", f._err); + fprintf(stderr, "Non FailSafe burn failed: %s\n", f._err); return 1; } report("\n"); @@ -3774,7 +3774,7 @@ // Erase if (!f.erase_sector(addr)) { - printf("*** ERROR *** %s\n", f._err); + fprintf(stderr, "Erase sector failed: %s\n", f._err); return 1; } } @@ -3788,7 +3788,7 @@ FImage fim; if (!fim.open(image_fname)) { - printf("*** ERROR *** %s\n", fim._err); + fprintf(stderr, "Image open failed: %s\n", fim._err); return 1; } RevisionInfo(fim, guids, 0, &fs_image); @@ -3862,7 +3862,7 @@ // Read flash if (!f.read(addr, data, length)) { - printf("*** ERROR *** %s\n", f._err); + fprintf(stderr, "Flash read failed: %s\n", f._err); return 1; } @@ -3918,7 +3918,7 @@ // Read if (!f.read(addr, &data)) { - printf("*** ERROR *** %s\n", f._err); + fprintf(stderr, "Address read failed: %s\n", f._err); return 1; } printf("0x%08x\n", (unsigned int)__cpu_to_be32(data)); @@ -3933,7 +3933,7 @@ FImage fim; if (!fim.open(image_fname)) { - printf("*** ERROR *** %s\n", fim._err); + fprintf(stderr, "Verify open image failed: %s\n", fim._err); return 1; } Verify(fim); @@ -3997,7 +3997,7 @@ // Write flash if (!f.write_image(addr, data, length, !silent)) { - printf("*** ERROR *** %s\n", f._err); + fprintf(stderr, "Write flash failed: %s\n", f._err); return 1; } @@ -4037,7 +4037,7 @@ f.curr_sector = 0xffffffff; // First time erase sector if (!f.write(addr, data)) { - printf("*** ERROR *** %s\n", f._err); + fprintf(stderr, "Erase sector failed: %s\n", f._err); return 1; } } @@ -4073,7 +4073,7 @@ if (!f.write(addr, &data, 4, true, true)) { - printf("*** ERROR *** %s\n", f._err); + fprintf(stderr, "Write failed: %s\n", f._err); return 1; } } @@ -4091,7 +4091,7 @@ if (!f.query_cfi()) { - printf("*** ERROR *** %s\n", f._err); + fprintf(stderr, "Query cfi failed: %s\n", f._err); return 1; } } -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From iod00d at hp.com Thu Jan 13 14:29:31 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 13 Jan 2005 14:29:31 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <523bx5qgc7.fsf@topspin.com> References: <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> <52u0plqq2n.fsf@topspin.com> <20050113175546.GG2351@cern.ch> <523bx5qgc7.fsf@topspin.com> Message-ID: <20050113222931.GA20200@esmail.cup.hp.com> On Thu, Jan 13, 2005 at 11:28:08AM -0800, Roland Dreier wrote: > Andras> # dmesg -c > /dev/null && modprobe ib_mthca > Andras> [ some minutes pass ] > Andras> # dmesg > > Hmm, based on this, it seems as if the HCA's interrupt is being > misrouted -- it looks like the driver may be failing as soon as it > tries an interrupt-driven FW command. That's the impression I had but wasn't sure - thanks for confirming. > Grant, any idea on what could be going wrong here? Works For Me (tm). I've only tested with later (3.1.0 and 3.2.0) versions of firmware. Upgrading the firmware would be my first action. In general, I've tested 2.6.10 quite a bit and haven't exposed any problems with line based IRQs. Trust me, we would have heard about it pretty quickly on ia64-linux mailing list. > Is the fact that vector == irq # OK? Erm, I think that's a brainfart. ib_mthca: Initializing Mellanox Technology MT23108 InfiniHost (0000:41:00.0) GSI 38 (level, low) -> CPU 1 (0x0100) vector 58 ACPI: PCI interrupt 0000:41:00.0[A] -> GSI 38 (level, low) -> IRQ 58 This looks normal to me. Interpretation: (I might have this wrong) o IRQ routing from INTA to IO SAPIC is hard coded. o IO SAPIC IRTE is programmed with GSI 38 (doesn't say which CPU) o We call it "IRQ 58" (different IRQs might share one GSI vector and are used by different interrupt sources) > Then it seems there is a bug in the IOSAPIC code causing the stack > dump when mthca tries to disable the device in its failure path. It's not clear yet the WARN_ON is a bug in IOSAPIC code. I'm waiting for ACPI folks to sort that out. > Based on all the trouble I've seen with interrupt routing on various > systems, I'm thinking it's worth adding a test to the driver to make > sure that it can receive interrupts... Hrm...only if the test completes quickly on success. TBH, I would expect IRQ lines to work on *ALL* platforms. Basic part of PCI compliance dictates this. It's clear not all platforms support MSI and the failure mode may vary. So a test for MSI or MSI_X would be good. And then the code can warn "MSI[-X] Failed - falling back to IRQ Line". grant From roland at topspin.com Thu Jan 13 14:35:16 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 13 Jan 2005 14:35:16 -0800 Subject: [openib-general] Re: InfiniBand MAD device number request In-Reply-To: <20050111145814.GP4249@linux2> (Torben Mathiasen's message of "Tue, 11 Jan 2005 15:58:15 +0100") References: <52brcce5b9.fsf@topspin.com> <20050107120451.GK4592@linux2> <52oefz23fr.fsf@topspin.com> <20050111145814.GP4249@linux2> Message-ID: <52y8exot3v.fsf@topspin.com> Torben> Allright, I begun looking into using the 2.6 specific Torben> major/minor allocations. 2.6 allows 20 bit worth of Torben> minors per major. I'll let you know once I know more. As we continue our development of InfiniBand drivers, it's becoming apparent that we will need other types of character devices in addition to the umadN devices I sent the original request for. It seems that using a large major (ie > 255) is a good solution, since we have no backwards compatibility to worry about. So I would propose the following if it seems acceptable to you: reserve something like a 2K or 4K chunk of minors in the large major space for IB (eg 256:0...256:4095 -- of course the major isn't important if you want to start assigning somewhere else) and assign the first 256 minors from this range as /dev/infiniband/umad0 ... /dev/infiniband/umad255. I know of at least two more types of character devices that we will be requesting as the driver work is completed, and these could be allocated from the same IB chunk. Thanks, Roland From mst at mellanox.co.il Thu Jan 13 14:44:12 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Fri, 14 Jan 2005 00:44:12 +0200 Subject: [openib-general] Re: [PATCH] fix flint error messages In-Reply-To: <1105654918.2527.75.camel@duffman> References: <1105654918.2527.75.camel@duffman> Message-ID: <20050113224412.GA486@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "[PATCH] fix flint error messages": > On Thu, 2005-01-13 at 20:57 +0200, Michael S. Tsirkin wrote: > > So, since mmapping /dev/mem does not work: > > > > I added an option to do pread/pwrite on dev/mem instead of > > mmap, on the off-chance that it might work (it does not > > on a regular x86 box). > > To try, turn off CONFIG_ENABLE_MMAP and turn on > > CONFIG_ENABLE_READWRITE. > > Ok, I tried this, but got the following message: > > tat:/build1/tduffy/openib-work/gen2-sparc/src/userspace/mstflint# > ./mstflint -d 0000:81:00.0 q > *** ERROR *** (null) So no, pread from pio addresses does not work, exactly in the same way as on x86, apparently by design. What about the simple mmap test? Do you know why does not it work? > Not very useful, so I updated all the spots where *** ERROR *** was in > flint to make it more human readable (and debuggable). thanks. mst From iod00d at hp.com Thu Jan 13 14:51:49 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 13 Jan 2005 14:51:49 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050113175546.GG2351@cern.ch> References: <20050105010346.GF12343@esmail.cup.hp.com> <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> <52u0plqq2n.fsf@topspin.com> <20050113175546.GG2351@cern.ch> Message-ID: <20050113225149.GB20200@esmail.cup.hp.com> On Thu, Jan 13, 2005 at 06:55:46PM +0100, Andras.Horvath at cern.ch wrote: > I'll see what I can do about the firmware. BTW, you might also look at platform firmware. Go to www.hp.com and search for "rx4640 firmware". FYI - I'm running v2.10 on my rx4640 (looks like the latest is v2.13). BTW2, I don't test 2.6.10-mm and haven't tested 2.6.11-rc* bits on ZX1 platforms (yet - I've two other things to clear off my plate). I've been using linux-ia64-release-2.6.10 from lia64.bkbits.net with drivers/infiniband coming from openib.org SVN. hth, grant From roland at topspin.com Thu Jan 13 15:00:31 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 13 Jan 2005 15:00:31 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050113222931.GA20200@esmail.cup.hp.com> (Grant Grundler's message of "Thu, 13 Jan 2005 14:29:31 -0800") References: <52fz1g3ck0.fsf@topspin.com> <20050107005615.GF23985@esmail.cup.hp.com> <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> <52u0plqq2n.fsf@topspin.com> <20050113175546.GG2351@cern.ch> <523bx5qgc7.fsf@topspin.com> <20050113222931.GA20200@esmail.cup.hp.com> Message-ID: <52u0plorxs.fsf@topspin.com> Roland> Based on all the trouble I've seen with interrupt routing Roland> on various systems, I'm thinking it's worth adding a test Roland> to the driver to make sure that it can receive Roland> interrupts... Grant> Hrm...only if the test completes quickly on success. Yes, all we have to do is try a NOP FW command and see if it generates an interrupt on completion. This will succeed within a millisecond in the extremely worst case if interrupts are working, so even the failure case will be quick. Grant> TBH, I would expect IRQ lines to work on *ALL* platforms. Grant> Basic part of PCI compliance dictates this. You would expect this but the supply of BIOS and kernel ACPI bugs seems inexhaustible... Grant> It's clear not all platforms support MSI and the failure Grant> mode may vary. So a test for MSI or MSI_X would be good. Grant> And then the code can warn "MSI[-X] Failed - falling back Grant> to IRQ Line". That's a good idea but it may take me a little while to get to it because it's a little bit of a pain to unwind our MSI configuration after we get to the point where we can see if it worked or not. For now we'll have to be satisfied with a diagnostic telling you to try again without MSI... - R. From tomduffy at dslextreme.com Thu Jan 13 15:12:14 2005 From: tomduffy at dslextreme.com (Tom Duffy) Date: Thu, 13 Jan 2005 15:12:14 -0800 Subject: [openib-general] mmap(/dev/mem) causing sigbus Message-ID: <1105657934.2527.96.camel@duffman> It seems that there is an issue with either mmap or mmap'ing /dev/mem on sparc64. A tool (mstflint) for flashing firmware for Mellanox Infiniband HCA's is crashing on sparc64. It mmap's /dev/mem and when it accesses it, a bus error is generated. Should this work? Attached is a small test program to demonstrate. Change BAR0 to something in your PCI address space (grab an address from /proc/iomem). # cat /proc/iomem 1ff00100000-1ff001fffff : 0000:81:00.0 1ff00180680-1ff0018070f : ib_mthca 1ff001f00d8-1ff001f00df : ib_mthca 1ff00800000-1ff00ffffff : 0000:81:00.0 1ff00800000-1ff00ffffff : ib_mthca 1ff08000000-1ff0fffffff : 0000:81:00.0 # gdb ./mmap-test (gdb) run Starting program: /root/mmap-test warning: linux_test_for_tracefork: unexpected result from waitpid (3298, status 0xb7f) Program received signal SIGBUS, Bus error. 0x00010630 in main () at mmap-test.c:29 29 value= *( (unsigned*)(ptr + 0x000f0014) ); (gdb) print ptr $1 = (void *) 0x7018c000 (gdb) print ptr + 0x000f0014 $2 = (void *) 0x7027c014 (gdb) x 0x7027c014 0x7027c014: Cannot access memory at address 0x7027c014 # cat /proc/3317/maps 7018c000-7028c000 rw-s 1ff00100000 00:0d 316 /dev/mem # uname -a Linux tat 2.6.10 #14 SMP Mon Jan 3 12:30:51 PST 2005 sparc64 GNU/Linux -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: mmap-test.c Type: text/x-csrc Size: 659 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From davem at davemloft.net Thu Jan 13 15:29:34 2005 From: davem at davemloft.net (David S. Miller) Date: Thu, 13 Jan 2005 15:29:34 -0800 Subject: [openib-general] Re: mmap(/dev/mem) causing sigbus In-Reply-To: <1105657934.2527.96.camel@duffman> References: <1105657934.2527.96.camel@duffman> Message-ID: <20050113152934.446eac9e.davem@davemloft.net> On Thu, 13 Jan 2005 15:12:14 -0800 Tom Duffy wrote: > It seems that there is an issue with either mmap or mmap'ing /dev/mem on > sparc64. A tool (mstflint) for flashing firmware for Mellanox > Infiniband HCA's is crashing on sparc64. It mmap's /dev/mem and when it > accesses it, a bus error is generated. > > Should this work? It's not meant to be used at all. We have abstracted out a way to portably mmap() pci devices by opening /proc/bus/pci/* nodes, running the appropriate ioctl() to choose I/O or MEM space, then mmap()'ing on the fd to mmap the PCI device resources. At the very least, i386 and ppc support this interface as well. From iod00d at hp.com Thu Jan 13 16:22:22 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 13 Jan 2005 16:22:22 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <1AC79F16F5C5284499BB9591B33D6F000345F3F3@orsmsx408> References: <1AC79F16F5C5284499BB9591B33D6F000345F3F3@orsmsx408> Message-ID: <20050114002222.GD20200@esmail.cup.hp.com> On Thu, Jan 13, 2005 at 08:43:40AM -0800, Woodruff, Robert J wrote: > I found this paper about 10gig ethernet on Itanium where they were > not seeing that good of performance and were able to increase it by > changing some BIOS setting that controlled PCI-X burst size. Yeah, I have mail from April 2003 discussing MMRBC issues with CERN. Unfortunately, the paper doesn't describe how to change it and I had to look that up again: setpci -d 15b3:5a44 0x72 # read low byte of PCI-X command lspci tells me the PCI-X capability starts at offset 0x70 for this device. 0x72 is the low byte of the PCI-X command field. "lspci -vv" as root decodes it for me: Capabilities: [70] PCI-X non-bridge device. Command: DPERE+ ERO+ RBC=3 OST=4 RBC=3 means it's already set to 4k block. :^( But if it weren't, I could modify it with: setpci -d 15b3:5a44 0x72.W=0x1c Firmware (by default) sets "Command" field to 0x4e. But when I "modprobe ibmthca" and run "lspci -vv": Command: DPERE- ERO- RBC=3 OST=1 Hrm..setting 0x72 to 0x1f (was 0x1c) gives me: Command: DPERE+ ERO+ RBC=3 OST=1 ISTR the ZX1 chipset ignores ERO settings. And the driver isn't going to handle Data parity errors...so 0x72 can stay 0x1c. Rerun with mthca using IRQ lines and this setting: 1357 Mbps Reload mthca with msi_x=1 and same settings: 1575 Mbps I wasn't using taskset and expect thats' why I'm not getting 1590 like before. Anyway, I expect core problem is something to do with CPU behavior. I'll be trying to chase this more with pfmon. I also wondered why the OST (Outstanding Split Transactions) was reduced to 1 (firmware sets this to 4). Bumping it back to 4 didn't help either. > Perhaps this might also help IB, although they state in the paper > that this seemed to help more with larger MTUs, so with our 2K MTU, > not sure if it will help or not. MTU size helps a bit. Using 4k or larger gives me ~1590 Mbps vs ~1560 for 2k MTU. But I don't see improvement for larger MTUs. hth, grant From roland at topspin.com Thu Jan 13 16:29:02 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 13 Jan 2005 16:29:02 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050114002222.GD20200@esmail.cup.hp.com> (Grant Grundler's message of "Thu, 13 Jan 2005 16:22:22 -0800") References: <1AC79F16F5C5284499BB9591B33D6F000345F3F3@orsmsx408> <20050114002222.GD20200@esmail.cup.hp.com> Message-ID: <52ekgoq2ep.fsf@topspin.com> Grant> Yeah, I have mail from April 2003 discussing MMRBC issues Grant> with CERN. Unfortunately, the paper doesn't describe how Grant> to change it and I had to look that up again: setpci -d Grant> 15b3:5a44 0x72 # read low byte of PCI-X command Actually mthca_tune_pci() in mthca_main.c is already maxing out the RBC field of the PCI-X command register (and also the read request size for PCI Express). So changing this shouldn't have any effect. It might help if there is some way to tune other parts of the bus complex (eg give the bus that the HCA is on a bigger time slice if some hub above PCI is doing TDM...). Grant> MTU size helps a bit. Using 4k or larger gives me ~1590 Grant> Mbps vs ~1560 for 2k MTU. But I don't see improvement for Grant> larger MTUs. I think the IPoIB will refuse to set an MTU above 2044 (since the HCA is not able to generate larger UD messages). - R. From ebiederman at lnxi.com Thu Jan 13 17:19:45 2005 From: ebiederman at lnxi.com (Eric W. Biederman) Date: 13 Jan 2005 18:19:45 -0700 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: <523bx5s5p1.fsf@topspin.com> References: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> <523bx5s5p1.fsf@topspin.com> Message-ID: Roland Dreier writes: > Tziporet> Hi, We are seeing problems (not getting the interrupt) > Tziporet> when trying to work with MSIX on Opteron with Fedora > Tziporet> core3. > > As far as I can tell from reading the data sheet, the standard AMD > 8131 PCI-X does not support MSI/MSI-X, so if that's what you are using > then MSI-X will not work. I have no information on the nForce4 or > other Opteron PCI Express chipsets, but they should support MSI (since > it is a mandatory part of the PCI Express spec). The only question is > whether they will use the same message address/contents as Intel. If > not then updates to the core Linux support are required. I just did a quick look at the hypertransport spec. The mapping from MSI/MSI-X interrupts to native hypertransport interrupts was defined in rev 1.05 which post-dates the 8131 by a little but but it is certainly newer than the more recent chips. Given that hypertransport interrupts are simply encoded as posted write packets it may be possible to send an appropriate interrupt even without explicit bridge support. Anyway there looks to be sufficient information up at hypertransport.org to code the support to code MSI/MSI-X support for the x86 devices with a hypertransport FSB. Which should be more then enough information to see if the use the same message address/contents as Intel. Eric From iod00d at hp.com Thu Jan 13 17:56:28 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 13 Jan 2005 17:56:28 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52ekgoq2ep.fsf@topspin.com> References: <1AC79F16F5C5284499BB9591B33D6F000345F3F3@orsmsx408> <20050114002222.GD20200@esmail.cup.hp.com> <52ekgoq2ep.fsf@topspin.com> Message-ID: <20050114015628.GI20200@esmail.cup.hp.com> On Thu, Jan 13, 2005 at 04:29:02PM -0800, Roland Dreier wrote: > Grant> MTU size helps a bit. Using 4k or larger gives me ~1590 > Grant> Mbps vs ~1560 for 2k MTU. But I don't see improvement for > Grant> larger MTUs. > > I think the IPoIB will refuse to set an MTU above 2044 (since the HCA > is not able to generate larger UD messages). Sorry - "4k" was the netperf message size - not the MTU. My bad for mixing that up. thanks, grant From iod00d at hp.com Thu Jan 13 18:13:58 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 13 Jan 2005 18:13:58 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <52u0plorxs.fsf@topspin.com> References: <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> <52u0plqq2n.fsf@topspin.com> <20050113175546.GG2351@cern.ch> <523bx5qgc7.fsf@topspin.com> <20050113222931.GA20200@esmail.cup.hp.com> <52u0plorxs.fsf@topspin.com> Message-ID: <20050114021358.GJ20200@esmail.cup.hp.com> On Thu, Jan 13, 2005 at 03:00:31PM -0800, Roland Dreier wrote: > Yes, all we have to do is try a NOP FW command and see if it generates > an interrupt on completion. This will succeed within a millisecond in > the extremely worst case if interrupts are working, so even the > failure case will be quick. Ok - that sounds great. > Grant> TBH, I would expect IRQ lines to work on *ALL* platforms. > Grant> Basic part of PCI compliance dictates this. > > You would expect this but the supply of BIOS and kernel ACPI bugs > seems inexhaustible... Getting IRQ line routing wrong will show up for *any* device. I'll agree this case is possibly an ACPI bug - but in an experimental release of bleeding edge kernel version. That's no surprise. Normal users will (almost) never see this kind of failure. A coworker did build/boot (on rx2600) linus' bk tree 24h before 2.6.11-rc1 was tagged. I don't know of anyone with ZX1 platform following -mm tree. > Grant> It's clear not all platforms support MSI and the failure > Grant> mode may vary. So a test for MSI or MSI_X would be good. > Grant> And then the code can warn "MSI[-X] Failed - falling back > Grant> to IRQ Line". > > That's a good idea but it may take me a little while to get to it > because it's a little bit of a pain to unwind our MSI configuration > after we get to the point where we can see if it worked or not. Maybe that's a good reason to put the pci_enable_msi() right before the enable_irq() call path? (and ditto for free_irq()/pci_disable_msi()) Right now those two are not anywhere near each other and the MSI_HOWTO.txt is very clear there is a dependency - at least for MSI support. I still haven't studied details of MSI-X though I'm aware of some of the basic differences. I can submit a patch after I'm done messing with MSI on tg3...sound ok? > For > now we'll have to be satisfied with a diagnostic telling you to try > again without MSI... ok - that's reasonable. thanks, grant From roland at topspin.com Thu Jan 13 20:58:37 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 13 Jan 2005 20:58:37 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050114021358.GJ20200@esmail.cup.hp.com> (Grant Grundler's message of "Thu, 13 Jan 2005 18:13:58 -0800") References: <20050110134729.GH2351@cern.ch> <521xct1c32.fsf@topspin.com> <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> <52u0plqq2n.fsf@topspin.com> <20050113175546.GG2351@cern.ch> <523bx5qgc7.fsf@topspin.com> <20050113222931.GA20200@esmail.cup.hp.com> <52u0plorxs.fsf@topspin.com> <20050114021358.GJ20200@esmail.cup.hp.com> Message-ID: <523bx4obcy.fsf@topspin.com> Grant> Getting IRQ line routing wrong will show up for *any* Grant> device. I'll agree this case is possibly an ACPI bug - but Grant> in an experimental release of bleeding edge kernel Grant> version. That's no surprise. Normal users will (almost) Grant> never see this kind of failure. It seems that the fact that Mellanox HCAs show up as a device with a giant 128 MB BAR behind a bridge triggers all sorts of BIOS nastiness (since of course no BIOS vendor would ever test such a thing!). I've definitely seen HCA interrupt routing fail on many otherwise-working systems. (Things have been gradually improving but problems still crop up) Grant> Maybe that's a good reason to put the pci_enable_msi() Grant> right before the enable_irq() call path? (and ditto for Grant> free_irq()/pci_disable_msi()) Grant> Right now those two are not anywhere near each other and Grant> the MSI_HOWTO.txt is very clear there is a dependency - at Grant> least for MSI support. I still haven't studied details of Grant> MSI-X though I'm aware of some of the basic differences. I Grant> can submit a patch after I'm done messing with MSI on Grant> tg3...sound ok? There is a reason for the slightly awkward order. It turns out that there are some quirks with the Mellanox HCA and it's better not to touch the PCI header after the SYS_EN firmware command is executed. So the driver ends up having to set up MSI/MSI-X way before it's ready to enable interrupts. - R. From roland at topspin.com Thu Jan 13 21:45:51 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 13 Jan 2005 21:45:51 -0800 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: (Eric W. Biederman's message of "13 Jan 2005 18:19:45 -0700") References: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> <523bx5s5p1.fsf@topspin.com> Message-ID: <52u0pkmuls.fsf@topspin.com> Eric> I just did a quick look at the hypertransport spec. The Eric> mapping from MSI/MSI-X interrupts to native hypertransport Eric> interrupts was defined in rev 1.05 which post-dates the 8131 Eric> by a little but but it is certainly newer than the more Eric> recent chips. Thanks for the pointer. I looked at section 7.12 of the 1.05 HT spec, which defines the MSI mapping. The default MSI address range of 0xFEE_xxxxx does match the Intel-type APIC addresses that the Linux MSI code will program devices with. However, lspci shows that the 8131 in my systems have no such MSI HT capability block. If anyone has an nForce4 mobo, I would be _very_ interested to see the output of lspci -vvxxx, especially using lspci from the latest pciutils 2.1.99 (available from /pub/software/utils/pciutils/alpha on ftp.kernel.org). Eric> Given that hypertransport interrupts are simply encoded as Eric> posted write packets it may be possible to send an Eric> appropriate interrupt even without explicit bridge support. I would be quite surprised if you could generate a PCI write cycle that gets turned into an HT interrupt message without the bridge supporting MSI. It seems to me that any write cycle is either going to get turned into an upstream HT write if it is to a valid address, or get dropped or hose the system if it's to an invalid address. Thanks, Roland From roland at topspin.com Thu Jan 13 21:48:47 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 13 Jan 2005 21:48:47 -0800 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: <52u0pkmuls.fsf@topspin.com> (Roland Dreier's message of "Thu, 13 Jan 2005 21:45:51 -0800") References: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> <523bx5s5p1.fsf@topspin.com> <52u0pkmuls.fsf@topspin.com> Message-ID: <52pt08mugw.fsf@topspin.com> Roland> However, lspci shows that the 8131 in my systems have no Roland> such MSI HT capability block. By the way, the mythical AMD 8132 says it has MSI/MSI-X support: http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/30365.pdf - R. From ebiederman at lnxi.com Fri Jan 14 01:44:06 2005 From: ebiederman at lnxi.com (Eric W. Biederman) Date: 14 Jan 2005 02:44:06 -0700 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: <52u0pkmuls.fsf@topspin.com> References: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> <523bx5s5p1.fsf@topspin.com> <52u0pkmuls.fsf@topspin.com> Message-ID: Roland Dreier writes: > Eric> Given that hypertransport interrupts are simply encoded as > Eric> posted write packets it may be possible to send an > Eric> appropriate interrupt even without explicit bridge support. > > I would be quite surprised if you could generate a PCI write cycle > that gets turned into an HT interrupt message without the bridge > supporting MSI. It seems to me that any write cycle is either going > to get turned into an upstream HT write if it is to a valid address, > or get dropped or hose the system if it's to an invalid address. A HT interrupt message is a write cycle to a an address in the range 0xFDF8000000 - 0xFDF8FFFFFF. So a PCI write cycle getting turned into a HT write cycle is useful behavior. The question is can we generate an appropriate write to those addresses from the card, and will the 8131 filter a write to those addresses. Section J on page 283 of the HT 2.0a specification has a good reference as to the allocation of the HT address space. HT only has memory read/write cycles. Everything else is mapped to memory read/write cycles at a reserved address. Usually in the last 12GB before 1TB. Eric From torben.mathiasen at hp.com Fri Jan 14 02:16:50 2005 From: torben.mathiasen at hp.com (Torben Mathiasen) Date: Fri, 14 Jan 2005 11:16:50 +0100 Subject: [openib-general] Re: InfiniBand MAD device number request In-Reply-To: <52y8exot3v.fsf@topspin.com> References: <52brcce5b9.fsf@topspin.com> <20050107120451.GK4592@linux2> <52oefz23fr.fsf@topspin.com> <20050111145814.GP4249@linux2> <52y8exot3v.fsf@topspin.com> Message-ID: <20050114101650.GB4102@linux2> On Thu, Jan 13 2005, Roland Dreier wrote: > Torben> Allright, I begun looking into using the 2.6 specific > Torben> major/minor allocations. 2.6 allows 20 bit worth of > Torben> minors per major. I'll let you know once I know more. > > It seems that using a large major (ie > 255) is a good solution, since > we have no backwards compatibility to worry about. So I would propose > the following if it seems acceptable to you: reserve something like a > 2K or 4K chunk of minors in the large major space for IB (eg > 256:0...256:4095 -- of course the major isn't important if you want to > start assigning somewhere else) and assign the first 256 minors from > this range as /dev/infiniband/umad0 ... /dev/infiniband/umad255. > Yeah, I verified that we _can_ start the new 2.6 allocations, so you guys are going to be some of the first. But, initially we were talking 32 or 64 minors, now its 2K or 4K? If you really need that many, no problem, but try to think about if its really necessary. Thats a LOT of minors. Thanks, Torben From mst at mellanox.co.il Fri Jan 14 03:36:18 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Fri, 14 Jan 2005 13:36:18 +0200 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: References: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> <523bx5s5p1.fsf@topspin.com> <52u0pkmuls.fsf@topspin.com> Message-ID: <20050114113618.GA8785@mellanox.co.il> Hello! Quoting r. Eric W. Biederman (ebiederman at lnxi.com) "Re: [openib-general] has anyone tried MSI-X on Opteron?": > Roland Dreier writes: > > > Eric> Given that hypertransport interrupts are simply encoded as > > Eric> posted write packets it may be possible to send an > > Eric> appropriate interrupt even without explicit bridge support. > > > > I would be quite surprised if you could generate a PCI write cycle > > that gets turned into an HT interrupt message without the bridge > > supporting MSI. It seems to me that any write cycle is either going > > to get turned into an upstream HT write if it is to a valid address, > > or get dropped or hose the system if it's to an invalid address. > > A HT interrupt message is a write cycle to a an address in the range > 0xFDF8000000 - 0xFDF8FFFFFF. So a PCI write cycle getting turned > into a HT write cycle is useful behavior. The question is can we > generate an appropriate write to those addresses from the card. Sure, just program the MSI register to these values, and patch the driver to apply MSI and not regular interrupt to the EQs. mst From mst at mellanox.co.il Fri Jan 14 06:41:17 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Fri, 14 Jan 2005 16:41:17 +0200 Subject: [openib-general] Re: mmap(/dev/mem) causing sigbus In-Reply-To: <20050113152934.446eac9e.davem@davemloft.net> References: <1105657934.2527.96.camel@duffman> <20050113152934.446eac9e.davem@davemloft.net> Message-ID: <20050114144117.GA9254@mellanox.co.il> Hello! Quoting r. David S. Miller (davem at davemloft.net) "Re: mmap(/dev/mem) causing sigbus": > On Thu, 13 Jan 2005 15:12:14 -0800 > Tom Duffy wrote: > > > It seems that there is an issue with either mmap or mmap'ing /dev/mem on > > sparc64. A tool (mstflint) for flashing firmware for Mellanox > > Infiniband HCA's is crashing on sparc64. It mmap's /dev/mem and when it > > accesses it, a bus error is generated. > > > > Should this work? > > It's not meant to be used at all. We have abstracted out a way > to portably mmap() pci devices by opening /proc/bus/pci/* nodes, > running the appropriate ioctl() to choose I/O or MEM space, > then mmap()'ing on the fd to mmap the PCI device resources. > > At the very least, i386 and ppc support this interface as well. OK. I added an option for mmapping /proc/bus/pci, although I dont have the time to test it today, but I checked in disabled at compile time all the same. Tom, please clear CONFIG_USE_DEV_MEM at the top of mtcr.h and test, and let me know, this way I'll be able to work on it on sunday. mst From mst at mellanox.co.il Fri Jan 14 06:46:10 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Fri, 14 Jan 2005 16:46:10 +0200 Subject: [openib-general] Re: mmap(/dev/mem) causing sigbus In-Reply-To: <20050114144117.GA9254@mellanox.co.il> References: <1105657934.2527.96.camel@duffman> <20050113152934.446eac9e.davem@davemloft.net> <20050114144117.GA9254@mellanox.co.il> Message-ID: <20050114144610.GA9283@mellanox.co.il> Hello! Quoting r. Michael S. Tsirkin (mst at mellanox.co.il) "[openib-general] Re: mmap(/dev/mem) causing sigbus": > Hello! > Quoting r. David S. Miller (davem at davemloft.net) "Re: mmap(/dev/mem) causing sigbus": > > On Thu, 13 Jan 2005 15:12:14 -0800 > > Tom Duffy wrote: > > > > > It seems that there is an issue with either mmap or mmap'ing /dev/mem on > > > sparc64. A tool (mstflint) for flashing firmware for Mellanox > > > Infiniband HCA's is crashing on sparc64. It mmap's /dev/mem and when it > > > accesses it, a bus error is generated. > > > > > > Should this work? > > > > It's not meant to be used at all. We have abstracted out a way > > to portably mmap() pci devices by opening /proc/bus/pci/* nodes, > > running the appropriate ioctl() to choose I/O or MEM space, > > then mmap()'ing on the fd to mmap the PCI device resources. > > > > At the very least, i386 and ppc support this interface as well. > > OK. I added an option for mmapping /proc/bus/pci, although > I dont have the time to test it today, but I checked in > disabled at compile time all the same. > Tom, please clear CONFIG_USE_DEV_MEM at the top of > mtcr.h and test, and let me know, this way I'll be > able to work on it on sunday. > > > mst I now tested it on x86 and it works. Still, I wont change the default until I test it some more. Tom, pls try with latest svn , changing CONFIG_USE_DEV_MEM from 1 to 0 in mtcr.h. If there are problems I'll work on it on Sunday, same goes for your error handling patch. mst From roland at topspin.com Fri Jan 14 07:17:13 2005 From: roland at topspin.com (Roland Dreier) Date: Fri, 14 Jan 2005 07:17:13 -0800 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: (Eric W. Biederman's message of "14 Jan 2005 02:44:06 -0700") References: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> <523bx5s5p1.fsf@topspin.com> <52u0pkmuls.fsf@topspin.com> Message-ID: <52llawm45i.fsf@topspin.com> Eric> A HT interrupt message is a write cycle to a an address in Eric> the range 0xFDF8000000 - 0xFDF8FFFFFF. So a PCI write cycle Eric> getting turned into a HT write cycle is useful behavior. Eric> The question is can we generate an appropriate write to Eric> those addresses from the card, and will the 8131 filter a Eric> write to those addresses. I'd be surprised if a bridge would turn a PCI cycle into an HT write with IntrInfo present instead of byte enables though. (Unless the bridge knew about MSI) - Roland From roland at topspin.com Fri Jan 14 10:31:35 2005 From: roland at topspin.com (Roland Dreier) Date: Fri, 14 Jan 2005 10:31:35 -0800 Subject: [openib-general] Re: InfiniBand MAD device number request In-Reply-To: <20050114101650.GB4102@linux2> (Torben Mathiasen's message of "Fri, 14 Jan 2005 11:16:50 +0100") References: <52brcce5b9.fsf@topspin.com> <20050107120451.GK4592@linux2> <52oefz23fr.fsf@topspin.com> <20050111145814.GP4249@linux2> <52y8exot3v.fsf@topspin.com> <20050114101650.GB4102@linux2> Message-ID: <527jmfn9q0.fsf@topspin.com> Torben> But, initially we were talking 32 or 64 minors, now its 2K Torben> or 4K? If you really need that many, no problem, but try Torben> to think about if its really necessary. Thats a LOT of Torben> minors. Fair enough, I was just getting overexcited by all the space that's available up there. Let's just allocate 64 minors for /dev/infiniband/umad0 ... /dev/infiniband/umad63 and be ready to allocate at least two or three more chunks for 64 minors soon. Thanks, Roland From rminnich at lanl.gov Fri Jan 14 12:07:43 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Fri, 14 Jan 2005 13:07:43 -0700 (MST) Subject: [openib-general] got ipoib up once but not twice :-) Message-ID: OK, I had all of bluesteel up yesterday. It all "just worked" insmod the right stuff on front end, i.e. ib_ipoib 53856 0 ib_sa 12564 1 ib_ipoib ib_umad 12224 5 ib_mthca 90976 9 ib_mad 29872 3 ib_sa,ib_umad,ib_mthca ib_core 43264 67 ib_ipoib,ib_sa,ib_umad,ib_mthca,ib_mad insmod the right stuff on the nodes, i.e. ib_mthca 90976 0 ib_umad 12224 0 ib_ipoib 53856 0 ib_sa 12564 1 ib_ipoib ib_mad 29872 3 ib_mthca,ib_umad,ib_sa ib_core 43264 5 ib_mthca,ib_umad,ib_ipoib,ib_sa,ib_mad run opensm -v (get lots of messages that look ok) (you probably don't want to see this ...) ipconfig front end ib0 Link encap:UNSPEC HWaddr 00-00-04-04-FE-80-00-00-00-00-00-00-00-00-00-00 inet addr:10.4.0.1 Bcast:10.255.255.255 Mask:255.0.0.0 inet6 addr: fe80::202:c901:8a0:3e61/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:2044 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:73 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:128 RX bytes:0 (0.0 b) TX bytes:4388 (4.2 Kb) ipconfig bproc slaves ib0 Link encap:UNSPEC HWaddr 00-00-04-04-FE-80-00-00-00-00-00-00-00-00-00-00 inet addr:10.4.2.10 Bcast:10.255.255.255 Mask:255.0.0.0 UP BROADCAST MULTICAST MTU:2044 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:128 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) All this was fine. As of today, however, I've got opensm up ok, and the messages all look ok; the kernel messages on slave nodes look fine. But, sadly, no joy on ipoib. I'm not sure where to start looking given that all the positive indicators are still positive. What's a sensible thing to do at this point? many thanks ron From eitan at mellanox.co.il Fri Jan 14 12:13:02 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Fri, 14 Jan 2005 22:13:02 +0200 Subject: [openib-general] RE: osm_sa_pkey_record.c when VENDOR_RMPP_SUPPORT defined Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC34@mtlex01.yok.mtl.com> Hi Hal, [EZ] You wrote: It looks to me like osm_sa_pkey_record.c (line 513) is missing the #else clause as shown below (and in all the other SA files where appropriate). If you concur, I will generate the patch and apply. [EZ] Yes you can add this in. But please note the usage of setting the rmpp_flags in the OpenSM was done for supporting the IB-AL interface that required the flags to be set to RMPP_FLAGS_ACTIVE to start the RMPP send. In the our implementation of RMPP this is not required (osm_vendor_mlx.c ). We base the RMPP send on the size of the sent MAD. So if a single record is returned in one packet it goes out as a simple send. -------------- next part -------------- An HTML attachment was scrubbed... URL: From halr at voltaire.com Fri Jan 14 12:11:31 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 14 Jan 2005 15:11:31 -0500 Subject: [openib-general] got ipoib up once but not twice :-) In-Reply-To: References: Message-ID: <1105733491.4649.4281.camel@localhost.localdomain> Hi Ron, On Fri, 2005-01-14 at 15:07, Ronald G. Minnich wrote: > As of today, however, I've got opensm up ok, and the messages all look ok; > the kernel messages on slave nodes look fine. But, sadly, no joy on ipoib. > > > I'm not sure where to start looking given that all the positive indicators > are still positive. What's a sensible thing to do at this point? A few questions to try to understand what the problem could be: Are all the links active ? (What is your topology ?) Does IPoIB work if you down and then reup the ib0 interfaces ? -- Hal From halr at voltaire.com Fri Jan 14 12:24:56 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 14 Jan 2005 15:24:56 -0500 Subject: [openib-general] RE: osm_sa_pkey_record.c when VENDOR_RMPP_SUPPORT defined In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEC34@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6047EEC34@mtlex01.yok.mtl.com> Message-ID: <1105734295.4649.4333.camel@localhost.localdomain> Hi Eitan, On Fri, 2005-01-14 at 15:13, Eitan Zahavi wrote: > [EZ] You wrote: > It looks to me like osm_sa_pkey_record.c (line 513) is missing the > #else > clause as shown below (and in all the other SA files where > appropriate). > If you concur, I will generate the patch and apply. > > [EZ] Yes you can add this in. OK. Thanks. > But please note the usage of setting the rmpp_flags in the OpenSM was > done for supporting the IB-AL interface that required the flags to be > set to RMPP_FLAGS_ACTIVE to start the RMPP send. In the our > implementation of RMPP this is not required (osm_vendor_mlx.c ). We > base the RMPP send on the size of the sent MAD. So if a single record > is returned in one packet it goes out as a simple send. But there are single packet RMPP responses so how are these distinguished from simple sends ? Certain methods are required to use RMPP whether it is a single packet response or not. Am I misunderstanding ? Thanks. -- Hal From tduffy at sun.com Fri Jan 14 14:09:38 2005 From: tduffy at sun.com (Tom Duffy) Date: Fri, 14 Jan 2005 14:09:38 -0800 Subject: [openib-general] [PATCH] support domain names in /proc/bus/pci names In-Reply-To: <20050114144117.GA9254@mellanox.co.il> References: <1105657934.2527.96.camel@duffman> <20050113152934.446eac9e.davem@davemloft.net> <20050114144117.GA9254@mellanox.co.il> Message-ID: <1105740578.22751.10.camel@duffman> On Fri, 2005-01-14 at 16:41 +0200, Michael S. Tsirkin wrote: > OK. I added an option for mmapping /proc/bus/pci This patch adds support for pci domain names in the path under /proc/bus/pci. Singed-off-by: Tom Duffy Index: mtcr.h =================================================================== --- mtcr.h (revision 1534) +++ mtcr.h (working copy) @@ -136,7 +136,8 @@ /* Find the specific device by scanning /proc/bus/pci/devices */ int mfind(const char* name, off_t* offset_p, - unsigned *bus_p, unsigned *dev_p, unsigned *func_p) + unsigned *bus_p, unsigned *dev_p, unsigned *func_p, + int *domain_p) { FILE* f; unsigned irq; @@ -158,7 +159,7 @@ unsigned long long offset; - unsigned my_domain = 0; + int my_domain = -1; unsigned my_bus; unsigned my_dev; unsigned my_func; @@ -180,7 +181,7 @@ name_parsed: - if (my_domain) { + if (my_domain > 0) { fprintf(stderr,"Device %s: domain number %#x detected.\n" "Only domain 0x0 supported for now, sorry.\n", name, my_domain); @@ -266,6 +267,7 @@ *bus_p=bus; *dev_p=dev; *func_p=func; + *domain_p=my_domain; fclose(f); return 0; @@ -307,16 +309,22 @@ { #if CONFIG_ENABLE_MMAP unsigned bus, dev, func; - if (mfind(name,&offset,&bus,&dev,&func)) goto find_failed; + int domain; + if (mfind(name,&offset,&bus,&dev,&func,&domain)) goto find_failed; #if CONFIG_USE_DEV_MEM mf->fd = open("/dev/mem", O_RDWR | O_SYNC); if (mf->fd<0) goto open_failed; #else { - char file_name[]="/proc/bus/pci/00/00.0"; - sprintf(file_name,"/proc/bus/pci/%2.2x/%2.2x.%1.1x", + char file_name[]="/proc/bus/pci/0000:00/00.0"; + if (domain >= 0) { + sprintf(file_name,"/proc/bus/pci/%4.4d:%2.2x/%2.2x.%1.1x", + domain,bus,dev,func); + } else { + sprintf(file_name,"/proc/bus/pci/%2.2x/%2.2x.%1.1x", bus,dev,func); + } mf->fd = open(file_name, O_RDWR | O_SYNC); if (mf->fd<0) goto open_failed; -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From roland at topspin.com Fri Jan 14 14:22:06 2005 From: roland at topspin.com (Roland Dreier) Date: Fri, 14 Jan 2005 14:22:06 -0800 Subject: [openib-general] [PATCH] Fix capability mask enums in ib_verbs.h Message-ID: <52pt07lkhd.fsf@topspin.com> If I'm not mistaken, the capability mask enum in ib_verbs.h is backwards. According to chapter one of the IB spec, bits are numbered with bit 0 being the least significant and bit 31 the most significant. The PortInfo CapabilityMask starts with IsSM at bit 1, IsNoticeSupported at bit 2, etc. (In fact the enum was not just backwards -- some of the subtraction from 31 was wrong, so for example even if it were correct for IB_PORT_SM to be the most significant capability bit, it should have been 1 << 30 with one reserved bit at the very top of the word) In any case here's a patch to fix it up (and add the 1.2 spec capabilities while I'm at it). I think this is right, and it matches the values I see in the real world in my tests. Can someone else confirm this is correct before I commit? - Roland Index: infiniband/include/ib_verbs.h =================================================================== --- infiniband/include/ib_verbs.h (revision 1524) +++ infiniband/include/ib_verbs.h (working copy) @@ -154,25 +154,28 @@ }; enum ib_port_cap_flags { - IB_PORT_SM = (1<<31), - IB_PORT_NOTICE_SUP = (1<<30), - IB_PORT_TRAP_SUP = (1<<29), - IB_PORT_AUTO_MIGR_SUP = (1<<27), - IB_PORT_SL_MAP_SUP = (1<<26), - IB_PORT_MKEY_NVRAM = (1<<25), - IB_PORT_PKEY_NVRAM = (1<<24), - IB_PORT_LED_INFO_SUP = (1<<23), - IB_PORT_SM_DISABLED = (1<<22), - IB_PORT_SYS_IMAGE_GUID_SUP = (1<<21), - IB_PORT_PKEY_SW_EXT_PORT_TRAP_SUP = (1<<20), - IB_PORT_CM_SUP = (1<<16), - IB_PORT_SNMP_TUNNEL_SUP = (1<<15), - IB_PORT_REINIT_SUP = (1<<14), - IB_PORT_DEVICE_MGMT_SUP = (1<<13), - IB_PORT_VENDOR_CLASS_SUP = (1<<12), - IB_PORT_DR_NOTICE_SUP = (1<<11), - IB_PORT_PORT_NOTICE_SUP = (1<<10), - IB_PORT_BOOT_MGMT_SUP = (1<<9) + IB_PORT_SM = 1 << 1, + IB_PORT_NOTICE_SUP = 1 << 2, + IB_PORT_TRAP_SUP = 1 << 3, + IB_PORT_OPT_IPD_SUP = 1 << 4, + IB_PORT_AUTO_MIGR_SUP = 1 << 5, + IB_PORT_SL_MAP_SUP = 1 << 6, + IB_PORT_MKEY_NVRAM = 1 << 7, + IB_PORT_PKEY_NVRAM = 1 << 8, + IB_PORT_LED_INFO_SUP = 1 << 9, + IB_PORT_SM_DISABLED = 1 << 10, + IB_PORT_SYS_IMAGE_GUID_SUP = 1 << 11, + IB_PORT_PKEY_SW_EXT_PORT_TRAP_SUP = 1 << 12, + IB_PORT_CM_SUP = 1 << 16, + IB_PORT_SNMP_TUNNEL_SUP = 1 << 17, + IB_PORT_REINIT_SUP = 1 << 18, + IB_PORT_DEVICE_MGMT_SUP = 1 << 19, + IB_PORT_VENDOR_CLASS_SUP = 1 << 20, + IB_PORT_DR_NOTICE_SUP = 1 << 21, + IB_PORT_CAP_MASK_NOTICE_SUP = 1 << 22, + IB_PORT_BOOT_MGMT_SUP = 1 << 23, + IB_PORT_LINK_LATENCY_SUP = 1 << 24, + IB_PORT_CLIENT_REG_SUP = 1 << 25 }; enum ib_port_width { From tduffy at sun.com Fri Jan 14 14:25:27 2005 From: tduffy at sun.com (Tom Duffy) Date: Fri, 14 Jan 2005 14:25:27 -0800 Subject: [openib-general] Re: mmap(/dev/mem) causing sigbus In-Reply-To: <20050114144610.GA9283@mellanox.co.il> References: <1105657934.2527.96.camel@duffman> <20050113152934.446eac9e.davem@davemloft.net> <20050114144117.GA9254@mellanox.co.il> <20050114144610.GA9283@mellanox.co.il> Message-ID: <1105741527.22751.14.camel@duffman> On Fri, 2005-01-14 at 16:46 +0200, Michael S. Tsirkin wrote: > I now tested it on x86 and it works. Still, I wont > change the default until I test it some more. > Tom, pls try with latest svn , changing CONFIG_USE_DEV_MEM > from 1 to 0 in mtcr.h. If there are problems I'll > work on it on Sunday, same goes for your error handling > patch. tat:~# ./mstflint -d 0000:81:00.0 q Device open failed: Primary extended query larger than TOTAL_QUERY_SIZE -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From roland at topspin.com Fri Jan 14 14:28:50 2005 From: roland at topspin.com (Roland Dreier) Date: Fri, 14 Jan 2005 14:28:50 -0800 Subject: [openib-general] [PATCH] Fix capability mask enums in ib_verbs.h In-Reply-To: <52pt07lkhd.fsf@topspin.com> (Roland Dreier's message of "Fri, 14 Jan 2005 14:22:06 -0800") References: <52pt07lkhd.fsf@topspin.com> Message-ID: <52hdljlk65.fsf@topspin.com> This patch implements setting the IsSM capability bit from userspace by creating special files /dev/infiniband/issmN that set the bit when opened and clear it when closed. Additional opens of the same file will block or return EAGAIN depending on whether the O_NONBLOCK flag is passed to open(). The precise API is also described in the patch to the doc file. Please test this out and let me know if it does what is required. Also if there are objections to the interface let me know. (For this patch to set the correct capability bit, the previous patch to ib_verbs.h is required) - Roland Index: infiniband/core/user_mad.c =================================================================== --- infiniband/core/user_mad.c (revision 1524) +++ infiniband/core/user_mad.c (working copy) @@ -46,6 +46,7 @@ #include #include +#include #include #include @@ -55,7 +56,7 @@ MODULE_LICENSE("Dual BSD/GPL"); enum { - IB_UMAD_MAX_PORTS = 256, + IB_UMAD_MAX_PORTS = 64, IB_UMAD_MAX_AGENTS = 32 }; @@ -63,6 +64,12 @@ int devnum; struct cdev dev; struct class_device class_dev; + + int sm_devnum; + struct cdev sm_dev; + struct class_device sm_class_dev; + struct semaphore sm_sem; + struct ib_device *ib_dev; struct ib_umad_device *umad_dev; u8 port_num; @@ -93,7 +100,7 @@ static dev_t base_dev; static spinlock_t map_lock; -static DECLARE_BITMAP(dev_map, IB_UMAD_MAX_PORTS); +static DECLARE_BITMAP(dev_map, IB_UMAD_MAX_PORTS * 2); static void ib_umad_add_one(struct ib_device *device); static void ib_umad_remove_one(struct ib_device *device); @@ -511,6 +518,54 @@ .release = ib_umad_close }; +static int ib_umad_sm_open(struct inode *inode, struct file *filp) +{ + struct ib_umad_port *port = + container_of(inode->i_cdev, struct ib_umad_port, sm_dev); + struct ib_port_modify props = { + .set_port_cap_mask = IB_PORT_SM + }; + int ret; + + if (filp->f_flags & O_NONBLOCK) { + if (down_trylock(&port->sm_sem)) + return -EAGAIN; + } else { + if (down_interruptible(&port->sm_sem)) + return -ERESTARTSYS; + } + + ret = ib_modify_port(port->ib_dev, port->port_num, 0, &props); + if (ret) { + up(&port->sm_sem); + return ret; + } + + filp->private_data = port; + + return 0; +} + +static int ib_umad_sm_close(struct inode *inode, struct file *filp) +{ + struct ib_umad_port *port = filp->private_data; + struct ib_port_modify props = { + .clr_port_cap_mask = IB_PORT_SM + }; + int ret; + + ret = ib_modify_port(port->ib_dev, port->port_num, 0, &props); + up(&port->sm_sem); + + return ret; +} + +static struct file_operations umad_sm_fops = { + .owner = THIS_MODULE, + .open = ib_umad_sm_open, + .release = ib_umad_sm_close +}; + static struct ib_client umad_client = { .name = "umad", .add = ib_umad_add_one, @@ -519,10 +574,12 @@ static ssize_t show_dev(struct class_device *class_dev, char *buf) { - struct ib_umad_port *port = - container_of(class_dev, struct ib_umad_port, class_dev); + struct ib_umad_port *port = class_get_devdata(class_dev); - return print_dev_t(buf, port->dev.dev); + if (class_dev == &port->class_dev) + return print_dev_t(buf, port->dev.dev); + else + return print_dev_t(buf, port->sm_dev.dev); } static CLASS_DEVICE_ATTR(dev, S_IRUGO, show_dev, NULL); @@ -554,11 +611,16 @@ static void ib_umad_release_port(struct class_device *class_dev) { - struct ib_umad_port *port = - container_of(class_dev, struct ib_umad_port, class_dev); + struct ib_umad_port *port = class_get_devdata(class_dev); - cdev_del(&port->dev); - clear_bit(port->devnum, dev_map); + if (class_dev == &port->class_dev) { + cdev_del(&port->dev); + clear_bit(port->devnum, dev_map); + } else { + cdev_del(&port->sm_dev); + clear_bit(port->sm_devnum, dev_map); + } + kref_put(&port->umad_dev->ref, ib_umad_release_dev); } @@ -573,6 +635,94 @@ } static CLASS_ATTR(abi_version, S_IRUGO, show_abi_version, NULL); +static int ib_umad_init_port(struct ib_device *device, int port_num, + struct ib_umad_port *port) +{ + spin_lock(&map_lock); + port->devnum = find_first_zero_bit(dev_map, IB_UMAD_MAX_PORTS); + if (port->devnum >= IB_UMAD_MAX_PORTS) { + spin_unlock(&map_lock); + return -1; + } + port->sm_devnum = find_next_zero_bit(dev_map, IB_UMAD_MAX_PORTS * 2, IB_UMAD_MAX_PORTS); + if (port->sm_devnum >= IB_UMAD_MAX_PORTS * 2) { + spin_unlock(&map_lock); + return -1; + } + set_bit(port->devnum, dev_map); + set_bit(port->sm_devnum, dev_map); + spin_unlock(&map_lock); + + port->ib_dev = device; + port->port_num = port_num; + init_MUTEX(&port->sm_sem); + + cdev_init(&port->dev, &umad_fops); + port->dev.owner = THIS_MODULE; + kobject_set_name(&port->dev.kobj, "umad%d", port->devnum); + if (cdev_add(&port->dev, base_dev + port->devnum, 1)) + return -1; + + port->class_dev.class = &umad_class; + port->class_dev.dev = device->dma_device; + + snprintf(port->class_dev.class_id, BUS_ID_SIZE, "umad%d", port->devnum); + + if (class_device_register(&port->class_dev)) + goto err_cdev; + + class_set_devdata(&port->class_dev, port); + kref_get(&port->umad_dev->ref); + + if (class_device_create_file(&port->class_dev, &class_device_attr_dev)) + goto err_class; + if (class_device_create_file(&port->class_dev, &class_device_attr_ibdev)) + goto err_class; + if (class_device_create_file(&port->class_dev, &class_device_attr_port)) + goto err_class; + + cdev_init(&port->sm_dev, &umad_sm_fops); + port->sm_dev.owner = THIS_MODULE; + kobject_set_name(&port->dev.kobj, "issm%d", port->sm_devnum - IB_UMAD_MAX_PORTS); + if (cdev_add(&port->sm_dev, base_dev + port->sm_devnum, 1)) + return -1; + + port->sm_class_dev.class = &umad_class; + port->sm_class_dev.dev = device->dma_device; + + snprintf(port->sm_class_dev.class_id, BUS_ID_SIZE, "issm%d", port->sm_devnum - IB_UMAD_MAX_PORTS); + + if (class_device_register(&port->sm_class_dev)) + goto err_sm_cdev; + + class_set_devdata(&port->sm_class_dev, port); + kref_get(&port->umad_dev->ref); + + if (class_device_create_file(&port->sm_class_dev, &class_device_attr_dev)) + goto err_sm_class; + if (class_device_create_file(&port->sm_class_dev, &class_device_attr_ibdev)) + goto err_sm_class; + if (class_device_create_file(&port->sm_class_dev, &class_device_attr_port)) + goto err_sm_class; + + return 0; + +err_sm_class: + class_device_unregister(&port->sm_class_dev); + +err_sm_cdev: + cdev_del(&port->sm_dev); + +err_class: + class_device_unregister(&port->class_dev); + +err_cdev: + cdev_del(&port->dev); + clear_bit(port->devnum, dev_map); + + return -1; +} + static void ib_umad_add_one(struct ib_device *device) { struct ib_umad_device *umad_dev; @@ -601,58 +751,20 @@ for (i = s; i <= e; ++i) { umad_dev->port[i - s].umad_dev = umad_dev; - kref_get(&umad_dev->ref); - spin_lock(&map_lock); - umad_dev->port[i - s].devnum = - find_first_zero_bit(dev_map, IB_UMAD_MAX_PORTS); - if (umad_dev->port[i - s].devnum >= IB_UMAD_MAX_PORTS) { - spin_unlock(&map_lock); + if (ib_umad_init_port(device, i, &umad_dev->port[i - s])) goto err; - } - set_bit(umad_dev->port[i - s].devnum, dev_map); - spin_unlock(&map_lock); - - umad_dev->port[i - s].ib_dev = device; - umad_dev->port[i - s].port_num = i; - - cdev_init(&umad_dev->port[i - s].dev, &umad_fops); - umad_dev->port[i - s].dev.owner = THIS_MODULE; - kobject_set_name(&umad_dev->port[i - s].dev.kobj, - "umad%d", umad_dev->port[i - s].devnum); - if (cdev_add(&umad_dev->port[i - s].dev, base_dev + - umad_dev->port[i - s].devnum, 1)) - goto err; - - umad_dev->port[i - s].class_dev.class = &umad_class; - umad_dev->port[i - s].class_dev.dev = device->dma_device; - snprintf(umad_dev->port[i - s].class_dev.class_id, - BUS_ID_SIZE, "umad%d", umad_dev->port[i - s].devnum); - if (class_device_register(&umad_dev->port[i - s].class_dev)) - goto err_class; - - if (class_device_create_file(&umad_dev->port[i - s].class_dev, - &class_device_attr_dev)) - goto err_class; - if (class_device_create_file(&umad_dev->port[i - s].class_dev, - &class_device_attr_ibdev)) - goto err_class; - if (class_device_create_file(&umad_dev->port[i - s].class_dev, - &class_device_attr_port)) - goto err_class; } ib_set_client_data(device, &umad_client, umad_dev); return; -err_class: - cdev_del(&umad_dev->port[i - s].dev); - clear_bit(umad_dev->port[i - s].devnum, dev_map); - err: - while (--i >= s) + while (--i >= s) { class_device_unregister(&umad_dev->port[i - s].class_dev); + class_device_unregister(&umad_dev->port[i - s].sm_class_dev); + } kref_put(&umad_dev->ref, ib_umad_release_dev); } @@ -665,8 +777,10 @@ if (!umad_dev) return; - for (i = 0; i <= umad_dev->end_port - umad_dev->start_port; ++i) + for (i = 0; i <= umad_dev->end_port - umad_dev->start_port; ++i) { class_device_unregister(&umad_dev->port[i].class_dev); + class_device_unregister(&umad_dev->port[i].sm_class_dev); + } kref_put(&umad_dev->ref, ib_umad_release_dev); } @@ -677,7 +791,7 @@ spin_lock_init(&map_lock); - ret = alloc_chrdev_region(&base_dev, 0, IB_UMAD_MAX_PORTS, + ret = alloc_chrdev_region(&base_dev, 0, IB_UMAD_MAX_PORTS * 2, "infiniband_mad"); if (ret) { printk(KERN_ERR "user_mad: couldn't get device number\n"); @@ -719,7 +833,7 @@ class_unregister(&umad_class); out_chrdev: - unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS); + unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2); out: return ret; @@ -731,7 +845,7 @@ unregister_ioctl32_conversion(IB_USER_MAD_UNREGISTER_AGENT); ib_unregister_client(&umad_client); class_unregister(&umad_class); - unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS); + unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2); } module_init(ib_umad_init); Index: docs/user_mad.txt =================================================================== --- docs/user_mad.txt (revision 1524) +++ docs/user_mad.txt (working copy) @@ -2,9 +2,10 @@ Device files - Each port of each InfiniBand device has a "umad" device attached. - For example, a two-port HCA will have two devices, while a switch - will have one device (for switch port 0). + Each port of each InfiniBand device has a "umad" device and an + "issm" device attached. For example, a two-port HCA will have two + umad devices and two issm devices, while a switch will have one + device of each type (for switch port 0). Creating MAD agents @@ -63,19 +64,36 @@ if (ret != sizeof mad) perror("write"); +Setting IsSM Capability Bit + + To set the IsSM capability bit for a port, simply open the + corresponding issm device file. If the IsSM bit is already set, + then the open call will block until the bit is cleared (or return + immediately with errno set to EAGAIN if the O_NONBLOCK flag is + passed to open()). The IsSM bit will be cleared when the issm file + is closed. No read, write or other operations can be performed on + the issm file. + /dev files To create the appropriate character device files automatically with udev, a rule like KERNEL="umad*", NAME="infiniband/%k" + KERNEL="issm*", NAME="infiniband/%k" - can be used. This will create a device node named + can be used. This will create device nodes named /dev/infiniband/umad0 + /dev/infiniband/issm0 for the first port, and so on. The InfiniBand device and port - associated with this device can be determined from the files + associated with these devices can be determined from the files /sys/class/infiniband_mad/umad0/ibdev /sys/class/infiniband_mad/umad0/port + + and + + /sys/class/infiniband_mad/issm0/ibdev + /sys/class/infiniband_mad/issm0/port From tomduffy at dslextreme.com Fri Jan 14 14:30:34 2005 From: tomduffy at dslextreme.com (Tom Duffy) Date: Fri, 14 Jan 2005 14:30:34 -0800 Subject: [openib-general] Re: mmap(/dev/mem) causing sigbus In-Reply-To: <20050113152934.446eac9e.davem@davemloft.net> References: <1105657934.2527.96.camel@duffman> <20050113152934.446eac9e.davem@davemloft.net> Message-ID: <1105741834.22751.17.camel@duffman> On Thu, 2005-01-13 at 15:29 -0800, David S. Miller wrote: > It's not meant to be used at all. We have abstracted out a way > to portably mmap() pci devices by opening /proc/bus/pci/* nodes, > running the appropriate ioctl() to choose I/O or MEM space, > then mmap()'ing on the fd to mmap the PCI device resources. > > At the very least, i386 and ppc support this interface as well. Dave, thanks for the info. The maintainer of the tool has updated it to use the /proc/bus/pci method. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mshefty at ichips.intel.com Fri Jan 14 14:35:33 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Fri, 14 Jan 2005 14:35:33 -0800 Subject: [openib-general] [PATCH] Fix capability mask enums in ib_verbs.h In-Reply-To: <52pt07lkhd.fsf@topspin.com> References: <52pt07lkhd.fsf@topspin.com> Message-ID: <41E84935.3000307@ichips.intel.com> Roland Dreier wrote: > In any case here's a patch to fix it up (and add the 1.2 spec > capabilities while I'm at it). I think this is right, and it matches > the values I see in the real world in my tests. Can someone else > confirm this is correct before I commit? You're correct in that the values are off. > + IB_PORT_SM = 1 << 1, I'm wondering if we should define IB_PORT_SM in host or network order. Your patch looks fine to apply though. - Sean From roland at topspin.com Fri Jan 14 14:52:19 2005 From: roland at topspin.com (Roland Dreier) Date: Fri, 14 Jan 2005 14:52:19 -0800 Subject: [openib-general] [PATCH] Fix capability mask enums in ib_verbs.h In-Reply-To: <41E84935.3000307@ichips.intel.com> (Sean Hefty's message of "Fri, 14 Jan 2005 14:35:33 -0800") References: <52pt07lkhd.fsf@topspin.com> <41E84935.3000307@ichips.intel.com> Message-ID: <52acrblj30.fsf@topspin.com> Sean> I'm wondering if we should define IB_PORT_SM in host or Sean> network order. Your patch looks fine to apply though. OK, I just committed it. Thanks, Roland From iod00d at hp.com Fri Jan 14 15:23:13 2005 From: iod00d at hp.com (Grant Grundler) Date: Fri, 14 Jan 2005 15:23:13 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <523bx4obcy.fsf@topspin.com> References: <20050112104841.GH2351@cern.ch> <52hdlmtuxn.fsf@topspin.com> <20050113154349.GB2351@cern.ch> <52u0plqq2n.fsf@topspin.com> <20050113175546.GG2351@cern.ch> <523bx5qgc7.fsf@topspin.com> <20050113222931.GA20200@esmail.cup.hp.com> <52u0plorxs.fsf@topspin.com> <20050114021358.GJ20200@esmail.cup.hp.com> <523bx4obcy.fsf@topspin.com> Message-ID: <20050114232313.GA24241@esmail.cup.hp.com> On Thu, Jan 13, 2005 at 08:58:37PM -0800, Roland Dreier wrote: > It seems that the fact that Mellanox HCAs show up as a device with a > giant 128 MB BAR behind a bridge triggers all sorts of BIOS nastiness > (since of course no BIOS vendor would ever test such a thing!). Yeah - except on high end graphics cards. It's becoming more common though. But if exposing is causing such problems, shouldn't mellanox try to make it easier to hide that BAR like the HP firmware does? Ie make it a user choice and not a vendor choice. I guess vendors make that choice and don't want extra support costs. > I've > definitely seen HCA interrupt routing fail on many otherwise-working > systems. (Things have been gradually improving but problems still > crop up) "gradually improving" might be (partially) a result of users being "trained" to not use machines with broken BIOS. > There is a reason for the slightly awkward order. It turns out that > there are some quirks with the Mellanox HCA and it's better not to > touch the PCI header after the SYS_EN firmware command is executed. > So the driver ends up having to set up MSI/MSI-X way before it's ready > to enable interrupts. Ok - given the complexity of the HCA firmware and the fact that at least parts of config space are emulated by HCA firmware this makes sense. thanks, grant From rminnich at lanl.gov Fri Jan 14 19:36:31 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Fri, 14 Jan 2005 20:36:31 -0700 (MST) Subject: [openib-general] got ipoib up once but not twice :-) In-Reply-To: <1105733491.4649.4281.camel@localhost.localdomain> References: <1105733491.4649.4281.camel@localhost.localdomain> Message-ID: On Fri, 14 Jan 2005, Hal Rosenstock wrote: > Are all the links active ? (What is your topology ?) It is a hierarchy of 96-port switches. Is there an openib command I can use to test state? Going to look at the 'blinken lights' is a headache due to the location of the cluster. > Does IPoIB work if you down and then reup the ib0 interfaces ? I'll try that. ron From roland at topspin.com Fri Jan 14 19:38:56 2005 From: roland at topspin.com (Roland Dreier) Date: Fri, 14 Jan 2005 19:38:56 -0800 Subject: [openib-general] got ipoib up once but not twice :-) In-Reply-To: (Ronald G. Minnich's message of "Fri, 14 Jan 2005 20:36:31 -0700 (MST)") References: <1105733491.4649.4281.camel@localhost.localdomain> Message-ID: <52wtufjr8v.fsf@topspin.com> Ronald> It is a hierarchy of 96-port switches. Is there an openib Ronald> command I can use to test state? Going to look at the Ronald> 'blinken lights' is a headache due to the location of the Ronald> cluster. Yes, 'cat /sys/class/infiniband/mthca0/ports/1/state' (for an appropriate value of 1) will show you the state of the ports on your hosts. - Roland From rminnich at lanl.gov Fri Jan 14 20:10:55 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Fri, 14 Jan 2005 21:10:55 -0700 (MST) Subject: [openib-general] got ipoib up once but not twice :-) In-Reply-To: <52wtufjr8v.fsf@topspin.com> References: <1105733491.4649.4281.camel@localhost.localdomain> <52wtufjr8v.fsf@topspin.com> Message-ID: Hmm, it's back. I guess I was not patient enough. Not sure when it all got back. I will have to time it next time, I assume it won't take 6 hours each time :-) I'm working on making this 256-node cluster work over infiniband only, same as our myrinet clusters which are myrinet-only. ron From eitan at mellanox.co.il Fri Jan 14 22:48:40 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Sat, 15 Jan 2005 08:48:40 +0200 Subject: [openib-general] RE: osm_sa_pkey_record.c when VENDOR_RMPP_SUPPORT defined Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC35@mtlex01.yok.mtl.com> [EZ] Hal wrote: But there are single packet RMPP responses so how are these distinguished from simple sends ? Certain methods are required to use RMPP whether it is a single packet response or not. Am I misunderstanding ? The spec. does not require a GetTable response to be RMPP (only optionally) so we can easily avoid the RMPP overhead for short responses. If you have seen such a requirement please point the exact spec paragraph that require an RMPP response. Sending a single mad RMPP response is highly inefficient. (due to the protocol overhead). However, the implementation of the RMPP transaction (SAR) can handle single mad RMPP transactions too. -------------- next part -------------- An HTML attachment was scrubbed... URL: From eitan at mellanox.co.il Fri Jan 14 22:55:23 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Sat, 15 Jan 2005 08:55:23 +0200 Subject: [openib-general] [PATCH] Fix capability mask enums in ib_verb s.h Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC37@mtlex01.yok.mtl.com> Roland wrote: If I'm not mistaken, the capability mask enum in ib_verbs.h is backwards. According to chapter one of the IB spec, bits are numbered with bit 0 being the least significant and bit 31 the most significant. The PortInfo CapabilityMask starts with IsSM at bit 1, IsNoticeSupported at bit 2, etc. (In fact the enum was not just backwards -- some of the subtraction from 31 was wrong, so for example even if it were correct for IB_PORT_SM to be the most significant capability bit, it should have been 1 << 30 with one reserved bit at the very top of the word) [EZ] The capability mask is given probably in host order and assumes somewhere when it is being sent in the PortInfo to be going through host to network reordering. [EZ] Note that being a 32 bit wide field you can not directly code it in network order, using shift operators (which are always perform in host order). So there is no way to avoid running the host to network reordering. -------------- next part -------------- An HTML attachment was scrubbed... URL: From halr at voltaire.com Sat Jan 15 04:21:44 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 15 Jan 2005 07:21:44 -0500 Subject: [openib-general] got ipoib up once but not twice :-) In-Reply-To: References: <1105733491.4649.4281.camel@localhost.localdomain> Message-ID: <1105791704.4649.5309.camel@localhost.localdomain> On Fri, 2005-01-14 at 22:36, Ronald G. Minnich wrote: > On Fri, 14 Jan 2005, Hal Rosenstock wrote: > > > Are all the links active ? (What is your topology ?) > > It is a hierarchy of 96-port switches. Is there an openib command I can > use to test state? Going to look at the 'blinken lights' is a headache due > to the location of the cluster. There are also diag commands to help with this: ibstat and/or ibstatus. There are some other diag debug commands too if the ports aren't active. -- Hal From halr at voltaire.com Sat Jan 15 04:27:10 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 15 Jan 2005 07:27:10 -0500 Subject: [openib-general] got ipoib up once but not twice :-) In-Reply-To: References: <1105733491.4649.4281.camel@localhost.localdomain> <52wtufjr8v.fsf@topspin.com> Message-ID: <1105791832.4649.5315.camel@localhost.localdomain> On Fri, 2005-01-14 at 23:10, Ronald G. Minnich wrote: > Hmm, it's back. I guess I was not patient enough. Not sure when it all got > back. I will have to time it next time, I assume it won't take 6 hours > each time :-) > > I'm working on making this 256-node cluster work over infiniband only, > same as our myrinet clusters which are myrinet-only. How many 96 port switches ? I'd be curious how long it does take to initialize this (as I do not have access to a large cluster). Also, right now I'm pretty sure things are being done without pipelining on so it is likely slower. More on this later. -- Hal From mst at mellanox.co.il Sat Jan 15 09:24:26 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sat, 15 Jan 2005 19:24:26 +0200 Subject: [openib-general] Re: [PATCH] support domain names in /proc/bus/pci names In-Reply-To: <1105740578.22751.10.camel@duffman> References: <1105740578.22751.10.camel@duffman> Message-ID: <20050115172426.GB18766@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "[PATCH] support domain names in /proc/bus/pci names": > On Fri, 2005-01-14 at 16:41 +0200, Michael S. Tsirkin wrote: > > OK. I added an option for mmapping /proc/bus/pci > > This patch adds support for pci domain names in the path > under /proc/bus/pci. > > Singed-off-by: Tom Duffy > > Index: mtcr.h > =================================================================== > --- mtcr.h (revision 1534) > +++ mtcr.h (working copy) > @@ -136,7 +136,8 @@ > > /* Find the specific device by scanning /proc/bus/pci/devices */ > int mfind(const char* name, off_t* offset_p, > - unsigned *bus_p, unsigned *dev_p, unsigned *func_p) > + unsigned *bus_p, unsigned *dev_p, unsigned *func_p, > + int *domain_p) > { > FILE* f; > unsigned irq; > @@ -158,7 +159,7 @@ > > unsigned long long offset; > > - unsigned my_domain = 0; > + int my_domain = -1; > unsigned my_bus; > unsigned my_dev; > unsigned my_func; > @@ -180,7 +181,7 @@ > > name_parsed: > > - if (my_domain) { > + if (my_domain > 0) { > fprintf(stderr,"Device %s: domain number %#x detected.\n" > "Only domain 0x0 supported for now, sorry.\n", > name, my_domain); > @@ -266,6 +267,7 @@ > *bus_p=bus; > *dev_p=dev; > *func_p=func; > + *domain_p=my_domain; > > fclose(f); > return 0; > @@ -307,16 +309,22 @@ > { > #if CONFIG_ENABLE_MMAP > unsigned bus, dev, func; > - if (mfind(name,&offset,&bus,&dev,&func)) goto find_failed; > + int domain; > + if (mfind(name,&offset,&bus,&dev,&func,&domain)) goto find_failed; > > #if CONFIG_USE_DEV_MEM > mf->fd = open("/dev/mem", O_RDWR | O_SYNC); > if (mf->fd<0) goto open_failed; > #else > { > - char file_name[]="/proc/bus/pci/00/00.0"; > - sprintf(file_name,"/proc/bus/pci/%2.2x/%2.2x.%1.1x", > + char file_name[]="/proc/bus/pci/0000:00/00.0"; > + if (domain >= 0) { > + > sprintf(file_name,"/proc/bus/pci/%4.4d:%2.2x/%2.2x.%1.1x", > + domain,bus,dev,func); > + } else { > + sprintf(file_name,"/proc/bus/pci/%2.2x/%2.2x.%1.1x", > bus,dev,func); > + } > mf->fd = open(file_name, O_RDWR | O_SYNC); > if (mf->fd<0) goto open_failed; I guess we'll have to wait and see until some kernel version supports domains under /proc/bus/pci. mst From roland at topspin.com Sat Jan 15 09:53:32 2005 From: roland at topspin.com (Roland Dreier) Date: Sat, 15 Jan 2005 09:53:32 -0800 Subject: [openib-general] Re: [PATCH] support domain names in /proc/bus/pci names In-Reply-To: <20050115172426.GB18766@mellanox.co.il> (Michael S. Tsirkin's message of "Sat, 15 Jan 2005 19:24:26 +0200") References: <1105740578.22751.10.camel@duffman> <20050115172426.GB18766@mellanox.co.il> Message-ID: <52r7kmk28z.fsf@topspin.com> Michael> I guess we'll have to wait and see until some kernel Michael> version supports domains under /proc/bus/pci. ?? As far as I know any 2.6 kernel will support domains under /proc/bus/pci, if the platform it runs on does. Follow the definition of pci_name_bus() to see how it works. - Roland From mst at mellanox.co.il Sat Jan 15 10:29:37 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sat, 15 Jan 2005 20:29:37 +0200 Subject: [openib-general] Re: [PATCH] support domain names in /proc/bus/pci names In-Reply-To: <52r7kmk28z.fsf@topspin.com> References: <1105740578.22751.10.camel@duffman> <20050115172426.GB18766@mellanox.co.il> <52r7kmk28z.fsf@topspin.com> Message-ID: <20050115182937.GC18766@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] Re: [PATCH] support domain names in /proc/bus/pci names": > Michael> I guess we'll have to wait and see until some kernel > Michael> version supports domains under /proc/bus/pci. > > ?? As far as I know any 2.6 kernel will support domains under > /proc/bus/pci, if the platform it runs on does. Follow the definition > of pci_name_bus() to see how it works. > > - Roland I looked e.g. at sparc64 and it seems that it is always /proc/bus/pci/dddd:bb/dd.f on some platforms, and /proc/bus/pci/bb/dd.f on others, while Tom's patch assumes /proc/bus/pci/bb/dd.f if the domain is 0. Tom? mst From Tom.Duffy at Sun.COM Sat Jan 15 10:56:15 2005 From: Tom.Duffy at Sun.COM (Tom Duffy) Date: Sat, 15 Jan 2005 10:56:15 -0800 Subject: [openib-general] Re: [PATCH] support domain names in /proc/bus/pci names In-Reply-To: <20050115182937.GC18766@mellanox.co.il> References: <1105740578.22751.10.camel@duffman> <20050115172426.GB18766@mellanox.co.il> <52r7kmk28z.fsf@topspin.com> <20050115182937.GC18766@mellanox.co.il> Message-ID: <1105815375.22751.41.camel@duffman> On Sat, 2005-01-15 at 20:29 +0200, Michael S. Tsirkin wrote: > on others, while Tom's patch assumes /proc/bus/pci/bb/dd.f if > the domain is 0. Tom? No, it assumes it is /proc/bus/pci/dddd:bb/dd.f if domain is 0 or anything positive. If you don't pass in a domain, it assumes the old way (i.e. domain is -1). -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From halr at voltaire.com Sat Jan 15 10:51:49 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 15 Jan 2005 13:51:49 -0500 Subject: [openib-general] RE: osm_sa_pkey_record.c when VENDOR_RMPP_SUPPORT defined In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEC35@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6047EEC35@mtlex01.yok.mtl.com> Message-ID: <1105815109.4649.5722.camel@localhost.localdomain> Hi Eitan, On Sat, 2005-01-15 at 01:48, Eitan Zahavi wrote: > The spec. does not require a GetTable response to be RMPP (only > optionally) so we can easily avoid the RMPP overhead for short > responses. I'd be curious where the optionality of using RMPP for GetTable is in the IBA spec. > If you have seen such a requirement please point the exact spec > paragraph that require an RMPP response. C15-00.1.18 states that the SA shall respond to SubnAdmGetTable requests by performing the sender role in a receiver initiated RMPP transmission. Also, GetTable is not optional unlike GetTraceTable or GetMulti which are. > Sending a single mad RMPP response is highly inefficient. (due to the > protocol overhead). The categorization of this as highly inefficient is not quite an apples to apples comparison as RMPP provides reliability which would require timeout/retransmission without it. For a single packet exchange, isn't is just a DATA packet in one direction (indicating first and last) and an ACK in the other. The efficiency or inefficiency of course comes down to the implementation. In any case, I believe IBA requires it. It is a conformance/compliance issue. > However, the implementation of the RMPP transaction (SAR) can handle > single mad RMPP transactions too. But it sounds like a change is required to do this based on how this indicated currently (based on whether it fits in the MAD). Some other way would need to be used. -- Hal From eitan at mellanox.co.il Sat Jan 15 11:08:53 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Sat, 15 Jan 2005 21:08:53 +0200 Subject: [openib-general] RE: osm_sa_pkey_record.c when VENDOR_RMPP_SUPPORT defined Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC40@mtlex01.yok.mtl.com> Hal : I'd be curious where the optionality of using RMPP for GetTable is in the IBA spec. [EZ] Double checked for that. Could not find any. My memory has tricked me. You are correct. Actually as you point out C15-00.1.18 dictates the use of RMPP even for single packet response. I recall there were some other SM's that could not handle a single RMPP responses at the time I dealt with it. Also, the IB Analyzer software did not handle that MAD correctly. [EZ] So if we want to be compliant we need to provide the vendor layer better info for when to use RMPP sends. And the best way is to let the SA set the rmpp_flags active bit. -------------- next part -------------- An HTML attachment was scrubbed... URL: From halr at voltaire.com Sat Jan 15 11:15:15 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 15 Jan 2005 14:15:15 -0500 Subject: [openib-general] RE: osm_sa_pkey_record.c when VENDOR_RMPP_SUPPORT defined In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEC40@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6047EEC40@mtlex01.yok.mtl.com> Message-ID: <1105816515.4649.5765.camel@localhost.localdomain> On Sat, 2005-01-15 at 14:08, Eitan Zahavi wrote: > I recall there were some other SM's that could not handle a single > RMPP responses at the time I dealt with it. Yes, it has taken a while to get RMPP support and this was the state of certain SAs for a while. > Also, the IB Analyzer software did not handle that MAD correctly. There's always decode by hand :-( > [EZ] So if we want to be compliant we need to provide the vendor > layer better info for when to use RMPP sends. And the best way is to > let the SA set the rmpp_flags active bit. Yes, exactly. -- Hal From halr at voltaire.com Sat Jan 15 12:41:10 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 15 Jan 2005 15:41:10 -0500 Subject: [openib-general] [PATCH] Fix capability mask enums in ib_verbs.h In-Reply-To: <52hdljlk65.fsf@topspin.com> References: <52pt07lkhd.fsf@topspin.com> <52hdljlk65.fsf@topspin.com> Message-ID: <1105821670.4646.7.camel@localhost.localdomain> On Fri, 2005-01-14 at 17:28, Roland Dreier wrote: I just tried this patch out and it looks good to me :-) Thanks. I hacked it into the OpenSM vendor layer for a quick test and when opensm is running the IsSM bit is on in PortInfo:CapabilityMask and when killed, it is off. I do have a couple of questions related to this: 1. PortInfo::CapabilityMask starts off as 0x500a68, which is: Trap, APM, SLMapping, SystemImageGUID, VendorClass, and CapabilityMaskNotice supported. Is that how it should be ? 2. Also, if and when we get to them, is issm a precedent for CM, device management, boot management, SNMP tunneling, ... ? -- Hal From mst at mellanox.co.il Sat Jan 15 13:02:36 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sat, 15 Jan 2005 23:02:36 +0200 Subject: [openib-general] Re: [PATCH] support domain names in /proc/bu s/pci names In-Reply-To: <1105815375.22751.41.camel@duffman> References: <1105815375.22751.41.camel@duffman> Message-ID: <20050115210236.GA19365@mellanox.co.il> Hello! Quoting r. Tom Duffy (Tom.Duffy at Sun.COM) "Re: [openib-general] Re: [PATCH] support domain names in?/proc/bu s/pci names": > On Sat, 2005-01-15 at 20:29 +0200, Michael S. Tsirkin wrote: > > on others, while Tom's patch assumes /proc/bus/pci/bb/dd.f if > > the domain is 0. Tom? > > No, it assumes it is /proc/bus/pci/dddd:bb/dd.f if domain is 0 or > anything positive. If you don't pass in a domain, it assumes the old > way (i.e. domain is -1). > > -tduffy Aha. Problem is, pciutils looks at sysfs and so always prints the domain, so people are likely to pass in the domain even on systems where it is not supported by /proc/bus/pci. I guess the right thing is to fix /proc/bus/pci on all systems, but meanwhile, maybe to check both files in old and new locations if domain is 0 or not supplied. mst From mst at mellanox.co.il Sat Jan 15 13:05:57 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sat, 15 Jan 2005 23:05:57 +0200 Subject: [openib-general] Re: mmap(/dev/mem) causing sigbus In-Reply-To: <1105741527.22751.14.camel@duffman> References: <1105741527.22751.14.camel@duffman> Message-ID: <20050115210557.GB19365@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] Re: mmap(/dev/mem) causing sigbus": > On Fri, 2005-01-14 at 16:46 +0200, Michael S. Tsirkin wrote: > > I now tested it on x86 and it works. Still, I wont > > change the default until I test it some more. > > Tom, pls try with latest svn , changing CONFIG_USE_DEV_MEM > > from 1 to 0 in mtcr.h. If there are problems I'll > > work on it on Sunday, same goes for your error handling > > patch. > > tat:~# ./mstflint -d 0000:81:00.0 q > Device open failed: Primary extended query larger than TOTAL_QUERY_SIZE > > -tduffy But the configuration cycles variant still works properly, does it not? Tom, just to make sure that the mapping now works properly, could you please run the small test I sent, changing the file name from /dev/mem to the relevant file in /proc/bus/pci ? This way we will know whether the mapping works, or whether its the same issue still. MST From roland at topspin.com Sat Jan 15 13:38:11 2005 From: roland at topspin.com (Roland Dreier) Date: Sat, 15 Jan 2005 13:38:11 -0800 Subject: [openib-general] [PATCH] Fix capability mask enums in ib_verbs.h In-Reply-To: <1105821670.4646.7.camel@localhost.localdomain> (Hal Rosenstock's message of "15 Jan 2005 15:41:10 -0500") References: <52pt07lkhd.fsf@topspin.com> <52hdljlk65.fsf@topspin.com> <1105821670.4646.7.camel@localhost.localdomain> Message-ID: <52llaujruk.fsf@topspin.com> Hal> 1. PortInfo::CapabilityMask starts off as 0x500a68, which is: Hal> Trap, APM, SLMapping, SystemImageGUID, VendorClass, and Hal> CapabilityMaskNotice supported. Hal> Is that how it should be ? Obviously it depends on your device but that seems to be a reasonable set of capabilities for an HCA. Hal> 2. Also, if and when we get to them, is issm a precedent for Hal> CM, device management, boot management, SNMP tunneling, ... ? I guess so, although I think CM is going to be handled in the kernel. Of course if someone has a better idea for an interface, now would be a good time to suggest it. - Roland From mlleinin at hpcn.ca.sandia.gov Sat Jan 15 15:18:42 2005 From: mlleinin at hpcn.ca.sandia.gov (Matt Leininger) Date: Sat, 15 Jan 2005 15:18:42 -0800 Subject: [openib-general] got ipoib up once but not twice :-) In-Reply-To: <1105791832.4649.5315.camel@localhost.localdomain> References: <1105733491.4649.4281.camel@localhost.localdomain> <52wtufjr8v.fsf@topspin.com> <1105791832.4649.5315.camel@localhost.localdomain> Message-ID: <1105831122.8678.1011.camel@localhost> On Sat, 2005-01-15 at 07:27 -0500, Hal Rosenstock wrote: > On Fri, 2005-01-14 at 23:10, Ronald G. Minnich wrote: > > Hmm, it's back. I guess I was not patient enough. Not sure when it all got > > back. I will have to time it next time, I assume it won't take 6 hours > > each time :-) > > > > I'm working on making this 256-node cluster work over infiniband only, > > same as our myrinet clusters which are myrinet-only. > > How many 96 port switches ? I'd be curious how long it does take to > initialize this (as I do not have access to a large cluster). Also, > right now I'm pretty sure things are being done without pipelining on so > it is likely slower. More on this later. > Ron has 9 96 port switches, 3 in the spine and 6 leaf switches all based on the InfiniScale II switch ASIC, to make a 288 port fabric. It's not quite a true fat-tree network since there are no spine bypass cards for the older 96 port switch (needed on the leaf switches). This is an interesting test case because Ron's network has a total of 612 switch chips. A 1152 port fat-tree fabric based on InfiniScale III would have 240 switch chips. - Matt From sean.hefty at intel.com Sat Jan 15 19:46:47 2005 From: sean.hefty at intel.com (Sean Hefty) Date: Sat, 15 Jan 2005 19:46:47 -0800 Subject: [openib-general] [PATCH] Fix capability mask enums in ib_verb s.h In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEC37@mtlex01.yok.mtl.com> Message-ID: > [EZ] Note that being a 32 bit wide field you can not directly > code it in network order, using shift operators (which are always > perform in host order). So there is no way to avoid running the > host to network reordering. I was thinking of a format similar to __constant_htonl(1 << 1), which would allow checking for and setting the port info bits without converting the field to/from host order. But host/network ordering is something that we can come back to at a later time. - Sean From kerry at access-one.com Sat Jan 15 20:40:17 2005 From: kerry at access-one.com (Susan M.Taylor) Date: Sun, 16 Jan 2005 04:40:17 +0000 Subject: [openib-general] Swiss watches - replica Message-ID: <2fa001c4fb85$684fd95e$4a8791ab@access-one.com> REPLICA WATCH MODELS Rolex, Patek Philippe, Bvlgari Cartier, Gucci, Franck Muller .. and 25 other most famous manufacturers. http://www.all-the-watches.com All for only $229.99 - 249.99! _________________________________________________________________________ To change your mail preferences, go here: http://www.multitrade-corp.biz/uns.htm _________________________________________________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mst at mellanox.co.il Sun Jan 16 00:10:50 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 16 Jan 2005 10:10:50 +0200 Subject: [openib-general] Re: [PATCH] fix flint error messages In-Reply-To: <1105654918.2527.75.camel@duffman> References: <1105654918.2527.75.camel@duffman> Message-ID: <20050116081050.GB31298@mellanox.co.il> Hello! Tom, your mailer wraps lines. Pls fix it or as a last resort use attachments. mst From mst at mellanox.co.il Sun Jan 16 00:15:00 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 16 Jan 2005 10:15:00 +0200 Subject: [openib-general] mstflint - test2 In-Reply-To: <1105741527.22751.14.camel@duffman> References: <1105741527.22751.14.camel@duffman> Message-ID: <20050116081500.GC31298@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] Re: mmap(/dev/mem) causing sigbus": > On Fri, 2005-01-14 at 16:46 +0200, Michael S. Tsirkin wrote: > > I now tested it on x86 and it works. Still, I wont > > change the default until I test it some more. > > Tom, pls try with latest svn , changing CONFIG_USE_DEV_MEM > > from 1 to 0 in mtcr.h. If there are problems I'll > > work on it on Sunday, same goes for your error handling > > patch. > > tat:~# ./mstflint -d 0000:81:00.0 q > Device open failed: Primary extended query larger than TOTAL_QUERY_SIZE > > -tduffy The issue is most likely incorrect data being returned by reading the mmaped region. Please try the attached test (BAR0 and NAME values may need fixing), and let me know the result. #define BAR0 0x1ff00100004ull; #define NAME "/proc/bus/pci/0000:81/00.0" #define _XOPEN_SOURCE 500 #define _FILE_OFFSET_BITS 64 #include #include #include #include int main() { int fd; void *ptr; unsigned value; unsigned long long offset = BAR0; fd = open(NAME,O_RDWR | O_SYNC); if (fd<0) { perror("open"); return 1; } ptr = mmap(NULL, 0x100000, PROT_READ | PROT_WRITE, MAP_SHARED, fd, offset); if ( (! ptr) || (ptr == MAP_FAILED) ) { perror("map"); return 1; } value= *( (unsigned*)(ptr + 0x000f0014) ); printf("value at 0x000f0014 is %#8.8x\n", value); return 0; err: return 1; } From mst at mellanox.co.il Sun Jan 16 01:55:37 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 16 Jan 2005 11:55:37 +0200 Subject: [openib-general] [PATCH] fill in missing parameters for MAD_IFC Message-ID: <20050116095537.GE3718@mellanox.co.il> Hi! Since sufficient parameters are now passed to process_mad, all that is left is to pass them down to hardware. Unfortunately the documentation is wrong for MAD_IFC command: the parameters are encoded as follows: input modifier: bit 0-7 port bit 16-31 slid opcode modifer bit 0 - ignore mkey bit 1 - ignore bkey bit 2 - mad extended info enable The format for mad extended info is correct. The corrected document will be published soon. mst Signed-off-by: Michael S. Tsirkin Index: hw/mthca/mthca_provider.c =================================================================== --- hw/mthca/mthca_provider.c (revision 1537) +++ hw/mthca/mthca_provider.c (working copy) @@ -59,8 +59,8 @@ in_mad->method = IB_MGMT_METHOD_GET; in_mad->attr_id = IB_SMP_ATTR_NODE_INFO; - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - 1, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + 1, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -104,8 +104,8 @@ in_mad->attr_id = IB_SMP_ATTR_PORT_INFO; in_mad->attr_mod = cpu_to_be32(port); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -189,8 +189,8 @@ in_mad->attr_id = IB_SMP_ATTR_PKEY_TABLE; in_mad->attr_mod = cpu_to_be32(index / 32); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -228,8 +228,8 @@ in_mad->attr_id = IB_SMP_ATTR_PORT_INFO; in_mad->attr_mod = cpu_to_be32(port); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -248,8 +248,8 @@ in_mad->attr_id = IB_SMP_ATTR_GUID_INFO; in_mad->attr_mod = cpu_to_be32(index / 8); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; Index: hw/mthca/mthca_mad.c =================================================================== --- hw/mthca/mthca_mad.c (revision 1537) +++ hw/mthca/mthca_mad.c (working copy) @@ -231,9 +231,15 @@ } else return IB_MAD_RESULT_SUCCESS; + /* check traps cant be sent unless we have in_wc. */ + + if (!in_wc) + mad_flags = IB_MAD_IGNORE_ALL; + err = mthca_MAD_IFC(to_mdev(ibdev), - !!(mad_flags & IB_MAD_IGNORE_MKEY), - port_num, in_mad, out_mad, + mad_flags & IB_MAD_IGNORE_MKEY, + mad_flags & IB_MAD_IGNORE_BKEY, + port_num, in_wc, in_grh, in_mad, out_mad, &status); if (err) { mthca_err(to_mdev(ibdev), "MAD_IFC failed\n"); Index: hw/mthca/mthca_cmd.c =================================================================== --- hw/mthca/mthca_cmd.c (revision 1537) +++ hw/mthca/mthca_cmd.c (working copy) @@ -36,6 +36,7 @@ #include #include #include +#include #include "mthca_dev.h" #include "mthca_config_reg.h" @@ -178,6 +179,17 @@ u8 status; }; +struct mthca_mad_ifc_ext_info { + u32 my_qpn; + u32 reserved0; + u32 rqpn; + u16 sl_g_mlpath; + u16 rlid; + u32 pkey_index; + u8 reserved[44]; + u8 grh[40]; +}; + static inline int go_bit(struct mthca_dev *dev) { return readl(dev->hcr + HCR_STATUS_OFFSET) & @@ -1626,25 +1638,67 @@ CMD_TIME_CLASS_B, status); } -int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int port, - void *in_mad, void *response_mad, u8 *status) { +int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int ignore_bkey, + int port, struct ib_wc* in_wc, struct ib_grh* in_grh, + void *in_mad, void *response_mad, u8 *status) +{ void *box; dma_addr_t dma; int err; + struct mthca_mad_ifc_ext_info* info; + u16 sl_g_mlpath; + u32 in_modifier = port; + u32 op_modifier = 0; -#define MAD_IFC_BOX_SIZE 512 + BUG_ON((!ignore_bkey && !ignore_mkey) && !in_wc); +#define MAD_IFC_BOX_SIZE 1024 + box = pci_alloc_consistent(dev->pdev, MAD_IFC_BOX_SIZE, &dma); if (!box) return -ENOMEM; memcpy(box, in_mad, 256); - err = mthca_cmd_box(dev, dma, dma + 256, port, !!ignore_mkey, + if (ignore_mkey) + op_modifier |= 0x1; + + if (ignore_bkey) + op_modifier |= 0x2; + else { + memset(box + 256, 0, 256); + + info = box + 256; + + info->my_qpn = cpu_to_be32(in_wc->qp_num); + info->rqpn = cpu_to_be32(in_wc->src_qp); + + sl_g_mlpath = in_wc->dlid_path_bits; + sl_g_mlpath |= (in_wc->sl << 12); + sl_g_mlpath |= (in_wc->wc_flags & IB_WC_GRH) ? 0x80 : 0; + info->sl_g_mlpath = cpu_to_be16(sl_g_mlpath); + + info->rlid = cpu_to_be16(in_wc->slid); + info->pkey_index = cpu_to_be32(in_wc->pkey_index << 16); + + if (in_grh) { + memcpy(&info->grh, in_grh, 40); + } + + op_modifier |= 0x10; + } + + + if (in_wc) { + in_modifier |= in_wc->slid<<16; + } + + + err = mthca_cmd_box(dev, dma, dma + 512, in_modifier, op_modifier, CMD_MAD_IFC, CMD_TIME_CLASS_C, status); if (!err && !*status) - memcpy(response_mad, box + 256, 256); + memcpy(response_mad, box + 512, 256); pci_free_consistent(dev->pdev, MAD_IFC_BOX_SIZE, box, dma); return err; Index: hw/mthca/mthca_cmd.h =================================================================== --- hw/mthca/mthca_cmd.h (revision 1537) +++ hw/mthca/mthca_cmd.h (working copy) @@ -280,7 +280,8 @@ void *qp_context, u8 *status); int mthca_CONF_SPECIAL_QP(struct mthca_dev *dev, int type, u32 qpn, u8 *status); -int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int port, +int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int ignore_bkey, + int port, struct ib_wc* in_wc, struct ib_grh* in_grh, void *in_mad, void *response_mad, u8 *status); int mthca_READ_MGM(struct mthca_dev *dev, int index, void *mgm, u8 *status); From mst at mellanox.co.il Sun Jan 16 02:52:54 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 16 Jan 2005 12:52:54 +0200 Subject: [openib-general] mstflint - test2 In-Reply-To: <20050116081500.GC31298@mellanox.co.il> References: <1105741527.22751.14.camel@duffman> <20050116081500.GC31298@mellanox.co.il> Message-ID: <20050116105254.GA4037@mellanox.co.il> Hello! Quoting r. Michael S. Tsirkin (mst at mellanox.co.il) "[openib-general] mstflint - test2": > Hello! > Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] Re: mmap(/dev/mem) causing sigbus": > > On Fri, 2005-01-14 at 16:46 +0200, Michael S. Tsirkin wrote: > > > I now tested it on x86 and it works. Still, I wont > > > change the default until I test it some more. > > > Tom, pls try with latest svn , changing CONFIG_USE_DEV_MEM > > > from 1 to 0 in mtcr.h. If there are problems I'll > > > work on it on Sunday, same goes for your error handling > > > patch. > > > > tat:~# ./mstflint -d 0000:81:00.0 q > > Device open failed: Primary extended query larger than TOTAL_QUERY_SIZE > > > > -tduffy > > The issue is most likely incorrect data being returned by > reading the mmaped region. > > Please try the attached test (BAR0 and NAME values may need fixing), > and let me know the result. I now checked in two small utilities under mstflint directory mread and mwrite. These can be used to poke manually at the device memory bar. Just pass in the device and address, like this: ./mread 81:00.0 0x000f0014 or ./mread /proc/bus/pci/81/00.0 0x000f0014 I think we must first make sure these simple things work. MST From halr at voltaire.com Sun Jan 16 05:04:12 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 16 Jan 2005 08:04:12 -0500 Subject: [openib-general] [PATCH] Fix capability mask enums in ib_verbs.h In-Reply-To: <52llaujruk.fsf@topspin.com> References: <52pt07lkhd.fsf@topspin.com> <52hdljlk65.fsf@topspin.com> <1105821670.4646.7.camel@localhost.localdomain> <52llaujruk.fsf@topspin.com> Message-ID: <1105880652.4646.30.camel@localhost.localdomain> On Sat, 2005-01-15 at 16:38, Roland Dreier wrote: > Hal> 1. PortInfo::CapabilityMask starts off as 0x500a68, which is: > Hal> Trap, APM, SLMapping, SystemImageGUID, VendorClass, and > Hal> CapabilityMaskNotice supported. > > Hal> Is that how it should be ? > > Obviously it depends on your device but that seems to be a reasonable > set of capabilities for an HCA. In terms of CapabilityMaskNotice, what causes/is supposed to cause the trap/notice to be generated when the capability mask is set (e.g. issm) ? (I know it is the SMA's responsibility but am asking in terms of how OpenIB is/is to be implemented). I ddidn't see this trap sent when issm was set. I think we may be better off turning this off at least in the short term although it is likely only a minor conformance issue. APM will be supported but isn't right now (either in CM or the driver) but this won't cause an issue until CM is on. > Hal> 2. Also, if and when we get to them, is issm a precedent for > Hal> CM, device management, boot management, SNMP tunneling, ... ? > > I guess so, although I think CM is going to be handled in the kernel. > Of course if someone has a better idea for an interface, now would be > a good time to suggest it. Is this the reason for the request for additional device IDs ? Are you envisioning others ? -- Hal From mst at mellanox.co.il Sun Jan 16 06:12:56 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 16 Jan 2005 16:12:56 +0200 Subject: [openib-general] [PATCH] do not clear ecr on msi-x interrupt Message-ID: <20050116141256.GA4425@mellanox.co.il> Hi! I notice that ECR is never read on an MSI-X interrupt. It follows that there is no need to clear ECR. Unfortunately I dont currently have appropriate hardware to test this, but I would expect a nice (if possibly small) performance boost in IP over IB. Comments are welcome. mst Signed-off-by: Michael S. Tsirkin Index: infiniband/hw/mthca/mthca_eq.c =================================================================== --- infiniband/hw/mthca/mthca_eq.c (revision 1538) +++ infiniband/hw/mthca/mthca_eq.c (working copy) @@ -381,7 +381,6 @@ static irqreturn_t mthca_msi_x_interrupt struct mthca_eq *eq = eq_ptr; struct mthca_dev *dev = eq->dev; - writel(eq->ecr_mask, dev->hcr + MTHCA_ECR_CLR_OFFSET + 4); mthca_eq_int(dev, eq); /* MSI-X vectors always belong to us */ From shaharf at voltaire.com Sun Jan 16 07:50:37 2005 From: shaharf at voltaire.com (shaharf) Date: Sun, 16 Jan 2005 17:50:37 +0200 Subject: [openib-general] Some Missing Features from mthca/userMADaccess Message-ID: Hi Sean, > Hal Rosenstock wrote: > > >>>[SHAHAR] Attributes filtering can be done with O(1). First you don't > >>>have to support the entire theoretical range. Currently less then > >>>256 attributes are used per class. > >> > >>You can't make this assumption for vendor defined classes. > > > > Are you referring to IDs or number of attributes used per vendor defined > > class ? > > Either really. In fact you may handle vendor classed using special un-optimized paths. But I would just implement the attribute filtering using a hash table mechanism and it will perform O(1) in the average case, O(n) in the worst case which it very very unlikely in this case (assuming common open hash implementation and dissent hash function and Hal, this is memory and CPU analysis ;-) > > >>>But even more important then that, what is the use > >>>for methods filtering? > >> > >>It should allow creation of a trap handler, or other more modular code. > >> If there are no clients using method filtering, then I'm all for > >>removing it. > > > > CM (at least currently) appears to be registering this way. I think it > > is needed to support CM. > > > > BTW, I don't think the response method should be set in the mask (line > > 336): > > set_bit(IB_MGMT_METHOD_GET_RESP, reg_req.method_mask); > > Thanks, I changed the CM to only register for SENDs, which is all I > care about at the moment. > Sorry, but I missed the bottom-line here, is there any specific need for method filtering or not? It there isn't, I would "clean" it out. > >>> Do you see a way to handle the different SA client registrations > >>>for events (InformInfo) where an incoming Report could go to > >>>multiple clients with the current approach ? > >> > >>I think that more complex filtering should be done above the MAD layer. > > > > Including inside the kernel ? > > Just to be clear, I think complex filtering should be done in the > kernel, but for user-mode clients. This would avoid copying the MAD > except when needed. I would try to get kernel-mode clients to make use > of the snooping functionality. > > If a kernel client needs to actually own the MAD (e.g. to generate a > response), then I would look at layering that filtering above the MAD > layer. Of course, I wouldn't make a blanket statement about where the > filtering is done, but would want to examine it on a case by case basis. > > >>I think a reasonable API would be to let user's specify a mask over the > >>entire MAD (or at least the header). > > > > Do you see this as the direction to provide this support if this is > > needed (for incoming traps and reports) ? > > This approach seems the most flexible, so I would see if it would meet > everyone's needs. I'm hesitant to put this sort of filtering into the > kernel MAD code, since the check would be more expensive than what's > needed for most MADs. I would not complicate the kernel code anymore, unless there is a known specific issue that is important enough to justify it. Remember, this is management code; the data throughput is not the first critical factor here. Simplicity and clarity are far more important as I see it. Broadcast management events and messages are not common in UNIX style networking. TCP/UDP/IP ports are not shared in the common implementations even though they might be copy-full within the kernel. Shared handling of such events significantly complicates the kernel mechanism. I think this is a clear case for usermode mechanism. Snooping is an exception not the rule! I would not overlay the snooping mechanism for additional tasks. I know that this is not necessarily the IB way, but simple interfaces and mechanism survive much longer than complicated ones. For example, The socket interface is relatively simple and even if it is not flawless it survived many years and many changes. I would follow that way. Shahar From halr at voltaire.com Sun Jan 16 07:50:11 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 16 Jan 2005 10:50:11 -0500 Subject: [openib-general] OpenSM SA (and SA client) RMPP Header Initialization Message-ID: <1105890611.4646.92.camel@localhost.localdomain> Hi, Who's responsibility is it to clear the RMPP header fields when RMPPFlags.Active = 0 ? o13-21.1.3: If a management class uses RMPP, and RMPPFlags.Active = 0, all other RMPP Header fields shall be reserved. The standard definition of a reserved field defined in 13.4.1 Conventions on page 632 is implied in o13-21.1.3:: Set to 0 when sent, and ignored when received. It looks to me when the SA responds to an incoming request if it is not an RMPP packet, the other RMPP header fields are not cleared as is required. Is this OpenSM's responsibility or does some layer below take care of this (or is this currently missed) ? I don't see this in OpenSM now. Should this be a MAD layer responsibility ? Currently, sa_query.c does initialize the RMPP header properly. Based on the philosophy to date, I would think this would be a client responsibility (hence OpenSM). I have temporarily added it to my version of the umad vendor layer for convenience right now rather than move it back into the support for each SA record if it indeed belongs in OpenSM. -- Hal From tziporet at mellanox.co.il Sun Jan 16 08:14:13 2005 From: tziporet at mellanox.co.il (Tziporet Koren) Date: Sun, 16 Jan 2005 18:14:13 +0200 Subject: [openib-general] has anyone tried MSI-X on Opteron? Message-ID: <506C3D7B14CDD411A52C00025558DED6064BEDD4@mtlex01.yok.mtl.com> thanks to all We are using the AMD-8131 and that explains it. Tziporet -----Original Message----- From: Craig Dunwoody [mailto:cdunwoody at graphstream.com] Sent: Thursday, January 13, 2005 5:59 PM To: Ronald G. Minnich Cc: openib-general at openib.org Subject: Re: [openib-general] has anyone tried MSI-X on Opteron? Hello Ron, ron writes: > Matt Leininger (spelling) pointed out to me yesterday that the Opteron > chip set did not support MSI Looks to me like MSI is enabled in recent stock FC2 and FC3 2.6.9+ X86_64 kernel builds, so a driver that cannot be told not to use MSI if it is available (as I believe is the case with the current Mellanox vapi-4.0.1 release) would not seem to have a good chance of working on a stock FC2 or FC3 kernel when a AMD-8131 chipset is involved. Craig Dunwoody cdunwoody at graphstream.com 650-906-8261 (cell) _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From mst at mellanox.co.il Sun Jan 16 08:26:57 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 16 Jan 2005 18:26:57 +0200 Subject: [openib-general] Re: mmap(/dev/mem) causing sigbus In-Reply-To: <1105741527.22751.14.camel@duffman> References: <1105741527.22751.14.camel@duffman> Message-ID: <20050116162657.GD4537@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] Re: mmap(/dev/mem) causing sigbus": > On Fri, 2005-01-14 at 16:46 +0200, Michael S. Tsirkin wrote: > > I now tested it on x86 and it works. Still, I wont > > change the default until I test it some more. > > Tom, pls try with latest svn , changing CONFIG_USE_DEV_MEM > > from 1 to 0 in mtcr.h. If there are problems I'll > > work on it on Sunday, same goes for your error handling > > patch. > > tat:~# ./mstflint -d 0000:81:00.0 q > Device open failed: Primary extended query larger than TOTAL_QUERY_SIZE > > -tduffy Probably a blanche, but just a small check: ~>/sbin/setpci -s 0000:81:00.0 COMMAND 0102 Bit 1 is memory space enable, and I see that it is set. What do you see? mst From eitan at mellanox.co.il Sun Jan 16 08:38:15 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Sun, 16 Jan 2005 18:38:15 +0200 Subject: [openib-general] OpenSM SA (and SA client) RMPP Header Initia lization Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC5A@mtlex01.yok.mtl.com> Hal wrote: Who's responsibility is it to clear the RMPP header fields when RMPPFlags.Active = 0 ? [EZ] In the osm_vendor_mlx_ts vendor layer it is the vendor layer responsibility to do the cleanup. -------------- next part -------------- An HTML attachment was scrubbed... URL: From tduffy at sun.com Sun Jan 16 11:35:57 2005 From: tduffy at sun.com (Tom Duffy) Date: Sun, 16 Jan 2005 11:35:57 -0800 Subject: [openib-general] Re: [PATCH] fix flint error messages In-Reply-To: <20050116081050.GB31298@mellanox.co.il> References: <1105654918.2527.75.camel@duffman> <20050116081050.GB31298@mellanox.co.il> Message-ID: <1105904157.13791.3.camel@duffman> On Sun, 2005-01-16 at 10:10 +0200, Michael S. Tsirkin wrote: > Hello! > Tom, your mailer wraps lines. > Pls fix it or as a last resort use attachments. Actually, it is your MUA that is not reassembling the lines according to the quoted-printable rules. From RFC 1521, section 5.1: Rule #5 (Soft Line Breaks): The Quoted-Printable encoding REQUIRES that encoded lines be no more than 76 characters long. If longer lines are to be encoded with the Quoted-Printable encoding, 'soft' line breaks must be used. An equal sign as the last character on a encoded line indicates such a non-significant ('soft') line break in the encoded text. Thus if the "raw" form of the line is a single unencoded line that says: Now's the time for all folk to come to the aid of their country. This can be represented, in the Quoted-Printable encoding, as Now's the time = for all folk to come= to the aid of their country. This provides a mechanism with which long lines are encoded in such a way as to be restored by the user agent. The 76 character limit does not count the trailing CRLF, but counts all other characters, including any equal signs. Anyways, here it is as an attachment. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: flint.patch Type: text/x-patch Size: 5131 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From roland at topspin.com Sun Jan 16 20:46:27 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 16 Jan 2005 20:46:27 -0800 Subject: [openib-general] [PATCH] do not clear ecr on msi-x interrupt In-Reply-To: <20050116141256.GA4425@mellanox.co.il> (Michael S. Tsirkin's message of "Sun, 16 Jan 2005 16:12:56 +0200") References: <20050116141256.GA4425@mellanox.co.il> Message-ID: <52u0pgirx8.fsf@topspin.com> Michael> Unfortunately I dont currently have appropriate hardware Michael> to test this, but I would expect a nice (if possibly Michael> small) performance boost in IP over IB. Thanks, I've committed this although I can't measure any performance difference with IPoIB. Shrinking the source is always good, and it might help on a workload with a lot of backpressure on the PCI bus. - Roland From roland at topspin.com Sun Jan 16 21:15:37 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 16 Jan 2005 21:15:37 -0800 Subject: [openib-general] [PATCH] fill in missing parameters for MAD_IFC In-Reply-To: <20050116095537.GE3718@mellanox.co.il> (Michael S. Tsirkin's message of "Sun, 16 Jan 2005 11:55:37 +0200") References: <20050116095537.GE3718@mellanox.co.il> Message-ID: <52mzv8iqkm.fsf@topspin.com> I reworked this to clean a few things up and match the style of mthca_cmd.c a little better. Does this still seem OK? (I got rid of the BUG_ON because I think the test BUG_ON((!ignore_bkey && !ignore_mkey) && !in_wc); is not really correct -- eg passing a MAD known not to be BM-class with only ignore_mkey set and no in_wc would be fine -- and I couldn't decide on a check that did seem worth oopsing for) Thanks, Roland Index: hw/mthca/mthca_provider.c =================================================================== --- hw/mthca/mthca_provider.c (revision 1537) +++ hw/mthca/mthca_provider.c (working copy) @@ -59,8 +59,8 @@ in_mad->method = IB_MGMT_METHOD_GET; in_mad->attr_id = IB_SMP_ATTR_NODE_INFO; - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - 1, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + 1, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -104,8 +104,8 @@ in_mad->attr_id = IB_SMP_ATTR_PORT_INFO; in_mad->attr_mod = cpu_to_be32(port); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -189,8 +189,8 @@ in_mad->attr_id = IB_SMP_ATTR_PKEY_TABLE; in_mad->attr_mod = cpu_to_be32(index / 32); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -228,8 +228,8 @@ in_mad->attr_id = IB_SMP_ATTR_PORT_INFO; in_mad->attr_mod = cpu_to_be32(port); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -248,8 +248,8 @@ in_mad->attr_id = IB_SMP_ATTR_GUID_INFO; in_mad->attr_mod = cpu_to_be32(index / 8); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; Index: hw/mthca/mthca_mad.c =================================================================== --- hw/mthca/mthca_mad.c (revision 1537) +++ hw/mthca/mthca_mad.c (working copy) @@ -231,9 +231,16 @@ } else return IB_MAD_RESULT_SUCCESS; + /* + * Key check traps can't be generated unless we have in_wc. + */ + if (!in_wc) + mad_flags = IB_MAD_IGNORE_ALL; + err = mthca_MAD_IFC(to_mdev(ibdev), - !!(mad_flags & IB_MAD_IGNORE_MKEY), - port_num, in_mad, out_mad, + mad_flags & IB_MAD_IGNORE_MKEY, + mad_flags & IB_MAD_IGNORE_BKEY, + port_num, in_wc, in_grh, in_mad, out_mad, &status); if (err) { mthca_err(to_mdev(ibdev), "MAD_IFC failed\n"); Index: hw/mthca/mthca_cmd.c =================================================================== --- hw/mthca/mthca_cmd.c (revision 1537) +++ hw/mthca/mthca_cmd.c (working copy) @@ -36,6 +36,7 @@ #include #include #include +#include #include "mthca_dev.h" #include "mthca_config_reg.h" @@ -1626,25 +1627,70 @@ CMD_TIME_CLASS_B, status); } -int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int port, - void *in_mad, void *response_mad, u8 *status) { +int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int ignore_bkey, + int port, struct ib_wc* in_wc, struct ib_grh* in_grh, + void *in_mad, void *response_mad, u8 *status) +{ void *box; dma_addr_t dma; int err; + u32 in_modifier = port; + u8 op_modifier = 0; -#define MAD_IFC_BOX_SIZE 512 +#define MAD_IFC_BOX_SIZE 0x400 +#define MAD_IFC_MY_QPN_OFFSET 0x100 +#define MAD_IFC_RQPN_OFFSET 0x104 +#define MAD_IFC_SL_OFFSET 0x108 +#define MAD_IFC_G_PATH_OFFSET 0x109 +#define MAD_IFC_RLID_OFFSET 0x10a +#define MAD_IFC_PKEY_OFFSET 0x10e +#define MAD_IFC_GRH_OFFSET 0x140 + BUG_ON((!ignore_bkey && !ignore_mkey) && !in_wc); + box = pci_alloc_consistent(dev->pdev, MAD_IFC_BOX_SIZE, &dma); if (!box) return -ENOMEM; memcpy(box, in_mad, 256); - err = mthca_cmd_box(dev, dma, dma + 256, port, !!ignore_mkey, + if (ignore_mkey) + op_modifier |= 0x1; + + if (ignore_bkey) + op_modifier |= 0x2; + + if (in_wc) { + u8 val; + + memset(box + 256, 0, 256); + + MTHCA_PUT(box, in_wc->qp_num, MAD_IFC_MY_QPN_OFFSET); + MTHCA_PUT(box, in_wc->src_qp, MAD_IFC_RQPN_OFFSET); + + val = in_wc->sl << 4; + MTHCA_PUT(box, val, MAD_IFC_SL_OFFSET); + + val = in_wc->dlid_path_bits | + (in_wc->wc_flags & IB_WC_GRH ? 0x80 : 0); + MTHCA_PUT(box, val, MAD_IFC_GRH_OFFSET); + + MTHCA_PUT(box, in_wc->slid, MAD_IFC_RLID_OFFSET); + MTHCA_PUT(box, in_wc->pkey_index, MAD_IFC_PKEY_OFFSET); + + if (in_grh) + memcpy((u8 *) box + MAD_IFC_GRH_OFFSET, in_grh, 40); + + op_modifier |= 0x10; + + in_modifier |= in_wc->slid << 16; + } + + err = mthca_cmd_box(dev, dma, dma + 512, in_modifier, op_modifier, CMD_MAD_IFC, CMD_TIME_CLASS_C, status); if (!err && !*status) - memcpy(response_mad, box + 256, 256); + memcpy(response_mad, box + 512, 256); pci_free_consistent(dev->pdev, MAD_IFC_BOX_SIZE, box, dma); return err; Index: hw/mthca/mthca_cmd.h =================================================================== --- hw/mthca/mthca_cmd.h (revision 1537) +++ hw/mthca/mthca_cmd.h (working copy) @@ -280,7 +280,8 @@ void *qp_context, u8 *status); int mthca_CONF_SPECIAL_QP(struct mthca_dev *dev, int type, u32 qpn, u8 *status); -int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int port, +int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int ignore_bkey, + int port, struct ib_wc* in_wc, struct ib_grh* in_grh, void *in_mad, void *response_mad, u8 *status); int mthca_READ_MGM(struct mthca_dev *dev, int index, void *mgm, u8 *status); From mst at mellanox.co.il Sun Jan 16 22:13:17 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 17 Jan 2005 08:13:17 +0200 Subject: [openib-general] [PATCH] fill in missing parameters for MAD_IFC In-Reply-To: <52mzv8iqkm.fsf@topspin.com> References: <20050116095537.GE3718@mellanox.co.il> <52mzv8iqkm.fsf@topspin.com> Message-ID: <20050117061317.GA12955@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] [PATCH] fill in missing parameters for MAD_IFC": > I reworked this to clean a few things up and match the style of > mthca_cmd.c a little better. Does this still seem OK? > > (I got rid of the BUG_ON because I think the test > > BUG_ON((!ignore_bkey && !ignore_mkey) && !in_wc); > > is not really correct -- eg passing a MAD known not to be BM-class > with only ignore_mkey set and no in_wc would be fine -- and I > couldn't decide on a check that did seem worth oopsing for) > > Thanks, > Roland The BUG_ON was there because of this: + if (!in_wc) + mad_flags = IB_MAD_IGNORE_ALL; so we never get to this state. mst From mst at mellanox.co.il Mon Jan 17 00:43:21 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 17 Jan 2005 10:43:21 +0200 Subject: [openib-general] [PATCH] fill in missing parameters for MAD_IFC In-Reply-To: <52mzv8iqkm.fsf@topspin.com> References: <20050116095537.GE3718@mellanox.co.il> <52mzv8iqkm.fsf@topspin.com> Message-ID: <20050117084321.GC4715@mellanox.co.il> Hello, Roland! Quoting Roland Dreier > I reworked this to clean a few things up and match the style of > mthca_cmd.c a little better. This is a valid approach. Its your call. Generally, there is one thing I dislike in the MTHCA_PUT macro - specifically, that I have to look up the size of the *source* variable to know which conversion is made. Ideally its the destination that should dictate the right size. Consider this: MTHCA_PUT(box, in_wc->slid, MAD_IFC_RLID_OFFSET); So in_wc->slid happends to have size 16 bit, and so it fits exactly the inbox format. Its not just luck, but when I am trying to grok the specific hardware command, I dont want to go look up the type of structures in ib_verbs.h, which do not have to match hardware exactly after all. With the inbox described by a structure, I can see the correct conversion is being applied at a glance, without going to another file. Further, I also think that specifying offsets by means of a structure has an advantage that it is easier to see that you did not forget to fill in some field. Maybe not just now, but what about eventually making mthca_cmd.c use structures along the lines of mthca_cq.c ? > Does this still seem OK? Yes, it looks allright to commit. > (I got rid of the BUG_ON because I think the test > > BUG_ON((!ignore_bkey && !ignore_mkey) && !in_wc); > > is not really correct -- eg passing a MAD known not to be BM-class > with only ignore_mkey set and no in_wc would be fine -- and I > couldn't decide on a check that did seem worth oopsing for) The check seems to be in there. Its not that important either way. > + BUG_ON((!ignore_bkey && !ignore_mkey) && !in_wc); > + MST From mst at mellanox.co.il Mon Jan 17 06:24:56 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 17 Jan 2005 16:24:56 +0200 Subject: [openib-general] [PATCH] mthca_eq improvements Message-ID: <20050117142456.GA14063@mellanox.co.il> Hello, Roland, all! Here are some mthca eq improvements, rolled into one patch. These are all touching the same code and so are related, but if its too big to be readable, let me know and I'll try to split it up. With these changes I am now getting at least 10% more bandwiths on a non-MSI system than before. Issues addressed are: 1. general interrupt handling speedup I noticed that several operations where performed multiple times, for example get_eqe was called multiple times, as another example, consumer index was truncated to eq size upon each eqe found. These cleanups get me some 5% more bandwith in ip over ib. This last change (truncating consumer index only once) is also needed for future memfree support, since memfree has full 32 bit indices. 2. non-MSI interrupt handling simplification I also noticed that interrupt handler re-read the ecr after handling all eqs, in case more eqes were written. However, consider that the interrupt is *not* cleared second if this happens. As a result, after we get out of the handler, we will get an extra interrupt with all bits in ecr cleared. And since this is a shared interrut, we'll report it as not handled, further confusing the system. And re-checking ecr is not actually needed, since if some bits are set, hardware will assert the interrupt and we will get back to the handler eventually. Changing this gets me another 5% bandwiths, but only on non-MSI system, naturally. 3. Added memfree support in the eq initialisation command. Please comment. MST From mst at mellanox.co.il Mon Jan 17 06:31:14 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 17 Jan 2005 16:31:14 +0200 Subject: [openib-general] [PATCH] (resend) mthca_eq improvements In-Reply-To: <20050117142456.GA14063@mellanox.co.il> References: <20050117142456.GA14063@mellanox.co.il> Message-ID: <20050117143114.GA14094@mellanox.co.il> Sorry, forgot the patch. ======== Hello, Roland, all! Here are some mthca eq improvements, rolled into one patch. These are all touching the same code and so are related, but if its too big to be readable, let me know and I'll try to split it up. With these changes I am now getting at least 10% more bandwiths on a non-MSI system than before. Issues addressed are: 1. general interrupt handling speedup I noticed that several operations where performed multiple times, for example get_eqe was called multiple times, as another example, consumer index was truncated to eq size upon each eqe found. These cleanups get me some 5% more bandwith in ip over ib, I expect the to carry forward to MSI systems too. This last change (truncating consumer index only once) is also needed for future memfree support, since memfree has full 32 bit indices. 2. non-MSI interrupt handling simplification This is the 3'd chunk from the end. I also noticed that interrupt handler re-read the ecr after handling all eqs, in case more eqes were written. However, consider that the interrupt is *not* cleared second if this happens. As a result, after we get out of the handler, we will get an extra interrupt with all bits in ecr cleared. And since this is a shared interrut, we'll report it as not handled, further confusing the system. And re-checking ecr is not actually needed, since if some bits are set, hardware will assert the interrupt and we will get back to the handler eventually. Changing this gets me another 5% bandwiths, but only on non-MSI system, naturally. 3. Added memfree support in the eq initialisation command. This is in the last 2 chunks. Please comment. MST Interrupt handler speedup and start of memfree eq support. Signed-off-by: Michael S. Tsirkin Index: hw/mthca/mthca_provider.h =================================================================== --- hw/mthca/mthca_provider.h (revision 1540) +++ hw/mthca/mthca_provider.h (working copy) @@ -70,7 +70,7 @@ struct mthca_eq { u16 msi_x_entry; int have_irq; int nent; - int cons_index; + unsigned cons_index; struct mthca_buf_list *page_list; struct mthca_mr mr; }; Index: hw/mthca/mthca_eq.c =================================================================== --- hw/mthca/mthca_eq.c (revision 1540) +++ hw/mthca/mthca_eq.c (working copy) @@ -164,12 +164,12 @@ static inline u64 async_mask(struct mthc MTHCA_ASYNC_EVENT_MASK; } -static inline void set_eq_ci(struct mthca_dev *dev, int eqn, int ci) +static inline void set_eq_ci(struct mthca_dev *dev, struct mthca_eq *eq, u32 ci) { u32 doorbell[2]; - doorbell[0] = cpu_to_be32(MTHCA_EQ_DB_SET_CI | eqn); - doorbell[1] = cpu_to_be32(ci); + doorbell[0] = cpu_to_be32(MTHCA_EQ_DB_SET_CI | eq->eqn); + doorbell[1] = cpu_to_be32(ci & (eq->nent - 1)); mthca_write64(doorbell, dev->kar + MTHCA_EQ_DOORBELL, @@ -200,21 +200,22 @@ static inline void disarm_cq(struct mthc MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock)); } -static inline struct mthca_eqe *get_eqe(struct mthca_eq *eq, int entry) +static inline struct mthca_eqe *get_eqe(struct mthca_eq *eq, u32 entry) { - return eq->page_list[entry * MTHCA_EQ_ENTRY_SIZE / PAGE_SIZE].buf - + (entry * MTHCA_EQ_ENTRY_SIZE) % PAGE_SIZE; + unsigned long off = (entry & (eq->nent - 1)) * MTHCA_EQ_ENTRY_SIZE; + return eq->page_list[off / PAGE_SIZE].buf + off % PAGE_SIZE; } -static inline int next_eqe_sw(struct mthca_eq *eq) +static inline struct mthca_eqe* next_eqe_sw(struct mthca_eq *eq) { - return !(MTHCA_EQ_ENTRY_OWNER_HW & - get_eqe(eq, eq->cons_index)->owner); + struct mthca_eqe* eqe; + eqe = get_eqe(eq, eq->cons_index); + return (MTHCA_EQ_ENTRY_OWNER_HW & eqe->owner) ? NULL : eqe; } -static inline void set_eqe_hw(struct mthca_eq *eq, int entry) +static inline void set_eqe_hw(struct mthca_eqe *eqe) { - get_eqe(eq, entry)->owner = MTHCA_EQ_ENTRY_OWNER_HW; + eqe->owner = MTHCA_EQ_ENTRY_OWNER_HW; } static void port_change(struct mthca_dev *dev, int port, int active) @@ -231,14 +232,14 @@ static void port_change(struct mthca_dev ib_dispatch_event(&record); } -static void mthca_eq_int(struct mthca_dev *dev, struct mthca_eq *eq) +static int mthca_eq_int(struct mthca_dev *dev, struct mthca_eq *eq) { struct mthca_eqe *eqe; int disarm_cqn; + int eqes_found = 0; - while (next_eqe_sw(eq)) { + while ((eqe = next_eqe_sw(eq))) { int set_ci = 0; - eqe = get_eqe(eq, eq->cons_index); /* * Make sure we read EQ entry contents after we've @@ -328,12 +329,13 @@ static void mthca_eq_int(struct mthca_de break; }; - set_eqe_hw(eq, eq->cons_index); - eq->cons_index = (eq->cons_index + 1) & (eq->nent - 1); + set_eqe_hw(eqe); + ++eq->cons_index; + eqes_found = 1; if (set_ci) { wmb(); /* see comment below */ - set_eq_ci(dev, eq->eqn, eq->cons_index); + set_eq_ci(dev, eq, eq->cons_index); set_ci = 0; } } @@ -347,9 +349,13 @@ static void mthca_eq_int(struct mthca_de * possibility of the HCA writing an entry and then * having set_eqe_hw() overwrite the owner field. */ - wmb(); - set_eq_ci(dev, eq->eqn, eq->cons_index); + if (likely(eqes_found)) { + wmb(); + set_eq_ci(dev, eq, eq->cons_index); + } eq_req_not(dev, eq->eqn); + + return eqes_found; } static irqreturn_t mthca_interrupt(int irq, void *dev_ptr, struct pt_regs *regs) @@ -440,7 +447,7 @@ static int __devinit mthca_create_eq(str } for (i = 0; i < nent; ++i) - set_eqe_hw(eq, i); + set_eqe_hw(get_eqe(eq, i)); eq->eqn = mthca_alloc(&dev->eq_table.alloc); if (eq->eqn == -1) @@ -362,7 +368,7 @@ static irqreturn_t mthca_interrupt(int i if (dev->eq_table.clr_mask) writel(dev->eq_table.clr_mask, dev->eq_table.clr_int); - while ((ecr = readl(dev->hcr + MTHCA_ECR_OFFSET + 4)) != 0) { + if ((ecr = readl(dev->hcr + MTHCA_ECR_OFFSET + 4))) { work = 1; writel(ecr, dev->hcr + MTHCA_ECR_CLR_OFFSET + 4); @@ -399,6 +405,7 @@ static int __devinit mthca_create_eq(str void *mailbox = NULL; struct mthca_eq_context *eq_context; int err = -ENOMEM; + int page; int i; u8 status; @@ -463,8 +470,13 @@ static int __devinit mthca_create_eq(str MTHCA_EQ_STATE_ARMED | MTHCA_EQ_FLAG_TR); eq_context->start = cpu_to_be64(0); - eq_context->logsize_usrpage = cpu_to_be32((ffs(nent) - 1) << 24 | - MTHCA_KAR_PAGE); + + if (dev->hca_type == ARBEL_NATIVE) + page = MTHCA_KAR_PAGE; + else + page = 0; + + eq_context->logsize_usrpage = cpu_to_be32((ffs(nent) - 1) << 24 | page); eq_context->pd = cpu_to_be32(dev->driver_pd.pd_num); eq_context->intr = intr; eq_context->lkey = cpu_to_be32(eq->mr.ibmr.lkey); From roland at topspin.com Mon Jan 17 06:45:43 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 17 Jan 2005 06:45:43 -0800 Subject: [openib-general] [PATCH] fill in missing parameters for MAD_IFC In-Reply-To: <20050117084321.GC4715@mellanox.co.il> (Michael S. Tsirkin's message of "Mon, 17 Jan 2005 10:43:21 +0200") References: <20050116095537.GE3718@mellanox.co.il> <52mzv8iqkm.fsf@topspin.com> <20050117084321.GC4715@mellanox.co.il> Message-ID: <52is5wi06g.fsf@topspin.com> Michael> I dont want to go look up the type of structures in Michael> ib_verbs.h, which do not have to match hardware exactly Michael> after all. Yeah, I had avoided putting direct dependencies on ib_verbs.h into mthca_cmd.c, but I didn't see a nice way to avoid it for the extended MAD info passed to MAD_IFC. Michael> Maybe not just now, but what about eventually making Michael> mthca_cmd.c use structures along the lines of mthca_cq.c? The thing I don't like about doing that is that things like sl_g_mlpath end up being pretty ugly to handle. Michael> The check seems to be in there. Its not that important Michael> either way. I did misread the BUG_ON -- but it does seem there are cases where it oopses without really needing to. Rather than a BUG_ON, how about just moving the code to make sure we don't check without in_wc into the actual MAD_IFC routine: /* * Key check traps can't be generated unless we have in_wc to * tell us where to send the trap. */ if (ignore_mkey || !in_wc) op_modifier |= 0x1; if (ignore_bkey || !in_wc) op_modifier |= 0x2; Here's my current patch: Index: hw/mthca/mthca_provider.c =================================================================== --- hw/mthca/mthca_provider.c (revision 1537) +++ hw/mthca/mthca_provider.c (working copy) @@ -59,8 +59,8 @@ in_mad->method = IB_MGMT_METHOD_GET; in_mad->attr_id = IB_SMP_ATTR_NODE_INFO; - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - 1, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + 1, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -104,8 +104,8 @@ in_mad->attr_id = IB_SMP_ATTR_PORT_INFO; in_mad->attr_mod = cpu_to_be32(port); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -189,8 +189,8 @@ in_mad->attr_id = IB_SMP_ATTR_PKEY_TABLE; in_mad->attr_mod = cpu_to_be32(index / 32); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -228,8 +228,8 @@ in_mad->attr_id = IB_SMP_ATTR_PORT_INFO; in_mad->attr_mod = cpu_to_be32(port); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -248,8 +248,8 @@ in_mad->attr_id = IB_SMP_ATTR_GUID_INFO; in_mad->attr_mod = cpu_to_be32(index / 8); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; Index: hw/mthca/mthca_mad.c =================================================================== --- hw/mthca/mthca_mad.c (revision 1537) +++ hw/mthca/mthca_mad.c (working copy) @@ -232,8 +232,9 @@ return IB_MAD_RESULT_SUCCESS; err = mthca_MAD_IFC(to_mdev(ibdev), - !!(mad_flags & IB_MAD_IGNORE_MKEY), - port_num, in_mad, out_mad, + mad_flags & IB_MAD_IGNORE_MKEY, + mad_flags & IB_MAD_IGNORE_BKEY, + port_num, in_wc, in_grh, in_mad, out_mad, &status); if (err) { mthca_err(to_mdev(ibdev), "MAD_IFC failed\n"); Index: hw/mthca/mthca_cmd.c =================================================================== --- hw/mthca/mthca_cmd.c (revision 1537) +++ hw/mthca/mthca_cmd.c (working copy) @@ -36,6 +36,7 @@ #include #include #include +#include #include "mthca_dev.h" #include "mthca_config_reg.h" @@ -1626,13 +1627,24 @@ CMD_TIME_CLASS_B, status); } -int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int port, - void *in_mad, void *response_mad, u8 *status) { +int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int ignore_bkey, + int port, struct ib_wc* in_wc, struct ib_grh* in_grh, + void *in_mad, void *response_mad, u8 *status) +{ void *box; dma_addr_t dma; int err; + u32 in_modifier = port; + u8 op_modifier = 0; -#define MAD_IFC_BOX_SIZE 512 +#define MAD_IFC_BOX_SIZE 0x400 +#define MAD_IFC_MY_QPN_OFFSET 0x100 +#define MAD_IFC_RQPN_OFFSET 0x104 +#define MAD_IFC_SL_OFFSET 0x108 +#define MAD_IFC_G_PATH_OFFSET 0x109 +#define MAD_IFC_RLID_OFFSET 0x10a +#define MAD_IFC_PKEY_OFFSET 0x10e +#define MAD_IFC_GRH_OFFSET 0x140 box = pci_alloc_consistent(dev->pdev, MAD_IFC_BOX_SIZE, &dma); if (!box) @@ -1640,11 +1652,46 @@ memcpy(box, in_mad, 256); - err = mthca_cmd_box(dev, dma, dma + 256, port, !!ignore_mkey, + /* + * Key check traps can't be generated unless we have in_wc to + * tell us where to send the trap. + */ + if (ignore_mkey || !in_wc) + op_modifier |= 0x1; + if (ignore_bkey || !in_wc) + op_modifier |= 0x2; + + if (in_wc) { + u8 val; + + memset(box + 256, 0, 256); + + MTHCA_PUT(box, in_wc->qp_num, MAD_IFC_MY_QPN_OFFSET); + MTHCA_PUT(box, in_wc->src_qp, MAD_IFC_RQPN_OFFSET); + + val = in_wc->sl << 4; + MTHCA_PUT(box, val, MAD_IFC_SL_OFFSET); + + val = in_wc->dlid_path_bits | + (in_wc->wc_flags & IB_WC_GRH ? 0x80 : 0); + MTHCA_PUT(box, val, MAD_IFC_GRH_OFFSET); + + MTHCA_PUT(box, in_wc->slid, MAD_IFC_RLID_OFFSET); + MTHCA_PUT(box, in_wc->pkey_index, MAD_IFC_PKEY_OFFSET); + + if (in_grh) + memcpy((u8 *) box + MAD_IFC_GRH_OFFSET, in_grh, 40); + + op_modifier |= 0x10; + + in_modifier |= in_wc->slid << 16; + } + + err = mthca_cmd_box(dev, dma, dma + 512, in_modifier, op_modifier, CMD_MAD_IFC, CMD_TIME_CLASS_C, status); if (!err && !*status) - memcpy(response_mad, box + 256, 256); + memcpy(response_mad, box + 512, 256); pci_free_consistent(dev->pdev, MAD_IFC_BOX_SIZE, box, dma); return err; Index: hw/mthca/mthca_cmd.h =================================================================== --- hw/mthca/mthca_cmd.h (revision 1537) +++ hw/mthca/mthca_cmd.h (working copy) @@ -280,7 +280,8 @@ void *qp_context, u8 *status); int mthca_CONF_SPECIAL_QP(struct mthca_dev *dev, int type, u32 qpn, u8 *status); -int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int port, +int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int ignore_bkey, + int port, struct ib_wc* in_wc, struct ib_grh* in_grh, void *in_mad, void *response_mad, u8 *status); int mthca_READ_MGM(struct mthca_dev *dev, int index, void *mgm, u8 *status); From mst at mellanox.co.il Mon Jan 17 07:13:32 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 17 Jan 2005 17:13:32 +0200 Subject: [openib-general] [PATCH] fill in missing parameters for MAD_IFC In-Reply-To: <52is5wi06g.fsf@topspin.com> References: <20050116095537.GE3718@mellanox.co.il> <52mzv8iqkm.fsf@topspin.com> <20050117084321.GC4715@mellanox.co.il> <52is5wi06g.fsf@topspin.com> Message-ID: <20050117151332.GA14147@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] [PATCH] fill in missing parameters for MAD_IFC": > Michael> I dont want to go look up the type of structures in > Michael> ib_verbs.h, which do not have to match hardware exactly > Michael> after all. > > Yeah, I had avoided putting direct dependencies on ib_verbs.h into > mthca_cmd.c, but I didn't see a nice way to avoid it for the extended > MAD info passed to MAD_IFC. Well, the dependency will be there, but I think relying on the field width in ib_verbs.h matching the hardware is a bit on the ugly side. > Michael> Maybe not just now, but what about eventually making > Michael> mthca_cmd.c use structures along the lines of mthca_cq.c? > > The thing I don't like about doing that is that things like > sl_g_mlpath end up being pretty ugly to handle. It does not have to be that way, I put sl and path in the same word because they are that way in the cqe, but they could be split. + val = in_wc->sl << 4; + MTHCA_PUT(box, val, MAD_IFC_SL_OFFSET); + + val = in_wc->dlid_path_bits | + (in_wc->wc_flags & IB_WC_GRH ? 0x80 : 0); + MTHCA_PUT(box, val, MAD_IFC_GRH_OFFSET); Becomes: + info->sl = in_wc->sl << 4; + info->sl_g_mlpath = cpu_to_be16(in_wc->dlid_path_bits | + (in_wc->wc_flags & IB_WC_GRH ? 0x80 : 0); Convinced? > Michael> The check seems to be in there. Its not that important > Michael> either way. > > I did misread the BUG_ON -- but it does seem there are cases where it > oopses without really needing to. Rather than a BUG_ON, how about > just moving the code to make sure we don't check without in_wc into > the actual MAD_IFC routine: > > /* > * Key check traps can't be generated unless we have in_wc to > * tell us where to send the trap. > */ > if (ignore_mkey || !in_wc) > op_modifier |= 0x1; > if (ignore_bkey || !in_wc) > op_modifier |= 0x2; Fine with me. > Here's my current patch: OK. MST From halr at voltaire.com Mon Jan 17 07:27:11 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 17 Jan 2005 10:27:11 -0500 Subject: [openib-general] got ipoib up once but not twice :-) In-Reply-To: <1105831122.8678.1011.camel@localhost> References: <1105733491.4649.4281.camel@localhost.localdomain> <52wtufjr8v.fsf@topspin.com> <1105791832.4649.5315.camel@localhost.localdomain> <1105831122.8678.1011.camel@localhost> Message-ID: <1105975433.4646.134.camel@localhost.localdomain> On Sat, 2005-01-15 at 18:18, Matt Leininger wrote: > On Sat, 2005-01-15 at 07:27 -0500, Hal Rosenstock wrote: > > On Fri, 2005-01-14 at 23:10, Ronald G. Minnich wrote: > > > Hmm, it's back. I guess I was not patient enough. Not sure when it all got > > > back. I will have to time it next time, I assume it won't take 6 hours > > > each time :-) > > > > > > I'm working on making this 256-node cluster work over infiniband only, > > > same as our myrinet clusters which are myrinet-only. > > > > How many 96 port switches ? I'd be curious how long it does take to > > initialize this (as I do not have access to a large cluster). Also, > > right now I'm pretty sure things are being done without pipelining on so > > it is likely slower. More on this later. > > > > Ron has 9 96 port switches, 3 in the spine and 6 leaf switches all > based on the InfiniScale II switch ASIC, to make a 288 port fabric. > It's not quite a true fat-tree network since there are no spine bypass > cards for the older 96 port switch (needed on the leaf switches). This > is an interesting test case because Ron's network has a total of 612 > switch chips. A 1152 port fat-tree fabric based on InfiniScale III > would have 240 switch chips. That's a big cluster :-) There are several things that can be done which should improve this but I would be curious as to how long the initialization really does take. 1. Currently OpenSM is compiled with debug and no optimization. This should be changed to at least -O2 (and perhaps -O4) but I would start with -O2. This results in a 2x speedup for some code paths. 2. OpenSM supports a pipelining mode for SMPs. The default is 1 outstanding SMP. -maxsmps <#> indicates the number of outstanding SMPs allowed and should speed up the initialization. Useful values of this are 16 and 32. Beyond this, there may be some issue with a link which is causing timeout and retries to kick in. The OSM log should have some messages in there indicating this. I will add this info to the management README. -- Hal From roland at topspin.com Mon Jan 17 08:01:49 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 17 Jan 2005 08:01:49 -0800 Subject: [openib-general] [PATCH] fill in missing parameters for MAD_IFC In-Reply-To: <20050117151332.GA14147@mellanox.co.il> (Michael S. Tsirkin's message of "Mon, 17 Jan 2005 17:13:32 +0200") References: <20050116095537.GE3718@mellanox.co.il> <52mzv8iqkm.fsf@topspin.com> <20050117084321.GC4715@mellanox.co.il> <52is5wi06g.fsf@topspin.com> <20050117151332.GA14147@mellanox.co.il> Message-ID: <527jmchwnm.fsf@topspin.com> Michael> Convinced? Nope ;) When I first started writing mthca, I thought about using stucts for FW commands, but I came to the conclusion that trying to define a struct for the parameters for commands like INIT_HCA was hopeless -- it would take forever to get it right and I'd never be able to change it. - R. From roland at topspin.com Mon Jan 17 08:04:39 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 17 Jan 2005 08:04:39 -0800 Subject: [openib-general] [PATCH] (resend) mthca_eq improvements In-Reply-To: <20050117143114.GA14094@mellanox.co.il> (Michael S. Tsirkin's message of "Mon, 17 Jan 2005 16:31:14 +0200") References: <20050117142456.GA14063@mellanox.co.il> <20050117143114.GA14094@mellanox.co.il> Message-ID: <523bx0hwiw.fsf@topspin.com> Michael> Hello, Roland, all! Here are some mthca eq improvements, Michael> rolled into one patch. These are all touching the same Michael> code and so are related, but if its too big to be Michael> readable, let me know and I'll try to split it up. It looks like you concatenated more than one patch (there are out of order chunks, which at least my version of patch complains about). Anyway, easy to split up... Michael> 1. general interrupt handling speedup I noticed that Michael> several operations where performed multiple times, for Michael> example get_eqe was called multiple times, as another Michael> example, consumer index was truncated to eq size upon Michael> each eqe found. Michael> 2. non-MSI interrupt handling simplification This is the Michael> 3'd chunk from the end. Looks great, I'll apply these two pieces. With MSI-X I get about a 3% increase in throughput with netperf over IPoIB with these changes. Michael> 3. Added memfree support in the eq initialisation Michael> command. This is in the last 2 chunks. This looks wrong to me: + if (dev->hca_type == ARBEL_NATIVE) + page = MTHCA_KAR_PAGE; + else + page = 0; the test is reversed, right? I'm going to hold off applying this change until I have the rest of mem-free EQ support ready. Thanks, Roland From mst at mellanox.co.il Mon Jan 17 08:07:14 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 17 Jan 2005 18:07:14 +0200 Subject: [openib-general] [PATCH] fill in missing parameters for MAD_IFC In-Reply-To: <527jmchwnm.fsf@topspin.com> References: <20050116095537.GE3718@mellanox.co.il> <52mzv8iqkm.fsf@topspin.com> <20050117084321.GC4715@mellanox.co.il> <52is5wi06g.fsf@topspin.com> <20050117151332.GA14147@mellanox.co.il> <527jmchwnm.fsf@topspin.com> Message-ID: <20050117160714.GB14147@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] [PATCH] fill in missing parameters for MAD_IFC": > Michael> Convinced? > > Nope ;) > > When I first started writing mthca, I thought about using stucts for > FW commands, but I came to the conclusion that trying to define a > struct for the parameters for commands like INIT_HCA was hopeless -- > it would take forever to get it right and I'd never be able to change > it. > > - R. You may be right. VAPI used structures auto-generated from the PRM for this. Anyway, do you plan to apply the patch with MTHCA_PUT? MST From roland at topspin.com Mon Jan 17 08:08:30 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 17 Jan 2005 08:08:30 -0800 Subject: [openib-general] [PATCH] fill in missing parameters for MAD_IFC In-Reply-To: <20050117160714.GB14147@mellanox.co.il> (Michael S. Tsirkin's message of "Mon, 17 Jan 2005 18:07:14 +0200") References: <20050116095537.GE3718@mellanox.co.il> <52mzv8iqkm.fsf@topspin.com> <20050117084321.GC4715@mellanox.co.il> <52is5wi06g.fsf@topspin.com> <20050117151332.GA14147@mellanox.co.il> <527jmchwnm.fsf@topspin.com> <20050117160714.GB14147@mellanox.co.il> Message-ID: <52y8esghs1.fsf@topspin.com> Michael> You may be right. VAPI used structures auto-generated Michael> from the PRM for this. Anyway, do you plan to apply the Michael> patch with MTHCA_PUT? Yes, I just did. Thanks, Roland From mst at mellanox.co.il Mon Jan 17 08:12:55 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 17 Jan 2005 18:12:55 +0200 Subject: [openib-general] [PATCH] (resend) mthca_eq improvements In-Reply-To: <523bx0hwiw.fsf@topspin.com> References: <20050117142456.GA14063@mellanox.co.il> <20050117143114.GA14094@mellanox.co.il> <523bx0hwiw.fsf@topspin.com> Message-ID: <20050117161255.GC14147@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] [PATCH] (resend) mthca_eq improvements": > Michael> Hello, Roland, all! Here are some mthca eq improvements, > Michael> rolled into one patch. These are all touching the same > Michael> code and so are related, but if its too big to be > Michael> readable, let me know and I'll try to split it up. > > It looks like you concatenated more than one patch No, I re-ordered them by hand for clarity :) > (there are out of > order chunks, which at least my version of patch complains about). Mine doesnt :) > Anyway, easy to split up... Fine, let me know if you need help. > Michael> 1. general interrupt handling speedup I noticed that > Michael> several operations where performed multiple times, for > Michael> example get_eqe was called multiple times, as another > Michael> example, consumer index was truncated to eq size upon > Michael> each eqe found. > > Michael> 2. non-MSI interrupt handling simplification This is the > Michael> 3'd chunk from the end. > > Looks great, I'll apply these two pieces. With MSI-X I get about a 3% > increase in throughput with netperf over IPoIB with these changes. > Michael> 3. Added memfree support in the eq initialisation > Michael> command. This is in the last 2 chunks. > > This looks wrong to me: > > + if (dev->hca_type == ARBEL_NATIVE) > + page = MTHCA_KAR_PAGE; > + else > + page = 0; > > the test is reversed, right? Yes it is ... the reason it works (I did test it :)) is because if you use page 1 you dont have to supply the page in the context at all - KAR_PAGE is priviledged, so you can do whatever you want with it. > I'm going to hold off applying this change until I have the rest of > mem-free EQ support ready. > > Thanks, > Roland Just for this last one - probably a good idea. From roland at topspin.com Mon Jan 17 08:56:53 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 17 Jan 2005 08:56:53 -0800 Subject: [openib-general] [PATCH] mthca: Test interrupts during initialization Message-ID: <52k6qcgfje.fsf@topspin.com> I just committed this, patch, which tests interrupt generation during initialization. If it fails, we'll now get a nice error message like ib_mthca 0000:04:00.0: NOP command failed to generate interrupt, aborting. ib_mthca 0000:04:00.0: Try again with MSI/MSI-X disabled. instead of a cryptic message about QP table init failing. Also, the failure is much faster (we only wait 1/10 sec for the interrupt to arrive). When things are working (with debug messages enabled), we now print ib_mthca 0000:04:00.0: NOP command IRQ test passed - Roland Index: infiniband/hw/mthca/mthca_main.c =================================================================== --- infiniband/hw/mthca/mthca_main.c (revision 1537) +++ infiniband/hw/mthca/mthca_main.c (working copy) @@ -570,6 +570,7 @@ static int __devinit mthca_setup_hca(struct mthca_dev *dev) { int err; + u8 status; MTHCA_INIT_DOORBELL_LOCK(&dev->doorbell_lock); @@ -615,6 +616,18 @@ goto err_eq_table_free; } + err = mthca_NOP(dev, &status); + if (err || status) { + mthca_err(dev, "NOP command failed to generate interrupt, aborting.\n"); + if (dev->mthca_flags & (MTHCA_FLAG_MSI | MTHCA_FLAG_MSI_X)) + mthca_err(dev, "Try again with MSI/MSI-X disabled.\n"); + else + mthca_err(dev, "BIOS or ACPI interrupt routing problem?\n"); + + goto err_cmd_poll; + } else + mthca_dbg(dev, "NOP command IRQ test passed\n"); + err = mthca_init_cq_table(dev); if (err) { mthca_err(dev, "Failed to initialize " Index: infiniband/hw/mthca/mthca_cmd.c =================================================================== --- infiniband/hw/mthca/mthca_cmd.c (revision 1544) +++ infiniband/hw/mthca/mthca_cmd.c (working copy) @@ -1757,3 +1757,8 @@ pci_unmap_single(dev->pdev, indma, 16, PCI_DMA_TODEVICE); return err; } + +int mthca_NOP(struct mthca_dev *dev, u8 *status) +{ + return mthca_cmd(dev, 0, 0x1f, 0, CMD_NOP, msecs_to_jiffies(100), status); +} Index: infiniband/hw/mthca/mthca_cmd.h =================================================================== --- infiniband/hw/mthca/mthca_cmd.h (revision 1544) +++ infiniband/hw/mthca/mthca_cmd.h (working copy) @@ -289,6 +289,7 @@ u8 *status); int mthca_MGID_HASH(struct mthca_dev *dev, void *gid, u16 *hash, u8 *status); +int mthca_NOP(struct mthca_dev *dev, u8 *status); #define MAILBOX_ALIGN(x) ((void *) ALIGN((unsigned long) (x), MTHCA_CMD_MAILBOX_ALIGN)) From mst at mellanox.co.il Mon Jan 17 09:00:29 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 17 Jan 2005 19:00:29 +0200 Subject: [openib-general] [PATCH] mthca: Test interrupts during initialization In-Reply-To: <52k6qcgfje.fsf@topspin.com> References: <52k6qcgfje.fsf@topspin.com> Message-ID: <20050117170029.GA14425@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "[openib-general] [PATCH] mthca: Test interrupts during initialization": > I just committed this, patch, which tests interrupt generation during > initialization. If it fails, we'll now get a nice error message like > > ib_mthca 0000:04:00.0: NOP command failed to generate interrupt, aborting. > ib_mthca 0000:04:00.0: Try again with MSI/MSI-X disabled. > > instead of a cryptic message about QP table init failing. Also, the > failure is much faster (we only wait 1/10 sec for the interrupt to > arrive). When things are working (with debug messages enabled), we > now print > > ib_mthca 0000:04:00.0: NOP command IRQ test passed > > - Roland If mthca could downgrade gracefully to regular interrupts, the default for msi-x could be changed to 1? mst From roland at topspin.com Mon Jan 17 09:05:17 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 17 Jan 2005 09:05:17 -0800 Subject: [openib-general] [PATCH] mthca: Test interrupts during initialization In-Reply-To: <20050117170029.GA14425@mellanox.co.il> (Michael S. Tsirkin's message of "Mon, 17 Jan 2005 19:00:29 +0200") References: <52k6qcgfje.fsf@topspin.com> <20050117170029.GA14425@mellanox.co.il> Message-ID: <52d5w4gf5e.fsf@topspin.com> Michael> If mthca could downgrade gracefully to regular Michael> interrupts, the default for msi-x could be changed to 1? Possibly (although it depends on the precise MSI-X failure mode). Also I seem to remember some problems with changing the PCI header (ie to enable/disable MSI-X) after SYS_EN, although I can't remember exactly what the issue was. - R. From mst at mellanox.co.il Mon Jan 17 09:13:50 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 17 Jan 2005 19:13:50 +0200 Subject: [openib-general] [PATCH] mthca: Test interrupts during initialization In-Reply-To: <52d5w4gf5e.fsf@topspin.com> References: <52k6qcgfje.fsf@topspin.com> <20050117170029.GA14425@mellanox.co.il> <52d5w4gf5e.fsf@topspin.com> Message-ID: <20050117171350.GB14425@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] [PATCH] mthca: Test interrupts during initialization": > Michael> If mthca could downgrade gracefully to regular > Michael> interrupts, the default for msi-x could be changed to 1? > > Possibly (although it depends on the precise MSI-X failure mode). > Also I seem to remember some problems with changing the PCI header > (ie to enable/disable MSI-X) after SYS_EN, although I can't remember > exactly what the issue was. > > - R. You asked the right person :) You cant do it on tavor, but it will be fine if you close everything and do system disable. mst From shaharf at voltaire.com Mon Jan 17 09:23:14 2005 From: shaharf at voltaire.com (shaharf) Date: Mon, 17 Jan 2005 19:23:14 +0200 Subject: [openib-general] got ipoib up once but not twice :-) Message-ID: Roland, Can you please run ibnetdiscover on one of the openib gen2 hosts and send me the output file? Please verify that there are no errors during ibnetdiscover run. Without errors I believe that ibnetdiscover will scan the net withing less then 30 sec (maybe even 10 sec). If there are, it means that you have bad links. Gazelle systems are known to have such problems. If you encounter such errors (timeouts, or others) please send me the errors text too, and I will try to guide you how to find the bad links. The opensm may be very sensitive to such bad links, and it may significantly delay its operation. Shahar > -----Original Message----- > From: openib-general-bounces at openib.org [mailto:openib-general- > bounces at openib.org] On Behalf Of Hal Rosenstock > Sent: Monday, January 17, 2005 5:27 PM > To: Matt L. Leininger > Cc: openib-general at openib.org > Subject: Re: [openib-general] got ipoib up once but not twice :-) > > On Sat, 2005-01-15 at 18:18, Matt Leininger wrote: > > On Sat, 2005-01-15 at 07:27 -0500, Hal Rosenstock wrote: > > > On Fri, 2005-01-14 at 23:10, Ronald G. Minnich wrote: > > > > Hmm, it's back. I guess I was not patient enough. Not sure when it > all got > > > > back. I will have to time it next time, I assume it won't take 6 > hours > > > > each time :-) > > > > > > > > I'm working on making this 256-node cluster work over infiniband > only, > > > > same as our myrinet clusters which are myrinet-only. > > > > > > How many 96 port switches ? I'd be curious how long it does take to > > > initialize this (as I do not have access to a large cluster). Also, > > > right now I'm pretty sure things are being done without pipelining on > so > > > it is likely slower. More on this later. > > > > > > > Ron has 9 96 port switches, 3 in the spine and 6 leaf switches all > > based on the InfiniScale II switch ASIC, to make a 288 port fabric. > > It's not quite a true fat-tree network since there are no spine bypass > > cards for the older 96 port switch (needed on the leaf switches). This > > is an interesting test case because Ron's network has a total of 612 > > switch chips. A 1152 port fat-tree fabric based on InfiniScale III > > would have 240 switch chips. > > That's a big cluster :-) There are several things that can be done which > should improve this but I would be curious as to how long the > initialization really does take. > > 1. Currently OpenSM is compiled with debug and no optimization. This > should be changed to at least -O2 (and perhaps -O4) but I would start > with -O2. This results in a 2x speedup for some code paths. > > 2. OpenSM supports a pipelining mode for SMPs. The default is 1 > outstanding SMP. -maxsmps <#> indicates the number of outstanding SMPs > allowed and should speed up the initialization. Useful values of this > are 16 and 32. > > Beyond this, there may be some issue with a link which is causing > timeout and retries to kick in. The OSM log should have some messages in > there indicating this. > > I will add this info to the management README. > > -- Hal > > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit http://openib.org/mailman/listinfo/openib- > general From halr at voltaire.com Mon Jan 17 09:46:57 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 17 Jan 2005 12:46:57 -0500 Subject: [openib-general] ibtracer Message-ID: <1105984017.4646.167.camel@localhost.localdomain> Hi, In trunk/src/userspace/management/diags/ibtracer.txt, there is a writeup on a possible additional diagnostic tool. Feedback on its usefulness as well as any detailed feedback are welcome. Thanks in advance. -- Hal From mshefty at ichips.intel.com Mon Jan 17 13:16:16 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Mon, 17 Jan 2005 13:16:16 -0800 Subject: [openib-general] [PATCH] Initial CM implementation Message-ID: <20050117131616.3539301c.mshefty@ichips.intel.com> The following patch provides an initial CM implementation. The code builds, but has not been tested. It is not included with the build at this time. General code is in place to send all messages, including SIDR and path migration, but receive handling is not in place for REJ or MRA. Error handling on the receive side is limited to dropping the received MAD. See todo's for details on missing functionality. I would definitely welcome any comments on this code. - Sean Index: include/ib_cm.h =================================================================== --- include/ib_cm.h (revision 1548) +++ include/ib_cm.h (working copy) @@ -51,10 +51,6 @@ IB_CM_MRA_REP_SENT, IB_CM_MRA_REP_RCVD, IB_CM_ESTABLISHED, - IB_CM_LAP_SENT, - IB_CM_LAP_RCVD, - IB_CM_MRA_LAP_SENT, - IB_CM_MRA_LAP_RCVD, IB_CM_DREQ_SENT, IB_CM_DREQ_RCVD, IB_CM_TIMEWAIT, @@ -62,32 +58,225 @@ IB_CM_SIDR_REQ_RCVD }; +enum ib_cm_lap_state { + IB_CM_LAP_IDLE, + IB_CM_LAP_SENT, + IB_CM_LAP_RCVD, + IB_CM_MRA_LAP_SENT, + IB_CM_MRA_LAP_RCVD, +}; + enum ib_cm_event_type { - IB_CM_REQ_TIMEOUT, + IB_CM_REQ_ERROR, IB_CM_REQ_RECEIVED, - IB_CM_REP_TIMEOUT, + IB_CM_REP_ERROR, IB_CM_REP_RECEIVED, IB_CM_RTU_RECEIVED, - IB_CM_DREQ_TIMEOUT, + IB_CM_DREQ_ERROR, IB_CM_DREQ_RECEIVED, IB_CM_DREP_RECEIVED, IB_CM_MRA_RECEIVED, - IB_CM_LAP_TIMEOUT, + IB_CM_REJ_RECEIVED, + IB_CM_LAP_ERROR, IB_CM_LAP_RECEIVED, - IB_CM_APR_RECEIVED + IB_CM_APR_RECEIVED, + IB_CM_SIDR_REQ_ERROR, + IB_CM_SIDR_REQ_RECEIVED, + IB_CM_SIDR_REP_RECEIVED +}; + +enum ib_cm_data_size { + IB_CM_REQ_PRIVATE_DATA_SIZE = 92, + IB_CM_MRA_PRIVATE_DATA_SIZE = 222, + IB_CM_REJ_PRIVATE_DATA_SIZE = 148, + IB_CM_REP_PRIVATE_DATA_SIZE = 196, + IB_CM_RTU_PRIVATE_DATA_SIZE = 224, + IB_CM_DREQ_PRIVATE_DATA_SIZE = 220, + IB_CM_DREP_PRIVATE_DATA_SIZE = 224, + IB_CM_REJ_ARI_LENGTH = 72, + IB_CM_LAP_PRIVATE_DATA_SIZE = 168, + IB_CM_APR_PRIVATE_DATA_SIZE = 148, + IB_CM_APR_INFO_LENGTH = 72, + IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE = 216, + IB_CM_SIDR_REP_PRIVATE_DATA_SIZE = 136, + IB_CM_SIDR_REP_INFO_LENGTH = 72 +}; + +struct ib_cm_id; + +struct ib_cm_req_event_param { + struct ib_cm_id *listen_id; + struct ib_device *device; + u8 port; + + struct ib_sa_path_rec *primary_path; + struct ib_sa_path_rec *alternate_path; + + u64 remote_ca_guid; + u32 remote_qkey; + u32 remote_qpn; + enum ib_qp_type qp_type; + + u32 starting_psn; + u8 responder_resources; + u8 initiator_depth; + int local_cm_response_timeout:5; + int flow_control:1; + int remote_cm_response_timeout:5; + int retry_count:3; + int rnr_retry_count:3; + int srq:1; +}; + +struct ib_cm_rep_event_param { + u64 remote_ca_guid; + u32 remote_qkey; + u32 remote_qpn; + u32 starting_psn; + u8 responder_resources; + u8 initiator_depth; + int target_ack_delay:5; + int failover_accepted:2; + int flow_control:1; + int rnr_retry_count:3; + int srq:1; +}; + +enum ib_cm_rej_reason { + IB_CM_REJ_NO_QP = __constant_htons(1), + IB_CM_REJ_NO_EEC = __constant_htons(2), + IB_CM_REJ_NO_RESOURCES = __constant_htons(3), + IB_CM_REJ_TIMEOUT = __constant_htons(4), + IB_CM_REJ_UNSUPPORTED = __constant_htons(5), + IB_CM_REJ_INVALID_COMM_ID = __constant_htons(6), + IB_CM_REJ_INVALID_COMM_INSTANCE = __constant_htons(7), + IB_CM_REJ_INVALID_SERVICE_ID = __constant_htons(8), + IB_CM_REJ_INVALID_TRANSPORT_TYPE = __constant_htons(9), + IB_CM_REJ_STALE_CONN = __constant_htons(10), + IB_CM_REJ_RDC_NOT_EXIST = __constant_htons(11), + IB_CM_REJ_INVALID_GID = __constant_htons(12), + IB_CM_REJ_INVALID_LID = __constant_htons(13), + IB_CM_REJ_INVALID_SL = __constant_htons(14), + IB_CM_REJ_INVALID_TRAFFIC_CLASS = __constant_htons(15), + IB_CM_REJ_INVALID_HOP_LIMIT = __constant_htons(16), + IB_CM_REJ_INVALID_PACKET_RATE = __constant_htons(17), + IB_CM_REJ_INVALID_ALT_GID = __constant_htons(18), + IB_CM_REJ_INVALID_ALT_LID = __constant_htons(19), + IB_CM_REJ_INVALID_ALT_SL = __constant_htons(20), + IB_CM_REJ_INVALID_ALT_TRAFFIC_CLASS = __constant_htons(21), + IB_CM_REJ_INVALID_ALT_HOP_LIMIT = __constant_htons(22), + IB_CM_REJ_INVALID_ALT_PACKET_RATE = __constant_htons(23), + IB_CM_REJ_PORT_REDIRECT = __constant_htons(24), + IB_CM_REJ_INVALID_MTU = __constant_htons(26), + IB_CM_REJ_INSUFFICIENT_RESP_RESOURCES = __constant_htons(27), + IB_CM_REJ_CONSUMER_DEFINED = __constant_htons(28), + IB_CM_REJ_INVALID_RNR_RETRY = __constant_htons(29), + IB_CM_REJ_DUPLICATE_LOCAL_COMM_ID = __constant_htons(30), + IB_CM_REJ_INVALID_CLASS_VERSION = __constant_htons(31), + IB_CM_REJ_INVALID_FLOW_LABEL = __constant_htons(32), + IB_CM_REJ_INVALID_ALT_FLOW_LABEL = __constant_htons(33) +}; + +struct ib_cm_rej_event_param { + enum ib_cm_rej_reason reason; + void *ari; + u8 ari_length; +}; + +struct ib_cm_mra_event_param { + u8 service_timeout; +}; + +struct ib_cm_lap_event_param { + struct ib_sa_path_rec *alternate_path; +}; + +enum ib_cm_apr_status { + IB_CM_APR_SUCCESS, + IB_CM_APR_INVALID_COMM_ID, + IB_CM_APR_UNSUPPORTED, + IB_CM_APR_REJECT, + IB_CM_APR_REDIRECT, + IB_CM_APR_IS_CURRENT, + IB_CM_APR_INVALID_QPN_EECN, + IB_CM_APR_INVALID_LID, + IB_CM_APR_INVALID_GID, + IB_CM_APR_INVALID_FLOW_LABEL, + IB_CM_APR_INVALID_TCLASS, + IB_CM_APR_INVALID_HOP_LIMIT, + IB_CM_APR_INVALID_PACKET_RATE, + IB_CM_APR_INVALID_SL +}; + +struct ib_cm_apr_event_param { + enum ib_cm_apr_status ap_status; + void *apr_info; + u8 info_len; +}; + +struct ib_cm_sidr_req_event_param { + struct ib_cm_id *listen_id; + struct ib_device *device; + u8 port; + + u16 pkey; +}; + +enum ib_cm_sidr_status { + IB_SIDR_SUCCESS, + IB_SIDR_UNSUPPORTED, + IB_SIDR_REJECT, + IB_SIDR_NO_QP, + IB_SIDR_REDIRECT, + IB_SIDR_UNSUPPORTED_VERSION +}; + +struct ib_cm_sidr_rep_event_param { + enum ib_cm_sidr_status status; + u32 qkey; + u32 qpn; + void *info; + u8 info_len; + }; struct ib_cm_event { - /* a whole lot more stuff goes here */ - void *private_data; - u8 private_data_len; enum ib_cm_event_type event; -}; + union { + struct ib_cm_req_event_param req_rcvd; + struct ib_cm_rep_event_param rep_rcvd; + /* No data for RTU received events. */ + struct ib_cm_rej_event_param rej_rcvd; + struct ib_cm_mra_event_param mra_rcvd; + struct ib_cm_lap_event_param lap_rcvd; + struct ib_cm_apr_event_param apr_rcvd; + /* No data for DREQ/DREP received events. */ + struct ib_cm_sidr_req_event_param sidr_req_rcvd; + struct ib_cm_sidr_rep_event_param sidr_rep_rcvd; + enum ib_wc_status send_status; + } param; -struct ib_cm_id; + void *private_data; +}; -typedef void (*ib_cm_handler)(struct ib_cm_id *cm_id, - struct ib_cm_event *event); +/** + * ib_cm_handler - User-defined callback to process communication events. + * @cm_id: Communication identifier associated with the reported event. + * @event: Information about the communication event. + * + * IB_CM_REQ_RECEIVED and IB_CM_SIDR_REQ_RECEIVED communication events + * generated as a result of listen requests result in the allocation of a + * new @cm_id. The new @cm_id is returned to the user through this callback. + * Clients are responsible for destroying the new @cm_id. For peer-to-peer + * IB_CM_REQ_RECEIVED and all other events, the returned @cm_id corresponds + * to a user's existing communication identifier. + * + * Users may not call ib_destroy_cm_id while in the context of this callback; + * however, returning a non-zero value instructs the communication manager to + * destroy the @cm_id after the callback completes. + */ +typedef int (*ib_cm_handler)(struct ib_cm_id *cm_id, + struct ib_cm_event *event); struct ib_cm_id { ib_cm_handler cm_handler; @@ -95,16 +284,19 @@ u64 service_id; u64 service_mask; enum ib_cm_state state; + enum ib_cm_lap_state lap_state; + u32 local_id; + u32 remote_id; }; /** - * ib_create_cm_id - Allocate a connection identifier. + * ib_create_cm_id - Allocate a communication identifier. * @cm_handler: Callback invoked to notify the user of CM events. - * @context: User specified context associated with the connection + * @context: User specified context associated with the communication * identifier. * - * Connection identifiers are used to track connection states and - * listen requests. + * Communication identifiers are used to track connection states, service + * ID resolution requests, and listen requests. */ struct ib_cm_id *ib_create_cm_id(ib_cm_handler cm_handler, void *context); @@ -116,15 +308,14 @@ * This call blocks until the connection identifier is destroyed. */ int ib_destroy_cm_id(struct ib_cm_id *cm_id); -//*** TBD : add flags to allow calling routine from CM callback... -//*** or return value from callback to destroy cm_id... /** * ib_cm_listen - Initiates listening on the specified service ID for * connection and service ID resolution requests. * @cm_id: Connection identifier associated with the listen request. * @service_id: Service identifier matched against incoming connection - * and service ID resolution requests. + * and service ID resolution requests. The service ID should be specified + * network-byte order. * @service_mask: Mask applied to service ID used to listen across a * range of service IDs. If set to 0, the service ID is matched * exactly. @@ -135,9 +326,10 @@ struct ib_cm_req_param { struct ib_qp *qp; - struct ib_path_record *primary_path; - struct ib_path_record *alternate_path; + struct ib_sa_path_rec *primary_path; + struct ib_sa_path_rec *alternate_path; u64 service_id; + u32 starting_send_psn; void *private_data; u8 private_data_len; u8 peer_to_peer; @@ -163,8 +355,9 @@ struct ib_cm_rep_param { struct ib_qp *qp; + u32 starting_send_psn; void *private_data; - u8 reply_private_data_len; + u8 private_data_len; u8 responder_resources; u8 initiator_depth; u8 target_ack_delay; @@ -182,7 +375,7 @@ * connection. */ int ib_send_cm_rep(struct ib_cm_id *cm_id, - struct ib_cm_req_param *param); + struct ib_cm_rep_param *param); /** * ib_send_cm_rtu - Sends a connection ready to use message in response @@ -228,42 +421,7 @@ * This routine should be invoked by users who receive messages on a * connected QP before an RTU has been received. */ -int ib_cm_establish(struct ib_cm_id *id); - -enum ib_cm_rej_reason { - IB_CM_REJ_NO_QP = __constant_htons(1), - IB_CM_REJ_NO_EEC = __constant_htons(2), - IB_CM_REJ_NO_RESOURCES = __constant_htons(3), - IB_CM_REJ_TIMEOUT = __constant_htons(4), - IB_CM_REJ_UNSUPPORTED = __constant_htons(5), - IB_CM_REJ_INVALID_COMM_ID = __constant_htons(6), - IB_CM_REJ_INVALID_COMM_INSTANCE = __constant_htons(7), - IB_CM_REJ_INVALID_SERVICE_ID = __constant_htons(8), - IB_CM_REJ_INVALID_TRANSPORT_TYPE = __constant_htons(9), - IB_CM_REJ_STALE_CONN = __constant_htons(10), - IB_CM_REJ_RDC_NOT_EXIST = __constant_htons(11), - IB_CM_REJ_INVALID_GID = __constant_htons(12), - IB_CM_REJ_INVALID_LID = __constant_htons(13), - IB_CM_REJ_INVALID_SL = __constant_htons(14), - IB_CM_REJ_INVALID_TRAFFIC_CLASS = __constant_htons(15), - IB_CM_REJ_INVALID_HOP_LIMIT = __constant_htons(16), - IB_CM_REJ_INVALID_PACKET_RATE = __constant_htons(17), - IB_CM_REJ_INVALID_ALT_GID = __constant_htons(18), - IB_CM_REJ_INVALID_ALT_LID = __constant_htons(19), - IB_CM_REJ_INVALID_ALT_SL = __constant_htons(20), - IB_CM_REJ_INVALID_ALT_TRAFFIC_CLASS = __constant_htons(21), - IB_CM_REJ_INVALID_ALT_HOP_LIMIT = __constant_htons(22), - IB_CM_REJ_INVALID_ALT_PACKET_RATE = __constant_htons(23), - IB_CM_REJ_PORT_REDIRECT = __constant_htons(24), - IB_CM_REJ_INVALID_MTU = __constant_htons(26), - IB_CM_REJ_INSUFFICIENT_RESP_RESOURCES = __constant_htons(27), - IB_CM_REJ_CONSUMER_DEFINED = __constant_htons(28), - IB_CM_REJ_INVALID_RNR_RETRY = __constant_htons(29), - IB_CM_REJ_DUPLICATE_LOCAL_COMM_ID = __constant_htons(30), - IB_CM_REJ_INVALID_CLASS_VERSION = __constant_htons(31), - IB_CM_REJ_INVALID_FLOW_LABEL = __constant_htons(32), - IB_CM_REJ_INVALID_ALT_FLOW_LABEL = __constant_htons(33) -}; +int ib_cm_establish(struct ib_cm_id *cm_id); /** * ib_send_cm_rej - Sends a connection rejection message to the @@ -310,27 +468,10 @@ * @private_data_len: Size of the private data buffer, in bytes. */ int ib_send_cm_lap(struct ib_cm_id *cm_id, - struct ib_path_record *alternate_path, + struct ib_sa_path_rec *alternate_path, void *private_data, u8 private_data_len); -enum ib_cm_apr_status { - IB_CM_APR_SUCCESS, - IB_CM_APR_INVALID_COMM_ID, - IB_CM_APR_UNSUPPORTED, - IB_CM_APR_REJECT, - IB_CM_APR_REDIRECT, - IB_CM_APR_IS_CURRENT, - IB_CM_APR_INVALID_QPN_EECN, - IB_CM_APR_INVALID_LID, - IB_CM_APR_INVALID_GID, - IB_CM_APR_INVALID_FLOW_LABEL, - IB_CM_APR_INVALID_TCLASS, - IB_CM_APR_INVALID_HOP_LIMIT, - IB_CM_APR_INVALID_PACKET_RATE, - IB_CM_APR_INVALID_SL -}; - /** * ib_send_cm_apr - Sends an alternate path response message in response to * a load alternate path request. @@ -351,11 +492,12 @@ u8 private_data_len); struct ib_cm_sidr_req_param { - struct ib_path_record *path; + struct ib_sa_path_rec *path; u64 service_id; int timeout_ms; void *private_data; u8 private_data_len; + u8 max_cm_retries; u16 pkey; }; @@ -369,15 +511,6 @@ int ib_send_cm_sidr_req(struct ib_cm_id *cm_id, struct ib_cm_sidr_req_param *param); -enum ib_cm_sidr_status { - IB_SIDR_SUCCESS, - IB_SIDR_UNSUPPORTED, - IB_SIDR_REJECT, - IB_SIDR_NO_QP, - IB_SIDR_REDIRECT, - IB_SIDR_UNSUPPORTED_VERSION -}; - struct ib_cm_sidr_rep_param { u32 qp_num; u32 qkey; Index: core/cm.c =================================================================== --- core/cm.c (revision 1548) +++ core/cm.c (working copy) @@ -33,11 +33,17 @@ * * $Id$ */ +#include #include +#include +#include #include #include +#include +#include #include +#include "cm_msgs.h" MODULE_AUTHOR("Sean Hefty"); MODULE_DESCRIPTION("InfiniBand CM"); @@ -54,32 +60,245 @@ static struct ib_cm { spinlock_t lock; + /* todo: (high priority) walk through table insertion/removal paths */ struct rb_root service_table; + struct rb_root remote_qp_table; + struct rb_root remote_id_table; + struct rb_root remote_sidr_table; + struct idr local_id_table; + struct workqueue_struct *wq; } cm; struct cm_port { struct ib_mad_agent *mad_agent; + u64 ca_guid; + spinlock_t lock; + struct ib_mr *mr; + u8 port_num; +}; + +struct cm_msg { + struct cm_id_private *cm_id_priv; + struct ib_send_wr send_wr; + struct ib_sge sge; + u8 retry; + DECLARE_PCI_UNMAP_ADDR(mapping) + struct ib_mad mad; }; -struct ib_cm_id_private { +struct cm_id_private { struct ib_cm_id id; - struct rb_node node; + struct rb_node service_node; + struct rb_node remote_qp_node; + struct rb_node remote_id_node; spinlock_t lock; wait_queue_head_t wait; atomic_t refcount; + + /* todo: use alternate port on send failure */ + struct cm_port *port; + struct cm_msg *msg; + + struct ib_ah_attr ah_attr; + u16 pkey_index; + u32 local_qpn; + u32 remote_qpn; + u64 remote_ca_guid; + union ib_gid remote_port_gid; + int timeout_ms; + u8 max_cm_retries; +}; + +struct cm_recv_work { + struct work_struct work; + struct cm_port *port; + struct ib_mad_recv_wc *mad_recv_wc; + /* todo: allocate event when allocating work structure */ + /* struct ib_cm_event cm_event; */ }; -static struct ib_cm_id_private *find_cm_service(u64 service_id) +static inline void cm_deref_id(struct cm_id_private *cm_id_priv) +{ + if (atomic_dec_and_test(&cm_id_priv->refcount)) + wake_up(&cm_id_priv->wait); +} + +static int cm_alloc_msg(struct cm_id_private *cm_id_priv, + struct cm_msg **msg) +{ + struct ib_mad_agent *mad_agent; + struct cm_msg *m; + int ret; + + m = kmalloc(sizeof **msg, GFP_KERNEL); + if (!m) + return -ENOMEM; + memset(m, 0, sizeof *m); + + mad_agent = cm_id_priv->port->mad_agent; + m->send_wr.wr.ud.ah = ib_create_ah(mad_agent->qp->pd, + &cm_id_priv->ah_attr); + if (IS_ERR(m->send_wr.wr.ud.ah)) { + ret = PTR_ERR(m->send_wr.wr.ud.ah); + kfree(m); + return ret; + } + + m->sge.addr = dma_map_single(mad_agent->device->dma_device, + &m->mad, sizeof m->mad, + DMA_TO_DEVICE); + pci_unmap_addr_set(msg, mapping, m->sge.addr); + m->sge.length = sizeof m->mad; + m->sge.lkey = cm_id_priv->port->mr->lkey; + + m->send_wr.wr_id = (unsigned long) msg; + m->send_wr.sg_list = &m->sge; + m->send_wr.num_sge = 1; + m->send_wr.opcode = IB_WR_SEND; + m->send_wr.send_flags = IB_SEND_SIGNALED; + m->send_wr.wr.ud.mad_hdr = &m->mad.mad_hdr; + m->send_wr.wr.ud.remote_qpn = 1; + m->send_wr.wr.ud.remote_qkey = IB_QP1_QKEY; + m->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; + m->send_wr.wr.ud.pkey_index = cm_id_priv->pkey_index; + + atomic_inc(&cm_id_priv->refcount); + m->cm_id_priv = cm_id_priv; + *msg = m; + return 0; +} + +static void cm_free_msg(struct cm_msg *msg) +{ + ib_destroy_ah(msg->send_wr.wr.ud.ah); + dma_unmap_single(msg->cm_id_priv->port->mad_agent->device->dma_device, + pci_unmap_addr(msg, mapping), sizeof msg->mad, + DMA_TO_DEVICE); + + cm_deref_id(msg->cm_id_priv); + kfree(msg); +} + +static void cm_set_ah_attr(struct ib_ah_attr *ah_attr, u8 port_num, + u16 dlid, u8 sl, u16 src_path_bits) +{ + memset(ah_attr, 0, sizeof ah_attr); + ah_attr->dlid = be16_to_cpu(dlid); + ah_attr->sl = sl; + ah_attr->src_path_bits = src_path_bits; + ah_attr->port_num = port_num; +} + +static struct cm_port * cm_find_port(struct ib_device *device, + union ib_gid *gid) +{ + struct cm_port *port; + int ret; + u8 p; + + port = (struct cm_port *)ib_get_client_data(device, &cm_client); + if (!port) + return NULL; + + ret = ib_find_cached_gid(device, gid, &p, NULL); + if (ret) + port = NULL; + else + port = &port[p-1]; + + return port; +} + +static int cm_find_device(union ib_gid *gid, struct ib_device **device, + struct cm_port **port) +{ + int ret; + u8 p; + + /* todo: (high priority if SIDR is needed, low otherwise) + write me - need call in ib_cache_* stuff? */ + /* see static device_list in device.c */ + /* ret = ib_find_cached_device_gid(gid, device, &p, NULL); */ + ret = -EINVAL; + if (ret) + return ret; + + *port = (struct cm_port *)ib_get_client_data(*device, &cm_client); + if (!*port) + return -EINVAL; + + *port = &(*port[p-1]); + return 0; +} + +static int cm_alloc_id(struct cm_id_private *cm_id_priv) +{ + unsigned long flags; + int ret; + + do { + spin_lock_irqsave(&cm.lock, flags); + ret = idr_get_new_above(&cm.local_id_table, cm_id_priv, 1, + (int *) &cm_id_priv->id); + spin_unlock_irqrestore(&cm.lock, flags); + } while( (ret == -EAGAIN) && idr_pre_get(&cm.local_id_table, GFP_KERNEL) ); + return ret; +} + +static void cm_free_id(u32 local_id) +{ + unsigned long flags; + + spin_lock_irqsave(&cm.lock, flags); + idr_remove(&cm.local_id_table, (int) local_id); + spin_unlock_irqrestore(&cm.lock, flags); +} + +static struct cm_id_private * cm_acquire_id_by_local_id(u32 local_id) +{ + struct cm_id_private *cm_id_priv; + unsigned long flags; + + spin_lock_irqsave(&cm.lock, flags); + cm_id_priv = idr_find(&cm.local_id_table, (int) local_id); + if (cm_id_priv) + atomic_inc(&cm_id_priv->refcount); + spin_unlock_irqrestore(&cm.lock, flags); + + return cm_id_priv; +} + +static void cm_insert_service(struct cm_id_private *cm_id_priv) +{ + struct rb_node **link = &cm.service_table.rb_node; + struct rb_node *parent = NULL; + struct cm_id_private *cur_cm_id_priv; + u64 service_id = cm_id_priv->id.service_id; + + while (*link) { + parent = *link; + cur_cm_id_priv = rb_entry(parent, struct cm_id_private, + service_node); + if (service_id < cur_cm_id_priv->id.service_id) + link = &(*link)->rb_left; + else + link = &(*link)->rb_right; + } + rb_link_node(&cm_id_priv->service_node, parent, link); + rb_insert_color(&cm_id_priv->service_node, &cm.service_table); +} + +static struct cm_id_private * cm_find_service(u64 service_id) { struct rb_node *node = cm.service_table.rb_node; - struct ib_cm_id_private *cm_id_priv; + struct cm_id_private *cm_id_priv; while (node) { - cm_id_priv = rb_entry(node, struct ib_cm_id_private, node); + cm_id_priv = rb_entry(node, struct cm_id_private, service_node); if ((cm_id_priv->id.service_mask & service_id) == (cm_id_priv->id.service_mask & cm_id_priv->id.service_id)) - return cm_id_priv; + return cm_id_priv; if (service_id < cm_id_priv->id.service_id) node = node->rb_left; @@ -89,30 +308,229 @@ return NULL; } -static void insert_cm_service(struct ib_cm_id_private *cm_id_priv) +static struct cm_id_private * cm_acquire_id_by_service(u64 service_id) { - struct rb_node **link = &cm.service_table.rb_node; + struct cm_id_private *cm_id_priv; + unsigned long flags; + + spin_lock_irqsave(&cm.lock, flags); + cm_id_priv = cm_find_service(service_id); + if (cm_id_priv) + atomic_inc(&cm_id_priv->refcount); + spin_unlock_irqrestore(&cm.lock, flags); + + return cm_id_priv; +} + +static struct cm_id_private * cm_insert_remote_id(struct cm_id_private + *cm_id_priv) +{ + struct rb_node **link = &cm.remote_id_table.rb_node; struct rb_node *parent = NULL; - struct ib_cm_id_private *cur_cm_id_priv; - u64 service_id = cm_id_priv->id.service_id; + struct cm_id_private *cur_cm_id_priv; + u64 remote_ca_guid = cm_id_priv->remote_ca_guid; + u32 remote_id = cm_id_priv->id.remote_id; while (*link) { parent = *link; - cur_cm_id_priv = rb_entry(parent, struct ib_cm_id_private, - node); - if (service_id < cur_cm_id_priv->id.service_id) + cur_cm_id_priv = rb_entry(parent, struct cm_id_private, + remote_id_node); + if (remote_id < cur_cm_id_priv->id.remote_id) + link = &(*link)->rb_left; + else if (remote_id > cur_cm_id_priv->id.remote_id) + link = &(*link)->rb_right; + else if (remote_ca_guid < cur_cm_id_priv->remote_ca_guid) link = &(*link)->rb_left; + else if (remote_ca_guid > cur_cm_id_priv->remote_ca_guid) + link = &(*link)->rb_right; + else + return cur_cm_id_priv; + } + rb_link_node(&cm_id_priv->remote_id_node, parent, link); + rb_insert_color(&cm_id_priv->remote_id_node, &cm.remote_id_table); + return NULL; +} + +static struct cm_id_private * cm_find_id_by_remote_id(u64 remote_ca_guid, + u32 remote_id) +{ + struct rb_node *node = cm.remote_id_table.rb_node; + struct cm_id_private *cm_id_priv; + + while (node) { + cm_id_priv = rb_entry(node, struct cm_id_private, remote_id_node); + if (remote_id < cm_id_priv->id.remote_id) + node = node->rb_left; + else if (remote_id > cm_id_priv->id.remote_id) + node = node->rb_right; + else if (remote_ca_guid < cm_id_priv->remote_ca_guid) + node = node->rb_left; + else if (remote_ca_guid > cm_id_priv->remote_ca_guid) + node = node->rb_right; else + return cm_id_priv; + } + return NULL; +} + +static struct cm_id_private * cm_acquire_id_by_remote_id(u64 remote_ca_guid, + u32 remote_id) +{ + struct cm_id_private *cm_id_priv; + unsigned long flags; + + spin_lock_irqsave(&cm.lock, flags); + cm_id_priv = cm_find_id_by_remote_id(remote_ca_guid, remote_id); + if (cm_id_priv) + atomic_inc(&cm_id_priv->refcount); + spin_unlock_irqrestore(&cm.lock, flags); + + return cm_id_priv; +} + +static struct cm_id_private * cm_insert_remote_qpn(struct cm_id_private + *cm_id_priv) +{ + struct rb_node **link = &cm.remote_qp_table.rb_node; + struct rb_node *parent = NULL; + struct cm_id_private *cur_cm_id_priv; + union ib_gid *port_gid = &cm_id_priv->remote_port_gid; + u32 remote_qpn = cm_id_priv->remote_qpn; + + while (*link) { + parent = *link; + cur_cm_id_priv = rb_entry(parent, struct cm_id_private, + remote_qp_node); + if (remote_qpn < cur_cm_id_priv->remote_qpn) + link = &(*link)->rb_left; + else if (remote_qpn > cur_cm_id_priv->remote_qpn) + link = &(*link)->rb_right; + else { + int cmp; + cmp = memcmp(port_gid, &cur_cm_id_priv->remote_port_gid, + sizeof *port_gid); + if (cmp < 0) + link = &(*link)->rb_left; + else if (cmp > 0) + link = &(*link)->rb_right; + else + return cur_cm_id_priv; + } + } + rb_link_node(&cm_id_priv->remote_qp_node, parent, link); + rb_insert_color(&cm_id_priv->remote_qp_node, &cm.remote_qp_table); + return NULL; +} + +static struct cm_id_private * cm_find_id_by_remote_qpn(union ib_gid *port_gid, + u32 remote_qpn) +{ + struct rb_node *node = cm.remote_qp_table.rb_node; + struct cm_id_private *cm_id_priv; + + while (node) { + cm_id_priv = rb_entry(node, struct cm_id_private, remote_qp_node); + + if (remote_qpn < cm_id_priv->remote_qpn) + node = node->rb_left; + else if (remote_qpn > cm_id_priv->remote_qpn) + node = node->rb_right; + else { + int cmp; + cmp = memcmp(port_gid, &cm_id_priv->remote_port_gid, + sizeof *port_gid); + if (cmp < 0) + node = node->rb_left; + else if (cmp > 0) + node = node->rb_right; + else + return cm_id_priv; + } + } + return NULL; +} + +static struct cm_id_private * cm_acquire_id_by_remote_qpn(union ib_gid *port_gid, + u32 remote_qpn) +{ + struct cm_id_private *cm_id_priv; + unsigned long flags; + + spin_lock_irqsave(&cm.lock, flags); + cm_id_priv = cm_find_id_by_remote_qpn(port_gid, remote_qpn); + if (cm_id_priv) + atomic_inc(&cm_id_priv->refcount); + spin_unlock_irqrestore(&cm.lock, flags); + + return cm_id_priv; +} + +static struct cm_id_private * cm_insert_remote_sidr(struct cm_id_private + *cm_id_priv) +{ + struct rb_node **link = &cm.remote_sidr_table.rb_node; + struct rb_node *parent = NULL; + struct cm_id_private *cur_cm_id_priv; + union ib_gid *port_gid = &cm_id_priv->remote_port_gid; + u32 remote_id = cm_id_priv->id.remote_id; + + while (*link) { + parent = *link; + cur_cm_id_priv = rb_entry(parent, struct cm_id_private, + remote_id_node); + if (remote_id < cur_cm_id_priv->id.remote_id) + link = &(*link)->rb_left; + else if (remote_id > cur_cm_id_priv->id.remote_id) link = &(*link)->rb_right; + else { + int cmp; + cmp = memcmp(port_gid, &cur_cm_id_priv->remote_port_gid, + sizeof *port_gid); + if (cmp < 0) + link = &(*link)->rb_left; + else if (cmp > 0) + link = &(*link)->rb_right; + else + return cur_cm_id_priv; + } } - rb_link_node(&cm_id_priv->node, parent, link); - rb_insert_color(&cm_id_priv->node, &cm.service_table); + rb_link_node(&cm_id_priv->remote_id_node, parent, link); + rb_insert_color(&cm_id_priv->remote_id_node, &cm.remote_sidr_table); + return NULL; +} + +static struct cm_id_private * cm_find_id_by_remote_sidr(union ib_gid *port_gid, + u32 remote_id) +{ + struct rb_node *node = cm.remote_sidr_table.rb_node; + struct cm_id_private *cm_id_priv; + + while (node) { + cm_id_priv = rb_entry(node, struct cm_id_private, remote_id_node); + if (remote_id < cm_id_priv->id.remote_id) + node = node->rb_left; + else if (remote_id > cm_id_priv->id.remote_id) + node = node->rb_right; + else { + int cmp; + cmp = memcmp(port_gid, &cm_id_priv->remote_port_gid, + sizeof *port_gid); + if (cmp < 0) + node = node->rb_left; + else if (cmp > 0) + node = node->rb_right; + else + return cm_id_priv; + } + } + return NULL; } struct ib_cm_id *ib_create_cm_id(ib_cm_handler cm_handler, void *context) { - struct ib_cm_id_private *cm_id_priv; + struct cm_id_private *cm_id_priv; + int ret; cm_id_priv = kmalloc(sizeof *cm_id_priv, GFP_KERNEL); if (!cm_id_priv) @@ -122,47 +540,42 @@ cm_id_priv->id.state = IB_CM_IDLE; cm_id_priv->id.cm_handler = cm_handler; cm_id_priv->id.context = context; + ret = cm_alloc_id(cm_id_priv); + if (ret) + goto error; spin_lock_init(&cm_id_priv->lock); init_waitqueue_head(&cm_id_priv->wait); atomic_set(&cm_id_priv->refcount, 1); - return &cm_id_priv->id; -} -EXPORT_SYMBOL(ib_create_cm_id); -static void reset_cm_state(struct ib_cm_id_private *cm_id_priv) -{ - /* reject connections if establishing */ - /* disconnect established connections */ - /* update timewait info */ +error: + kfree(cm_id_priv); + return ERR_PTR(-ENOMEM); } +EXPORT_SYMBOL(ib_create_cm_id); int ib_destroy_cm_id(struct ib_cm_id *cm_id) { - struct ib_cm_id_private *cm_id_priv; + struct cm_id_private *cm_id_priv; unsigned long flags, flags2; - cm_id_priv = container_of(cm_id, struct ib_cm_id_private, id); + cm_id_priv = container_of(cm_id, struct cm_id_private, id); spin_lock_irqsave(&cm_id_priv->lock, flags); - switch(cm_id->state) { + /* todo: enter timewait state */ + switch (cm_id->state) { case IB_CM_LISTEN: spin_lock_irqsave(&cm.lock, flags2); - rb_erase(&cm_id_priv->node, &cm.service_table); - spin_lock_irqrestore(&cm.lock, flags2); - break; - case IB_CM_IDLE: - break; - case IB_CM_TIMEWAIT: - break; + rb_erase(&cm_id_priv->service_node, &cm.service_table); + spin_unlock_irqrestore(&cm.lock, flags2); default: - reset_cm_state(cm_id_priv); break; } cm_id->state = IB_CM_IDLE; spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_id(cm_id->local_id); atomic_dec(&cm_id_priv->refcount); wait_event(cm_id_priv->wait, !atomic_read(&cm_id_priv->refcount)); kfree(cm_id_priv); @@ -174,11 +587,11 @@ u64 service_id, u64 service_mask) { - struct ib_cm_id_private *cm_id_priv; + struct cm_id_private *cm_id_priv; unsigned long flags; int ret = 0; - cm_id_priv = container_of(cm_id, struct ib_cm_id_private, id); + cm_id_priv = container_of(cm_id, struct cm_id_private, id); spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state != IB_CM_IDLE) { spin_unlock_irqrestore(&cm_id_priv->lock, flags); @@ -192,185 +605,1824 @@ cm_id->service_mask = service_mask ? service_mask : ~0ULL; spin_lock_irqsave(&cm.lock, flags); - if (find_cm_service(service_id)) { - /* No one else is able to change the cm_id state. */ - cm_id->state = IB_CM_IDLE; + if (cm_find_service(service_id)) { + /* No one else is able to change the cm_id_priv state. */ + cm_id_priv->id.state = IB_CM_IDLE; ret = -EBUSY; } else - insert_cm_service(cm_id_priv); + cm_insert_service(cm_id_priv); spin_unlock_irqrestore(&cm.lock, flags); out: return ret; } EXPORT_SYMBOL(ib_cm_listen); -int ib_send_cm_req(struct ib_cm_id *cm_id, - struct ib_cm_req_param *param) +static inline int cm_convert_to_ms(u8 iba_time) { - return -EINVAL; + /* approximate conversion to ms from 4.096us x 2^iba_time */ + return (1 << ((uint)min(iba_time, (u8) 8) - (uint)8)); } -EXPORT_SYMBOL(ib_send_cm_req); -int ib_send_cm_rep(struct ib_cm_id *cm_id, - struct ib_cm_req_param *param) -{ - return -EINVAL; -} -EXPORT_SYMBOL(ib_send_cm_rep); +static void cm_format_mad_hdr(struct ib_mad_hdr *hdr, + struct cm_id_private *cm_id_priv, + enum cm_msg_attr_id attr_id, + enum cm_msg_sequence msg_seq) +{ + u64 hi_tid, low_tid; + + hdr->base_version = IB_MGMT_BASE_VERSION; + hdr->mgmt_class = IB_MGMT_CLASS_CM; + hdr->class_version = IB_CM_CLASS_VERSION; + hdr->method = IB_MGMT_METHOD_SEND; + hdr->attr_id = attr_id; + + hi_tid = ((u64) cm_id_priv->port->mad_agent->hi_tid) << 32; + low_tid = (u64) (cm_id_priv->id.local_id | (msg_seq << 30)); + hdr->tid = cpu_to_be64(hi_tid | low_tid); +} + +static void cm_format_req(struct cm_req_msg *req_msg, + struct cm_id_private *cm_id_priv, + struct ib_cm_req_param *param) +{ + cm_format_mad_hdr(&req_msg->hdr, cm_id_priv, + CM_REQ_ATTR_ID, CM_MSG_SEQUENCE_REQ); + + req_msg->local_comm_id = cm_id_priv->id.local_id; + req_msg->service_id = param->service_id; + req_msg->local_ca_guid = cm_id_priv->port->ca_guid; + cm_req_set_local_qpn(req_msg, cpu_to_be32(param->qp->qp_num)); + cm_req_set_resp_res(req_msg, param->responder_resources); + cm_req_set_init_depth(req_msg, param->initiator_depth); + cm_req_set_remote_resp_timeout(req_msg, + param->remote_cm_response_timeout); + cm_req_set_qp_type(req_msg, param->qp->qp_type); + cm_req_set_flow_ctrl(req_msg, param->flow_control); + cm_req_set_starting_psn(req_msg, param->starting_send_psn); + cm_req_set_local_resp_timeout(req_msg, + param->local_cm_response_timeout); + cm_req_set_retry_count(req_msg, param->retry_count); + req_msg->pkey = param->primary_path->pkey; + cm_req_set_path_mtu(req_msg, param->primary_path->mtu); + cm_req_set_rnr_retry_count(req_msg, param->rnr_retry_count); + cm_req_set_max_cm_retries(req_msg, param->max_cm_retries); + cm_req_set_srq(req_msg, (param->qp->srq != NULL)); + + req_msg->primary_local_lid = param->primary_path->slid; + req_msg->primary_remote_lid = param->primary_path->dlid; + req_msg->primary_local_gid = param->primary_path->sgid; + req_msg->primary_remote_gid = param->primary_path->dgid; + cm_req_set_primary_flow_label(req_msg, param->primary_path->flow_label); + cm_req_set_primary_packet_rate(req_msg, param->primary_path->rate); + req_msg->primary_traffic_class = param->primary_path->traffic_class; + req_msg->primary_hop_limit = param->primary_path->hop_limit; + cm_req_set_primary_sl(req_msg, param->primary_path->sl); + cm_req_set_primary_subnet_local(req_msg, 1); /* local only... */ + cm_req_set_primary_local_ack_timeout(req_msg, + min(31, param->primary_path->packet_life_time + 1)); + + if (param->alternate_path) { + req_msg->alt_local_lid = param->alternate_path->slid; + req_msg->alt_remote_lid = param->alternate_path->dlid; + req_msg->alt_local_gid = param->alternate_path->sgid; + req_msg->alt_remote_gid = param->alternate_path->dgid; + cm_req_set_alt_flow_label(req_msg, + param->alternate_path->flow_label); + cm_req_set_alt_packet_rate(req_msg, param->alternate_path->rate); + req_msg->alt_traffic_class = param->alternate_path->traffic_class; + req_msg->alt_hop_limit = param->alternate_path->hop_limit; + cm_req_set_alt_sl(req_msg, param->alternate_path->sl); + cm_req_set_alt_subnet_local(req_msg, 1); /* local only... */ + cm_req_set_alt_local_ack_timeout(req_msg, + min(31, param->alternate_path->packet_life_time + 1)); + } -int ib_send_cm_rtu(struct ib_cm_id *cm_id, - void *private_data, - u8 private_data_len) -{ - return -EINVAL; + if (param->private_data && param->private_data_len) + memcpy(req_msg->private_data, param->private_data, + param->private_data_len); } -EXPORT_SYMBOL(ib_send_cm_rtu); -int ib_send_cm_dreq(struct ib_cm_id *cm_id, - void *private_data, - u8 private_data_len) +static inline int cm_validate_req_param(struct ib_cm_req_param *param) { - return -EINVAL; + if (!param->qp || !param->primary_path) + return -EINVAL; + + if (param->qp->qp_type != IB_QPT_RC && param->qp->qp_type != IB_QPT_UC) + return -EINVAL; + + if (param->private_data && + param->private_data_len > IB_CM_REQ_PRIVATE_DATA_SIZE) + return -EINVAL; + + return 0; } -EXPORT_SYMBOL(ib_send_cm_dreq); -int ib_send_cm_drep(struct ib_cm_id *cm_id, - void *private_data, - u8 private_data_len) +int ib_send_cm_req(struct ib_cm_id *cm_id, + struct ib_cm_req_param *param) { - return -EINVAL; + struct cm_id_private *cm_id_priv; + struct cm_msg *msg; + struct ib_send_wr *bad_send_wr; + struct ib_sa_path_rec *path; + unsigned long flags, flags2; + int ret; + + ret = cm_validate_req_param(param); + if (ret) + goto out; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + cm_id_priv->port = cm_find_port(param->qp->device, + ¶m->primary_path->sgid); + if (!cm_id_priv->port) { + ret = -EINVAL; + goto out; + } + + ret = ib_find_cached_pkey(param->qp->device, + cm_id_priv->port->port_num, + param->primary_path->pkey, + &cm_id_priv->pkey_index); + if (ret) + goto out; + + cm_id_priv->timeout_ms = cm_convert_to_ms( + param->primary_path->packet_life_time) * 2 + + cm_convert_to_ms( + param->remote_cm_response_timeout); + cm_id_priv->max_cm_retries = param->max_cm_retries; + cm_id_priv->local_qpn = cpu_to_be32(param->qp->qp_num); + path = param->primary_path; + cm_set_ah_attr(&cm_id_priv->ah_attr, cm_id_priv->port->port_num, + path->dlid, path->sl, path->slid & 0x7F); + ret = cm_alloc_msg(cm_id_priv, &msg); + if (ret) + goto out; + + cm_format_req((struct cm_req_msg *)&msg->mad, cm_id_priv, param); + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id->state == IB_CM_IDLE) + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + else + ret = -EINVAL; + + if (ret) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(cm_id_priv->msg); + goto out; + } + cm_id->state = IB_CM_REQ_SENT; + cm_id_priv->msg = msg; + + if (param->peer_to_peer) { + spin_lock_irqsave(&cm.lock, flags2); + cm_insert_service(cm_id_priv); + spin_unlock_irqrestore(&cm.lock, flags2); + } + spin_unlock_irqrestore(&cm_id_priv->lock, flags); +out: + return ret; } -EXPORT_SYMBOL(ib_send_cm_drep); +EXPORT_SYMBOL(ib_send_cm_req); -int ib_cm_establish(struct ib_cm_id *id) +static inline int cm_is_active_peer(u64 local_ca_guid, u64 remote_ca_guid, + u32 local_qpn, u32 remote_qpn) { - return -EINVAL; + return (be64_to_cpu(local_ca_guid) > be64_to_cpu(remote_ca_guid) || + ((local_ca_guid == remote_ca_guid) && + (be32_to_cpu(local_qpn) > be32_to_cpu(remote_qpn)))); +} + +static inline void cm_format_paths_from_req(struct ib_sa_path_rec *primary_path, + struct ib_sa_path_rec *alt_path, + struct cm_req_msg *req_msg) +{ + memset(primary_path, 0, sizeof *primary_path); + primary_path->dgid = req_msg->primary_local_gid; + primary_path->sgid = req_msg->primary_remote_gid; + primary_path->dlid = req_msg->primary_local_lid; + primary_path->slid = req_msg->primary_remote_lid; + primary_path->flow_label = cm_req_get_primary_flow_label(req_msg); + primary_path->hop_limit = req_msg->primary_hop_limit; + primary_path->traffic_class = req_msg->primary_traffic_class; + primary_path->reversible = 1; + primary_path->pkey = req_msg->pkey; + primary_path->sl = cm_req_get_primary_sl(req_msg); + primary_path->mtu_selector = IB_SA_EQ; + primary_path->mtu = cm_req_get_mtu(req_msg); + primary_path->rate_selector = IB_SA_EQ; + primary_path->rate = cm_req_get_primary_packet_rate(req_msg); + primary_path->packet_life_time_selector = IB_SA_EQ; + primary_path->packet_life_time = + cm_req_get_primary_local_ack_timeout(req_msg); + + memset(alt_path, 0, sizeof *alt_path); + alt_path->dgid = req_msg->alt_local_gid; + alt_path->sgid = req_msg->alt_remote_gid; + alt_path->dlid = req_msg->alt_local_lid; + alt_path->slid = req_msg->alt_remote_lid; + alt_path->flow_label = cm_req_get_alt_flow_label(req_msg); + alt_path->hop_limit = req_msg->alt_hop_limit; + alt_path->traffic_class = req_msg->alt_traffic_class; + alt_path->reversible = 1; + alt_path->pkey = req_msg->pkey; + alt_path->sl = cm_req_get_alt_sl(req_msg); + alt_path->mtu_selector = IB_SA_EQ; + alt_path->mtu = cm_req_get_mtu(req_msg); + alt_path->rate_selector = IB_SA_EQ; + alt_path->rate = cm_req_get_alt_packet_rate(req_msg); + alt_path->packet_life_time_selector = IB_SA_EQ; + alt_path->packet_life_time = + cm_req_get_alt_local_ack_timeout(req_msg); +} + +static void cm_req_handler(struct cm_port *port, + struct ib_mad_recv_wc *mad_recv_wc) +{ + struct ib_cm_id *cm_id; + struct cm_id_private *cm_id_priv, *cur_cm_id_priv; + struct cm_req_msg *req_msg; + struct ib_cm_event *cm_event; + unsigned long flags, flags2; + struct ib_cm_req_event_param *param; + struct ib_wc *wc; + int ret; + + cm_event = kmalloc(sizeof *cm_event + + sizeof *cm_event->param.req_rcvd.primary_path + + sizeof *cm_event->param.req_rcvd.alternate_path, + GFP_KERNEL); + if (!cm_event) + return; + + cm_id = ib_create_cm_id(NULL, NULL); + if (IS_ERR(cm_id)) + goto out; + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + + req_msg = (struct cm_req_msg *)mad_recv_wc->recv_buf.mad; + cm_id_priv->remote_ca_guid = req_msg->local_ca_guid; + cm_id_priv->id.remote_id = req_msg->local_comm_id; + + spin_lock_irqsave(&cm.lock, flags); + /* Check for duplicate REQ. */ + cur_cm_id_priv = cm_find_id_by_remote_id(req_msg->local_ca_guid, + req_msg->local_comm_id); + if (cur_cm_id_priv) { + spin_unlock_irqrestore(&cm.lock, flags); + goto destroy_id; /* Duplicate message. */ + } + /* Find matching listen/peer request. */ + cur_cm_id_priv = cm_find_service(req_msg->service_id); + if (!cur_cm_id_priv) { + spin_unlock_irqrestore(&cm.lock, flags); + /* todo: reject with no match */ + goto destroy_id; /* No match. */ + } + spin_lock_irqsave(&cur_cm_id_priv->lock, flags2); + if (cur_cm_id_priv->id.state == IB_CM_LISTEN) { + atomic_inc(&cur_cm_id_priv->refcount); + spin_unlock_irqrestore(&cur_cm_id_priv->lock, flags2); + cm_insert_remote_id(cm_id_priv); + spin_unlock_irqrestore(&cm.lock, flags); + + cm_id_priv->id.cm_handler = cur_cm_id_priv->id.cm_handler; + cm_id_priv->id.context = cur_cm_id_priv->id.context; + cm_id_priv->id.service_id = req_msg->service_id; + cm_id_priv->id.service_mask = ~0ULL; + cm_id_priv->id.state = IB_CM_REQ_RCVD; + } else { + /* Process peer requests. */ + if (cm_is_active_peer(port->ca_guid, req_msg->local_ca_guid, + cur_cm_id_priv->local_qpn, + cm_req_get_local_qpn(req_msg))) { + spin_unlock_irqrestore(&cm.lock, flags); + goto destroy_id; /* Stay active. */ + } + atomic_inc(&cur_cm_id_priv->refcount); + cur_cm_id_priv->id.state = IB_CM_REQ_RCVD; + spin_unlock_irqrestore(&cur_cm_id_priv->lock, flags2); + rb_erase(&cur_cm_id_priv->service_node, &cm.service_table); + cur_cm_id_priv->remote_ca_guid = req_msg->local_ca_guid; + cur_cm_id_priv->id.remote_id = req_msg->local_comm_id; + cm_insert_remote_id(cur_cm_id_priv); + spin_unlock_irqrestore(&cm.lock, flags); + + ib_cancel_mad(cur_cm_id_priv->port->mad_agent, + (unsigned long)cur_cm_id_priv->msg); + ib_destroy_cm_id(&cm_id_priv->id); + cm_id_priv = cur_cm_id_priv; + } + cm_id_priv->port = port; + cm_id_priv->max_cm_retries = cm_req_get_max_cm_retries(req_msg); + cm_id_priv->remote_qpn = cm_req_get_local_qpn(req_msg); + cm_id_priv->remote_port_gid = req_msg->primary_local_gid; + wc = mad_recv_wc->wc; + cm_id_priv->pkey_index = wc->pkey_index; + cm_set_ah_attr(&cm_id_priv->ah_attr, port->port_num, + wc->slid, wc->sl, wc->dlid_path_bits); + + cm_event->event = IB_CM_REQ_RECEIVED; + param = &cm_event->param.req_rcvd; + param->listen_id = &cur_cm_id_priv->id; + param->device = port->mad_agent->device; + param->port = port->port_num; + param->primary_path = (struct ib_sa_path_rec *) + (u8*)cm_event + sizeof *cm_event; + param->alternate_path = (struct ib_sa_path_rec *) + (u8*)param->primary_path + + sizeof *param->primary_path; + cm_format_paths_from_req(param->primary_path, param->alternate_path, + req_msg); + param->remote_ca_guid = req_msg->local_ca_guid; + param->remote_qkey = be32_to_cpu(req_msg->local_qkey); + param->remote_qpn = be32_to_cpu(cm_id_priv->remote_qpn); + param->qp_type = cm_req_get_qp_type(req_msg); + param->starting_psn = be32_to_cpu(cm_req_get_starting_psn(req_msg)); + param->responder_resources = cm_req_get_resp_res(req_msg); + param->initiator_depth = cm_req_get_init_depth(req_msg); + param->local_cm_response_timeout = cm_req_get_remote_resp_timeout(req_msg); + param->flow_control = cm_req_get_flow_ctrl(req_msg); + param->remote_cm_response_timeout = cm_req_get_local_resp_timeout(req_msg); + param->retry_count = cm_req_get_retry_count(req_msg); + param->rnr_retry_count = cm_req_get_rnr_retry_count(req_msg); + param->srq = cm_req_get_srq(req_msg); + cm_event->private_data = &req_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + cm_deref_id(cur_cm_id_priv); + if (!ret) + goto out; +destroy_id: + ib_destroy_cm_id(&cm_id_priv->id); +out: + kfree(cm_event); } -EXPORT_SYMBOL(ib_cm_establish); -int ib_send_cm_rej(struct ib_cm_id *cm_id, - enum ib_cm_rej_reason reason, - void *ari, - u8 ari_length, - void *private_data, - u8 private_data_len) +static void cm_format_rep(struct cm_rep_msg *rep_msg, + struct cm_id_private *cm_id_priv, + struct ib_cm_rep_param *param) { - return -EINVAL; + cm_format_mad_hdr(&rep_msg->hdr, cm_id_priv, + CM_REP_ATTR_ID, CM_MSG_SEQUENCE_REQ); + + rep_msg->local_comm_id = cm_id_priv->id.local_id; + rep_msg->remote_comm_id = cm_id_priv->id.remote_id; + cm_rep_set_local_qpn(rep_msg, param->qp->qp_num); + cm_rep_set_starting_psn(rep_msg, param->starting_send_psn); + rep_msg->resp_resources = param->responder_resources; + rep_msg->initiator_depth = param->initiator_depth; + cm_rep_set_target_ack_delay(rep_msg, param->target_ack_delay); + cm_rep_set_failover(rep_msg, param->failover_accepted); + cm_rep_set_flow_ctrl(rep_msg, param->flow_control); + cm_rep_set_rnr_retry_count(rep_msg, param->rnr_retry_count); + cm_rep_set_srq(rep_msg, (param->qp->srq != NULL)); + rep_msg->local_ca_guid = cm_id_priv->port->ca_guid; + + if (param->private_data && param->private_data_len) + memcpy(rep_msg->private_data, param->private_data, + param->private_data_len); } -EXPORT_SYMBOL(ib_send_cm_rej); -int ib_send_cm_mra(struct ib_cm_id *cm_id, - u8 service_timeout, - void *private_data, - u8 private_data_len) +static inline int cm_validate_rep_param(struct ib_cm_rep_param *param) { - return -EINVAL; + if (!param->qp) + return -EINVAL; + + if (param->qp->qp_type != IB_QPT_RC && param->qp->qp_type != IB_QPT_UC) + return -EINVAL; + + if (param->private_data && + param->private_data_len > IB_CM_REP_PRIVATE_DATA_SIZE) + return -EINVAL; + + return 0; } -EXPORT_SYMBOL(ib_send_cm_mra); -int ib_send_cm_lap(struct ib_cm_id *cm_id, - struct ib_path_record *alternate_path, - void *private_data, - u8 private_data_len) +int ib_send_cm_rep(struct ib_cm_id *cm_id, + struct ib_cm_rep_param *param) { - return -EINVAL; -} -EXPORT_SYMBOL(ib_send_cm_lap); + struct cm_id_private *cm_id_priv; + struct cm_msg *msg; + struct ib_send_wr *bad_send_wr; + unsigned long flags; + int ret; -int ib_send_cm_apr(struct ib_cm_id *cm_id, - enum ib_cm_apr_status status, + ret = cm_validate_rep_param(param); + if (ret) + goto out; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, &msg); + if (ret) + goto out; + + cm_format_rep((struct cm_rep_msg *)&msg->mad, cm_id_priv, param); + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id->state == IB_CM_REQ_RCVD || + cm_id->state == IB_CM_MRA_REQ_SENT) + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + else + ret = -EINVAL; + + if (ret) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(cm_id_priv->msg); + goto out; + } + + cm_id->state = IB_CM_REP_SENT; + cm_id_priv->msg = msg; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); +out: + return ret; +} +EXPORT_SYMBOL(ib_send_cm_rep); + +static void cm_format_rtu(struct cm_rtu_msg *rtu_msg, + struct cm_id_private *cm_id_priv, + void *private_data, + u8 private_data_len) +{ + cm_format_mad_hdr(&rtu_msg->hdr, cm_id_priv, + CM_RTU_ATTR_ID, CM_MSG_SEQUENCE_REQ); + + rtu_msg->local_comm_id = cm_id_priv->id.local_id; + rtu_msg->remote_comm_id = cm_id_priv->id.remote_id; + + if (private_data && private_data_len) + memcpy(rtu_msg->private_data, private_data, private_data_len); +} + +static void cm_resend_rtu(struct cm_id_private *cm_id_priv) +{ + struct cm_msg *msg; + struct ib_send_wr *bad_send_wr; + int ret; + + ret = cm_alloc_msg(cm_id_priv, &msg); + if (ret) + return; + + cm_format_rtu((struct cm_rtu_msg *)&msg->mad, cm_id_priv, NULL, 0); + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + if (ret) + cm_free_msg(cm_id_priv->msg); +} + +int ib_send_cm_rtu(struct ib_cm_id *cm_id, + void *private_data, + u8 private_data_len) +{ + struct cm_id_private *cm_id_priv; + struct cm_msg *msg; + struct ib_send_wr *bad_send_wr; + unsigned long flags; + int ret; + + if (private_data && private_data_len > IB_CM_RTU_PRIVATE_DATA_SIZE) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, &msg); + if (ret) + goto out; + + cm_format_rtu((struct cm_rtu_msg *)&msg->mad, cm_id_priv, + private_data, private_data_len); + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id->state == IB_CM_REP_RCVD || + cm_id->state == IB_CM_MRA_REP_SENT) + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + else + ret = -EINVAL; + + if (ret) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(cm_id_priv->msg); + goto out; + } + + cm_id->state = IB_CM_ESTABLISHED; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); +out: + return ret; +} +EXPORT_SYMBOL(ib_send_cm_rtu); + +static void cm_rep_handler(struct cm_port *port, + struct ib_mad_recv_wc *mad_recv_wc) +{ + struct cm_id_private *cm_id_priv; + struct cm_rep_msg *rep_msg; + struct ib_cm_event *cm_event; + struct ib_cm_rep_event_param *param; + unsigned long flags; + int ret; + + rep_msg = (struct cm_rep_msg *)mad_recv_wc->recv_buf.mad; + cm_id_priv = cm_acquire_id_by_local_id(rep_msg->remote_comm_id); + if (!cm_id_priv) + return; + + cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); + if (!cm_event) + goto out; + + spin_lock_irqsave(&cm_id_priv->lock, flags); + switch (cm_id_priv->id.state) { + case IB_CM_REQ_SENT: + case IB_CM_MRA_REQ_RCVD: + break; + case IB_CM_ESTABLISHED: + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_resend_rtu(cm_id_priv); + goto out; + default: + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + goto out; + } + cm_id_priv->id.state = IB_CM_REP_RCVD; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + + cm_id_priv->id.remote_id = rep_msg->local_comm_id; + cm_id_priv->remote_ca_guid = rep_msg->local_ca_guid; + cm_id_priv->remote_qpn = cm_rep_get_local_qpn(rep_msg); + + cm_event->event = IB_CM_REP_RECEIVED; + param = &cm_event->param.rep_rcvd; + param->remote_ca_guid = rep_msg->local_ca_guid; + param->remote_qkey = be32_to_cpu(rep_msg->local_qkey); + param->remote_qpn = be32_to_cpu(cm_id_priv->remote_qpn); + param->starting_psn = be32_to_cpu(cm_rep_get_starting_psn(rep_msg)); + param->responder_resources = rep_msg->resp_resources; + param->initiator_depth = rep_msg->initiator_depth; + param->target_ack_delay = cm_rep_get_target_ack_delay(rep_msg); + param->failover_accepted = cm_rep_get_failover(rep_msg); + param->flow_control = cm_rep_get_flow_ctrl(rep_msg); + param->rnr_retry_count = cm_rep_get_rnr_retry_count(rep_msg); + param->srq = cm_rep_get_srq(rep_msg); + cm_event->private_data = &rep_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + if (ret) { + kfree(cm_event); + atomic_dec(&cm_id_priv->refcount); + ib_destroy_cm_id(&cm_id_priv->id); + return; + } +out: + kfree(cm_event); + cm_deref_id(cm_id_priv); +} + +static void cm_rtu_handler(struct cm_port *port, + struct ib_mad_recv_wc *mad_recv_wc) +{ + struct cm_id_private *cm_id_priv; + struct cm_rtu_msg *rtu_msg; + struct ib_cm_event *cm_event; + unsigned long flags; + + rtu_msg = (struct cm_rtu_msg *)mad_recv_wc->recv_buf.mad; + cm_id_priv = cm_acquire_id_by_local_id(rtu_msg->remote_comm_id); + if (!cm_id_priv) + return; + + cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); + if (!cm_event) + goto out; + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id_priv->id.state != IB_CM_REP_SENT && + cm_id_priv->id.state != IB_CM_MRA_REP_RCVD) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + goto out; + } + cm_id_priv->id.state = IB_CM_ESTABLISHED; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + + cm_event->event = IB_CM_RTU_RECEIVED; + cm_event->private_data = &rtu_msg->private_data; + cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); +out: + kfree(cm_event); + cm_deref_id(cm_id_priv); +} + +int ib_cm_establish(struct ib_cm_id *cm_id) +{ + struct cm_id_private *cm_id_priv; + unsigned long flags; + int ret = 0; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + + spin_lock_irqsave(&cm_id_priv->lock, flags); + switch (cm_id->state) + { + case IB_CM_REP_SENT: + case IB_CM_MRA_REP_RCVD: + cm_id->state = IB_CM_ESTABLISHED; + break; + case IB_CM_ESTABLISHED: + ret = -EISCONN; + break; + default: + ret = -EINVAL; + break; + } + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + return ret; +} +EXPORT_SYMBOL(ib_cm_establish); + +static void cm_format_dreq(struct cm_dreq_msg *dreq_msg, + struct cm_id_private *cm_id_priv, + void *private_data, + u8 private_data_len) +{ + cm_format_mad_hdr(&dreq_msg->hdr, cm_id_priv, + CM_DREQ_ATTR_ID, CM_MSG_SEQUENCE_DREQ); + + dreq_msg->local_comm_id = cm_id_priv->id.local_id; + dreq_msg->remote_comm_id = cm_id_priv->id.remote_id; + cm_dreq_set_remote_qpn(dreq_msg, cm_id_priv->remote_qpn); + + if (private_data && private_data_len) + memcpy(dreq_msg->private_data, private_data, private_data_len); +} + +int ib_send_cm_dreq(struct ib_cm_id *cm_id, + void *private_data, + u8 private_data_len) +{ + struct cm_id_private *cm_id_priv; + struct cm_msg *msg; + struct ib_send_wr *bad_send_wr; + unsigned long flags; + int ret; + + if (private_data && private_data_len > IB_CM_DREQ_PRIVATE_DATA_SIZE) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, &msg); + if (ret) + goto out; + + cm_format_dreq((struct cm_dreq_msg *)&msg->mad, cm_id_priv, + private_data, private_data_len); + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id->state == IB_CM_ESTABLISHED) + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + else + ret = -EINVAL; + + if (ret) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(cm_id_priv->msg); + goto out; + } + + cm_id->state = IB_CM_DREQ_SENT; + cm_id_priv->msg = msg; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); +out: + return ret; +} +EXPORT_SYMBOL(ib_send_cm_dreq); + +static void cm_dreq_handler(struct cm_port *port, + struct ib_mad_recv_wc *mad_recv_wc) +{ + struct cm_id_private *cm_id_priv; + struct cm_dreq_msg *dreq_msg; + struct ib_cm_event *cm_event; + unsigned long flags; + int ret; + + dreq_msg = (struct cm_dreq_msg *)mad_recv_wc->recv_buf.mad; + cm_id_priv = cm_acquire_id_by_local_id(dreq_msg->remote_comm_id); + if (!cm_id_priv) + return; + + cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); + if (!cm_event) + goto out; + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id_priv->id.state != IB_CM_ESTABLISHED || + cm_id_priv->local_qpn != cm_dreq_get_remote_qpn(dreq_msg)) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + /* todo: resend DREP */ + goto out; + } + cm_id_priv->id.state = IB_CM_DREQ_RCVD; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + + cm_event->event = IB_CM_DREQ_RECEIVED; + cm_event->private_data = &dreq_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + if (ret) { + kfree(cm_event); + atomic_dec(&cm_id_priv->refcount); + ib_destroy_cm_id(&cm_id_priv->id); + return; + } +out: + kfree(cm_event); + cm_deref_id(cm_id_priv); +} + +static void cm_format_drep(struct cm_drep_msg *drep_msg, + struct cm_id_private *cm_id_priv, + void *private_data, + u8 private_data_len) +{ + cm_format_mad_hdr(&drep_msg->hdr, cm_id_priv, + CM_DREP_ATTR_ID, CM_MSG_SEQUENCE_DREQ); + + drep_msg->local_comm_id = cm_id_priv->id.local_id; + drep_msg->remote_comm_id = cm_id_priv->id.remote_id; + + if (private_data && private_data_len) + memcpy(drep_msg->private_data, private_data, private_data_len); +} + +int ib_send_cm_drep(struct ib_cm_id *cm_id, + void *private_data, + u8 private_data_len) +{ + struct cm_id_private *cm_id_priv; + struct cm_msg *msg; + struct ib_send_wr *bad_send_wr; + unsigned long flags; + int ret; + + if (private_data && private_data_len > IB_CM_DREP_PRIVATE_DATA_SIZE) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, &msg); + if (ret) + goto out; + + cm_format_drep((struct cm_drep_msg *)&msg->mad, cm_id_priv, + private_data, private_data_len); + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id->state == IB_CM_DREQ_RCVD) + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + else + ret = -EINVAL; + + if (ret) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(cm_id_priv->msg); + goto out; + } + + cm_id->state = IB_CM_TIMEWAIT; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); +out: + return ret; +} +EXPORT_SYMBOL(ib_send_cm_drep); + +static void cm_drep_handler(struct cm_port *port, + struct ib_mad_recv_wc *mad_recv_wc) +{ + struct cm_id_private *cm_id_priv; + struct cm_drep_msg *drep_msg; + struct ib_cm_event *cm_event; + unsigned long flags; + int ret; + + drep_msg = (struct cm_drep_msg *)mad_recv_wc->recv_buf.mad; + cm_id_priv = cm_acquire_id_by_local_id(drep_msg->remote_comm_id); + if (!cm_id_priv) + return; + + cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); + if (!cm_event) + goto out; + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id_priv->id.state != IB_CM_DREQ_SENT) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + goto out; + } + cm_id_priv->id.state = IB_CM_TIMEWAIT; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + + cm_event->event = IB_CM_DREP_RECEIVED; + cm_event->private_data = &drep_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + if (ret) { + kfree(cm_event); + atomic_dec(&cm_id_priv->refcount); + ib_destroy_cm_id(&cm_id_priv->id); + return; + } +out: + kfree(cm_event); + cm_deref_id(cm_id_priv); +} + +static void cm_format_rej(struct cm_rej_msg *rej_msg, + struct cm_id_private *cm_id_priv, + enum ib_cm_rej_reason reason, + void *ari, + u8 ari_length, + void *private_data, + u8 private_data_len) +{ + cm_format_mad_hdr(&rej_msg->hdr, cm_id_priv, + CM_REJ_ATTR_ID, CM_MSG_SEQUENCE_REQ); + + rej_msg->local_comm_id = cm_id_priv->id.local_id; + rej_msg->remote_comm_id = cm_id_priv->id.remote_id; + + switch(cm_id_priv->id.state) { + case IB_CM_REQ_RCVD: + cm_rej_set_msg_rejected(rej_msg, CM_MSG_RESPONSE_REQ); + break; + case IB_CM_REP_RCVD: + cm_rej_set_msg_rejected(rej_msg, CM_MSG_RESPONSE_REP); + break; + default: + cm_rej_set_msg_rejected(rej_msg, CM_MSG_RESPONSE_OTHER); + break; + } + + rej_msg->reason = reason; + if (ari && ari_length) { + cm_rej_set_reject_info_len(rej_msg, ari_length); + memcpy(rej_msg->ari, ari, ari_length); + } + + if (private_data && private_data_len) + memcpy(rej_msg->private_data, private_data, private_data_len); +} + +int ib_send_cm_rej(struct ib_cm_id *cm_id, + enum ib_cm_rej_reason reason, + void *ari, + u8 ari_length, + void *private_data, + u8 private_data_len) +{ + struct cm_id_private *cm_id_priv; + struct cm_msg *msg; + struct ib_send_wr *bad_send_wr; + unsigned long flags; + int ret; + + if ((private_data && private_data_len > IB_CM_REJ_PRIVATE_DATA_SIZE) || + (ari && ari_length > IB_CM_REJ_ARI_LENGTH)) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, &msg); + if (ret) + goto out; + + cm_format_rej((struct cm_rej_msg *)&msg->mad, cm_id_priv, reason, + ari, ari_length, private_data, private_data_len); + + spin_lock_irqsave(&cm_id_priv->lock, flags); + switch (cm_id->state) { + case IB_CM_REQ_RCVD: + case IB_CM_MRA_REQ_SENT: + case IB_CM_REP_RCVD: + case IB_CM_MRA_REP_SENT: + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + break; + default: + ret = -EINVAL; + break; + } + + if (ret) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(cm_id_priv->msg); + goto out; + } + + cm_id->state = IB_CM_IDLE; + cm_id_priv->msg = msg; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); +out: + return ret; +} +EXPORT_SYMBOL(ib_send_cm_rej); + +static void cm_rej_handler(struct cm_port *port, + struct ib_mad_recv_wc *mad_recv_wc) +{ + /* todo: write reject handler */ +} + +static void cm_format_mra(struct cm_mra_msg *mra_msg, + struct cm_id_private *cm_id_priv, + u8 service_timeout, + void *private_data, + u8 private_data_len) +{ + enum cm_msg_sequence msg_sequence; + unsigned long flags; + enum cm_msg_response msg_mraed; + + spin_lock_irqsave(&cm_id_priv->lock, flags); + switch(cm_id_priv->id.state) { + case IB_CM_REQ_RCVD: + msg_sequence = CM_MSG_SEQUENCE_REQ; + msg_mraed = CM_MSG_RESPONSE_REQ; + break; + case IB_CM_REP_RCVD: + msg_sequence = CM_MSG_SEQUENCE_REQ; + msg_mraed = CM_MSG_RESPONSE_REP; + break; + case IB_CM_ESTABLISHED: + msg_sequence = CM_MSG_SEQUENCE_LAP; + msg_mraed = CM_MSG_RESPONSE_OTHER; + break; + default: + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + return; + } + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_format_mad_hdr(&mra_msg->hdr, cm_id_priv, + CM_MRA_ATTR_ID, msg_sequence); + cm_mra_set_msg_mraed(mra_msg, msg_mraed); + + mra_msg->local_comm_id = cm_id_priv->id.local_id; + mra_msg->remote_comm_id = cm_id_priv->id.remote_id; + cm_mra_set_service_timeout(mra_msg, service_timeout); + + if (private_data && private_data_len) + memcpy(mra_msg->private_data, private_data, private_data_len); +} + +int ib_send_cm_mra(struct ib_cm_id *cm_id, + u8 service_timeout, + void *private_data, + u8 private_data_len) +{ + struct cm_id_private *cm_id_priv; + struct cm_msg *msg; + struct ib_send_wr *bad_send_wr; + unsigned long flags; + int ret; + + if (private_data && private_data_len > IB_CM_MRA_PRIVATE_DATA_SIZE) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, &msg); + if (ret) + goto out; + + cm_format_mra((struct cm_mra_msg *)&msg->mad, cm_id_priv, + service_timeout, private_data, private_data_len); + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id_priv->id.state != IB_CM_REQ_RCVD && + cm_id_priv->id.state != IB_CM_REP_RCVD && + (cm_id_priv->id.state != IB_CM_ESTABLISHED || + cm_id_priv->id.lap_state != IB_CM_LAP_RCVD)) { + + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + } else { + ret = -EINVAL; + } + + if (ret) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(cm_id_priv->msg); + goto out; + } + + switch (cm_id_priv->id.state) { + case IB_CM_REQ_RCVD: + cm_id->state = IB_CM_MRA_REQ_SENT; + break; + case IB_CM_REP_RCVD: + cm_id->state = IB_CM_MRA_REP_SENT; + break; + case IB_CM_ESTABLISHED: + cm_id_priv->id.lap_state = IB_CM_MRA_LAP_SENT; + break; + default: + break; + } + cm_id_priv->msg = msg; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); +out: + return ret; +} +EXPORT_SYMBOL(ib_send_cm_mra); + +static void cm_mra_handler(struct cm_port *port, + struct ib_mad_recv_wc *mad_recv_wc) +{ + /* todo: write MRA handler */ + /* todo: add timeout mechanism separate from retries for + receiver of MRA */ +} + +static void cm_format_lap(struct cm_lap_msg *lap_msg, + struct cm_id_private *cm_id_priv, + struct ib_sa_path_rec *alternate_path, + void *private_data, + u8 private_data_len) +{ + cm_format_mad_hdr(&lap_msg->hdr, cm_id_priv, + CM_LAP_ATTR_ID, CM_MSG_SEQUENCE_LAP); + + lap_msg->local_comm_id = cm_id_priv->id.local_id; + lap_msg->remote_comm_id = cm_id_priv->id.remote_id; + cm_lap_set_remote_qpn(lap_msg, cm_id_priv->remote_qpn); + /* todo: need remote CM response timeout */ + cm_lap_set_remote_resp_timeout(lap_msg, 0x1F); + lap_msg->alt_local_lid = alternate_path->slid; + lap_msg->alt_remote_lid = alternate_path->dlid; + lap_msg->alt_local_gid = alternate_path->sgid; + lap_msg->alt_remote_gid = alternate_path->dgid; + cm_lap_set_flow_label(lap_msg, alternate_path->flow_label); + cm_lap_set_traffic_class(lap_msg, alternate_path->traffic_class); + lap_msg->alt_hop_limit = alternate_path->hop_limit; + cm_lap_set_packet_rate(lap_msg, alternate_path->rate); + cm_lap_set_sl(lap_msg, alternate_path->sl); + cm_lap_set_subnet_local(lap_msg, 1); /* local only... */ + cm_lap_set_local_ack_timeout(lap_msg, + min(31, alternate_path->packet_life_time + 1)); + + if (private_data && private_data_len) + memcpy(lap_msg->private_data, private_data, private_data_len); +} + +int ib_send_cm_lap(struct ib_cm_id *cm_id, + struct ib_sa_path_rec *alternate_path, + void *private_data, + u8 private_data_len) +{ + struct cm_id_private *cm_id_priv; + struct cm_msg *msg; + struct ib_send_wr *bad_send_wr; + unsigned long flags; + int ret; + + if (private_data && private_data_len > IB_CM_LAP_PRIVATE_DATA_SIZE) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, &msg); + if (ret) + goto out; + + cm_format_lap((struct cm_lap_msg *)&msg->mad, cm_id_priv, + alternate_path, private_data, private_data_len); + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id->state == IB_CM_ESTABLISHED && + cm_id->lap_state == IB_CM_LAP_IDLE) + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + else + ret = -EINVAL; + + if (ret) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(cm_id_priv->msg); + goto out; + } + + cm_id->lap_state = IB_CM_LAP_SENT; + cm_id_priv->msg = msg; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); +out: + return ret; +} +EXPORT_SYMBOL(ib_send_cm_lap); + +static void cm_format_path_from_lap(struct ib_sa_path_rec *path, + struct cm_lap_msg *lap_msg) +{ + memset(path, 0, sizeof *path); + path->dgid = lap_msg->alt_local_gid; + path->sgid = lap_msg->alt_remote_gid; + path->dlid = lap_msg->alt_local_lid; + path->slid = lap_msg->alt_remote_lid; + path->flow_label = cm_lap_get_flow_label(lap_msg); + path->hop_limit = lap_msg->alt_hop_limit; + path->traffic_class = cm_lap_get_traffic_class(lap_msg); + path->reversible = 1; + /* pkey is same as in REQ */ + path->sl = cm_lap_get_sl(lap_msg); + path->mtu_selector = IB_SA_EQ; + /* mtu is same as in REQ */ + path->rate_selector = IB_SA_EQ; + path->rate = cm_lap_get_packet_rate(lap_msg); + path->packet_life_time_selector = IB_SA_EQ; + path->packet_life_time = cm_lap_get_local_ack_timeout(lap_msg); +} + +static void cm_lap_handler(struct cm_port *port, + struct ib_mad_recv_wc *mad_recv_wc) +{ + struct cm_id_private *cm_id_priv; + struct cm_lap_msg *lap_msg; + struct ib_cm_event *cm_event; + unsigned long flags; + int ret; + + /* todo: verify LAP request and send reject APR if invalid. */ + lap_msg = (struct cm_lap_msg *)mad_recv_wc->recv_buf.mad; + cm_id_priv = cm_acquire_id_by_local_id(lap_msg->remote_comm_id); + if (!cm_id_priv) + return; + + cm_event = kmalloc(sizeof *cm_event + + sizeof *(cm_event->param.lap_rcvd.alternate_path), + GFP_KERNEL); + if (!cm_event) + goto out; + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id_priv->id.state != IB_CM_ESTABLISHED && + cm_id_priv->id.lap_state != IB_CM_LAP_IDLE) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + goto out; + } + cm_id_priv->id.lap_state = IB_CM_LAP_RCVD; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + + cm_event->event = IB_CM_LAP_RECEIVED; + cm_event->param.lap_rcvd.alternate_path = (struct ib_sa_path_rec *) + (u8*)cm_event + + sizeof *cm_event; + cm_format_path_from_lap(cm_event->param.lap_rcvd.alternate_path, + lap_msg); + cm_event->private_data = &lap_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + if (ret) { + kfree(cm_event); + atomic_dec(&cm_id_priv->refcount); + ib_destroy_cm_id(&cm_id_priv->id); + return; + } +out: + kfree(cm_event); + cm_deref_id(cm_id_priv); +} + +static void cm_format_apr(struct cm_apr_msg *apr_msg, + struct cm_id_private *cm_id_priv, + enum ib_cm_apr_status status, + void *info, + u8 info_length, + void *private_data, + u8 private_data_len) +{ + cm_format_mad_hdr(&apr_msg->hdr, cm_id_priv, + CM_APR_ATTR_ID, CM_MSG_SEQUENCE_LAP); + + apr_msg->local_comm_id = cm_id_priv->id.local_id; + apr_msg->remote_comm_id = cm_id_priv->id.remote_id; + apr_msg->ap_status = (u8) status; + + if (info && info_length) { + apr_msg->info_length = info_length; + memcpy(apr_msg->info, info, info_length); + } + + if (private_data && private_data_len) + memcpy(apr_msg->private_data, private_data, private_data_len); +} + +int ib_send_cm_apr(struct ib_cm_id *cm_id, + enum ib_cm_apr_status status, void *info, u8 info_length, void *private_data, u8 private_data_len) { - return -EINVAL; + struct cm_id_private *cm_id_priv; + struct cm_msg *msg; + struct ib_send_wr *bad_send_wr; + unsigned long flags; + int ret; + + if ((private_data && private_data_len > IB_CM_APR_PRIVATE_DATA_SIZE) || + (info && info_length > IB_CM_APR_INFO_LENGTH)) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, &msg); + if (ret) + goto out; + + cm_format_apr((struct cm_apr_msg *)&msg->mad, cm_id_priv, status, + info, info_length, private_data, private_data_len); + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id->state == IB_CM_ESTABLISHED && + (cm_id->lap_state == IB_CM_LAP_RCVD || + cm_id->lap_state == IB_CM_MRA_LAP_SENT)) + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + else + ret = -EINVAL; + + if (ret) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(cm_id_priv->msg); + goto out; + } + + cm_id->lap_state = IB_CM_LAP_IDLE; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); +out: + return ret; } EXPORT_SYMBOL(ib_send_cm_apr); +static void cm_apr_handler(struct cm_port *port, + struct ib_mad_recv_wc *mad_recv_wc) +{ + struct cm_id_private *cm_id_priv; + struct cm_apr_msg *apr_msg; + struct ib_cm_event *cm_event; + unsigned long flags; + + apr_msg = (struct cm_apr_msg *)mad_recv_wc->recv_buf.mad; + cm_id_priv = cm_acquire_id_by_local_id(apr_msg->remote_comm_id); + if (!cm_id_priv) + return; /* Unmatched reply. */ + + cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); + if (!cm_event) + goto out; + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id_priv->id.state != IB_CM_ESTABLISHED || + (cm_id_priv->id.lap_state != IB_CM_LAP_SENT && + cm_id_priv->id.lap_state != IB_CM_MRA_LAP_RCVD)) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + goto out; + } + cm_id_priv->id.lap_state = IB_CM_LAP_IDLE; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + + ib_cancel_mad(cm_id_priv->port->mad_agent, + (unsigned long)cm_id_priv->msg); + + cm_event->event = IB_CM_APR_RECEIVED; + cm_event->param.apr_rcvd.ap_status = apr_msg->ap_status; + cm_event->param.apr_rcvd.apr_info = &apr_msg->info; + cm_event->param.apr_rcvd.info_len = apr_msg->info_length; + cm_event->private_data = &apr_msg->private_data; + cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); +out: + kfree(cm_event); + cm_deref_id(cm_id_priv); +} + +static void cm_format_sidr_req(struct cm_sidr_req_msg *sidr_req_msg, + struct cm_id_private *cm_id_priv, + struct ib_cm_sidr_req_param *param) +{ + cm_format_mad_hdr(&sidr_req_msg->hdr, cm_id_priv, + CM_SIDR_REQ_ATTR_ID, CM_MSG_SEQUENCE_SIDR); + + sidr_req_msg->request_id = cm_id_priv->id.local_id; + sidr_req_msg->pkey = param->pkey; + sidr_req_msg->service_id = param->service_id; + + if (param->private_data && param->private_data_len) + memcpy(sidr_req_msg->private_data, param->private_data, + param->private_data_len); +} + int ib_send_cm_sidr_req(struct ib_cm_id *cm_id, struct ib_cm_sidr_req_param *param) { - return -EINVAL; + struct ib_device *device; + struct cm_id_private *cm_id_priv; + struct cm_msg *msg; + struct ib_send_wr *bad_send_wr; + unsigned long flags; + int ret; + + if (!param->path || (param->private_data && + param->private_data_len > IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE)) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_find_device(¶m->path->sgid, &device, &cm_id_priv->port); + if (ret) + goto out; + + ret = ib_find_cached_pkey(device, cm_id_priv->port->port_num, + param->path->pkey, &cm_id_priv->pkey_index); + if (ret) + goto out; + + cm_id_priv->timeout_ms = param->timeout_ms; + cm_id_priv->max_cm_retries = param->max_cm_retries; + cm_set_ah_attr(&cm_id_priv->ah_attr, cm_id_priv->port->port_num, + param->path->dlid, param->path->sl, + param->path->slid & 0x7F); + ret = cm_alloc_msg(cm_id_priv, &msg); + if (ret) + goto out; + + cm_format_sidr_req((struct cm_sidr_req_msg *)&msg->mad, cm_id_priv, + param); + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id->state == IB_CM_IDLE) + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + else + ret = -EINVAL; + + if (ret) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(cm_id_priv->msg); + goto out; + } + cm_id->state = IB_CM_SIDR_REQ_SENT; + cm_id_priv->msg = msg; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); +out: + return ret; } EXPORT_SYMBOL(ib_send_cm_sidr_req); +static void cm_sidr_req_handler(struct cm_port *port, + struct ib_mad_recv_wc *mad_recv_wc) +{ + struct ib_cm_id *cm_id; + struct cm_id_private *cm_id_priv, *cur_cm_id_priv; + struct cm_sidr_req_msg *sidr_req_msg; + struct ib_cm_event *cm_event; + struct ib_wc *wc; + unsigned long flags; + int ret; + + cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); + if (!cm_event) + return; + + cm_id = ib_create_cm_id(NULL, NULL); + if (IS_ERR(cm_id)) + goto out; + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + + /* Record SGID/SLID and request ID for lookup. */ + sidr_req_msg = (struct cm_sidr_req_msg *)mad_recv_wc->recv_buf.mad; + wc = mad_recv_wc->wc; + cm_id_priv->remote_port_gid.global.subnet_prefix = wc->slid; + cm_id_priv->remote_port_gid.global.interface_id = 0; + cm_id_priv->id.remote_id = sidr_req_msg->request_id; + + spin_lock_irqsave(&cm.lock, flags); + cur_cm_id_priv = cm_insert_remote_sidr(cm_id_priv); + if (cur_cm_id_priv) { + spin_unlock_irqrestore(&cm.lock, flags); + goto destroy_id; /* Duplicate message. */ + } + cur_cm_id_priv = cm_find_service(sidr_req_msg->service_id); + if (!cur_cm_id_priv || cur_cm_id_priv->id.state != IB_CM_LISTEN) { + rb_erase(&cm_id_priv->remote_id_node, &cm.remote_sidr_table); + spin_unlock_irqrestore(&cm.lock, flags); + /* todo: reject with no match */ + goto destroy_id; /* No match. */ + } + atomic_inc(&cur_cm_id_priv->refcount); + spin_unlock_irqrestore(&cm.lock, flags); + + cm_id_priv->id.cm_handler = cur_cm_id_priv->id.cm_handler; + cm_id_priv->id.context = cur_cm_id_priv->id.context; + cm_id_priv->id.service_id = sidr_req_msg->service_id; + cm_id_priv->id.service_mask = ~0ULL; + cm_id_priv->id.state = IB_CM_SIDR_REQ_RCVD; + cm_id_priv->port = port; + cm_id_priv->pkey_index = wc->pkey_index; + cm_set_ah_attr(&cm_id_priv->ah_attr, port->port_num, wc->slid, + wc->sl, wc->dlid_path_bits); + + cm_event->event = IB_CM_SIDR_REQ_RECEIVED; + cm_event->param.sidr_req_rcvd.pkey = sidr_req_msg->pkey; + cm_event->param.sidr_req_rcvd.listen_id = &cur_cm_id_priv->id; + cm_event->param.sidr_req_rcvd.device = port->mad_agent->device; + cm_event->param.sidr_req_rcvd.port = port->port_num; + cm_event->private_data = &sidr_req_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + cm_deref_id(cur_cm_id_priv); + if (!ret) + goto out; +destroy_id: + ib_destroy_cm_id(&cm_id_priv->id); +out: + kfree(cm_event); +} + +static void cm_format_sidr_rep(struct cm_sidr_rep_msg *sidr_rep_msg, + struct cm_id_private *cm_id_priv, + struct ib_cm_sidr_rep_param *param) +{ + cm_format_mad_hdr(&sidr_rep_msg->hdr, cm_id_priv, + CM_SIDR_REP_ATTR_ID, CM_MSG_SEQUENCE_SIDR); + + sidr_rep_msg->request_id = cm_id_priv->id.remote_id; + sidr_rep_msg->status = param->status; + cm_sidr_rep_set_qpn(sidr_rep_msg, cpu_to_be32(param->qp_num)); + sidr_rep_msg->service_id = cm_id_priv->id.service_id; + sidr_rep_msg->qkey = cpu_to_be32(param->qkey); + + if (param->info && param->info_length) + memcpy(sidr_rep_msg->info, param->info, param->info_length); + + if (param->private_data && param->private_data_len) + memcpy(sidr_rep_msg->private_data, param->private_data, + param->private_data_len); +} + int ib_send_cm_sidr_rep(struct ib_cm_id *cm_id, struct ib_cm_sidr_rep_param *param) { - return -EINVAL; + struct cm_id_private *cm_id_priv; + struct cm_msg *msg; + struct ib_send_wr *bad_send_wr; + unsigned long flags; + int ret; + + if ((param->info && param->info_length > IB_CM_SIDR_REP_INFO_LENGTH) || + (param->private_data && + param->private_data_len > IB_CM_SIDR_REP_PRIVATE_DATA_SIZE)) + return -EINVAL; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + ret = cm_alloc_msg(cm_id_priv, &msg); + if (ret) + goto out; + + cm_format_sidr_rep((struct cm_sidr_rep_msg *)&msg->mad, cm_id_priv, + param); + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id->state == IB_CM_SIDR_REQ_RCVD) + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + else + ret = -EINVAL; + + if (ret) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(cm_id_priv->msg); + goto out; + } + cm_id->state = IB_CM_IDLE; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + + spin_lock_irqsave(&cm.lock, flags); + rb_erase(&cm_id_priv->remote_id_node, &cm.remote_sidr_table); + spin_unlock_irqrestore(&cm.lock, flags); +out: + return ret; } EXPORT_SYMBOL(ib_send_cm_sidr_rep); -static void send_handler(struct ib_mad_agent *mad_agent, +static void cm_sidr_rep_handler(struct cm_port *port, + struct ib_mad_recv_wc *mad_recv_wc) +{ + struct cm_id_private *cm_id_priv; + struct cm_sidr_rep_msg *sidr_rep_msg; + struct ib_cm_event *cm_event; + unsigned long flags; + int ret; + + sidr_rep_msg = (struct cm_sidr_rep_msg *)mad_recv_wc->recv_buf.mad; + cm_id_priv = cm_acquire_id_by_local_id(sidr_rep_msg->request_id); + if (!cm_id_priv) + return; /* Unmatched reply. */ + + cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); + if (!cm_event) + goto out; + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id_priv->id.state != IB_CM_SIDR_REQ_SENT) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + goto out; + } + cm_id_priv->id.state = IB_CM_IDLE; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + + ib_cancel_mad(cm_id_priv->port->mad_agent, + (unsigned long)cm_id_priv->msg); + + cm_event->event = IB_CM_SIDR_REP_RECEIVED; + cm_event->param.sidr_rep_rcvd.status = sidr_rep_msg->status; + cm_event->param.sidr_rep_rcvd.qkey = be32_to_cpu(sidr_rep_msg->qkey); + cm_event->param.sidr_rep_rcvd.qpn = be32_to_cpu(cm_sidr_rep_get_qpn( + sidr_rep_msg)); + cm_event->param.sidr_rep_rcvd.info = &sidr_rep_msg->info; + cm_event->param.sidr_rep_rcvd.info_len = sidr_rep_msg->info_length; + cm_event->private_data = &sidr_rep_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + if (ret) { + kfree(cm_event); + atomic_dec(&cm_id_priv->refcount); + ib_destroy_cm_id(&cm_id_priv->id); + return; + } +out: + kfree(cm_event); + cm_deref_id(cm_id_priv); +} + +static void cm_process_send_error(struct cm_msg *msg, + enum ib_wc_status wc_status) +{ + struct cm_id_private *cm_id_priv; + struct ib_cm_event cm_event; + unsigned long flags, flags2; + + memset(&cm_event, 0, sizeof cm_event); + cm_id_priv = msg->cm_id_priv; + + /* Discard old sends or ones without a response. */ + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (msg != cm_id_priv->msg) + goto discard; + + switch (cm_id_priv->id.state) { + case IB_CM_REQ_SENT: + cm_id_priv->id.state = IB_CM_IDLE; + cm_event.event = IB_CM_REQ_ERROR; + break; + case IB_CM_REP_SENT: + cm_id_priv->id.state = IB_CM_IDLE; + cm_event.event = IB_CM_REP_ERROR; + break; + case IB_CM_DREQ_SENT: + cm_id_priv->id.state = IB_CM_TIMEWAIT; + cm_event.event = IB_CM_DREQ_ERROR; + break; + case IB_CM_SIDR_REQ_SENT: + cm_id_priv->id.state = IB_CM_IDLE; + cm_event.event = IB_CM_SIDR_REQ_ERROR; + spin_lock_irqsave(&cm.lock, flags2); + rb_erase(&cm_id_priv->remote_id_node, &cm.remote_sidr_table); + spin_unlock_irqrestore(&cm.lock, flags2); + break; + default: + goto discard; + } + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_event.param.send_status = wc_status; + cm_id_priv->id.cm_handler(&cm_id_priv->id, &cm_event); + cm_free_msg(msg); + return; + +discard: + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(msg); +} + +static void cm_process_send_timeout(struct cm_msg *msg) +{ + struct cm_id_private *cm_id_priv; + struct ib_send_wr *bad_send_wr; + unsigned long flags; + int ret; + + cm_id_priv = msg->cm_id_priv; + + /* Discard old sends. */ + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (msg != cm_id_priv->msg) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_free_msg(msg); + return; + } + + if (msg->retry++ < cm_id_priv->max_cm_retries) { + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + if (ret) + cm_process_send_error(msg, IB_WC_GENERAL_ERR); + } else { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_process_send_error(msg, IB_WC_RESP_TIMEOUT_ERR); + } +} + +static void cm_send_handler(struct ib_mad_agent *mad_agent, struct ib_mad_send_wc *mad_send_wc) { - struct cm_port *port; + struct cm_msg *msg; + + msg = (struct cm_msg *)(unsigned long)mad_send_wc->wr_id; - port = (struct cm_port *)mad_agent->context; + switch (mad_send_wc->status) { + case IB_WC_SUCCESS: + case IB_WC_WR_FLUSH_ERR: + cm_free_msg(msg); + break; + case IB_WC_RESP_TIMEOUT_ERR: + cm_process_send_timeout(msg); + break; + default: + cm_process_send_error(msg, mad_send_wc->status); + break; + } } -static void recv_handler(struct ib_mad_agent *mad_agent, - struct ib_mad_recv_wc *mad_recv_wc) +static void cm_recv_work_handler(void *data) { - struct cm_port *port; + struct cm_recv_work *recv_work = data; + + switch (recv_work->mad_recv_wc->recv_buf.mad->mad_hdr.attr_id) { + case CM_REQ_ATTR_ID: + cm_req_handler(recv_work->port, recv_work->mad_recv_wc); + break; + case CM_MRA_ATTR_ID: + cm_mra_handler(recv_work->port, recv_work->mad_recv_wc); + break; + case CM_REJ_ATTR_ID: + cm_rej_handler(recv_work->port, recv_work->mad_recv_wc); + break; + case CM_REP_ATTR_ID: + cm_rep_handler(recv_work->port, recv_work->mad_recv_wc); + break; + case CM_RTU_ATTR_ID: + cm_rtu_handler(recv_work->port, recv_work->mad_recv_wc); + break; + case CM_DREQ_ATTR_ID: + cm_dreq_handler(recv_work->port, recv_work->mad_recv_wc); + break; + case CM_DREP_ATTR_ID: + cm_drep_handler(recv_work->port, recv_work->mad_recv_wc); + break; + case CM_SIDR_REQ_ATTR_ID: + cm_sidr_req_handler(recv_work->port, recv_work->mad_recv_wc); + break; + case CM_SIDR_REP_ATTR_ID: + cm_sidr_rep_handler(recv_work->port, recv_work->mad_recv_wc); + break; + case CM_LAP_ATTR_ID: + cm_lap_handler(recv_work->port, recv_work->mad_recv_wc); + break; + case CM_APR_ATTR_ID: + cm_apr_handler(recv_work->port, recv_work->mad_recv_wc); + break; + default: + break; + } + ib_free_recv_mad(recv_work->mad_recv_wc); + kfree(recv_work); +} + +static void cm_recv_handler(struct ib_mad_agent *mad_agent, + struct ib_mad_recv_wc *mad_recv_wc) +{ + struct cm_recv_work *recv_work; - port = (struct cm_port *)mad_agent->context; + recv_work = kmalloc(sizeof *recv_work, GFP_KERNEL); + if (!recv_work) { + ib_free_recv_mad(mad_recv_wc); + return; + } + + PREPARE_WORK(&recv_work->work, cm_recv_work_handler, recv_work); + recv_work->mad_recv_wc = mad_recv_wc; + recv_work->port = (struct cm_port *)mad_agent->context; + queue_work(cm.wq, &recv_work->work); +} + +static u64 cm_get_ca_guid(struct ib_device *device) +{ + struct ib_device_attr *device_attr; + u64 guid; + int ret; + + device_attr = kmalloc(sizeof *device_attr, GFP_KERNEL); + if (!device_attr) + return 0; + + ret = ib_query_device(device, device_attr); + guid = ret ? 0 : device_attr->node_guid; + kfree(device_attr); + return guid; } static void cm_add_one(struct ib_device *device) { - struct cm_port *port; + struct cm_port *port_array, *port; struct ib_mad_reg_req reg_req; + u64 ca_guid; u8 i; - port = kmalloc(sizeof *port * device->phys_port_cnt, GFP_KERNEL); - if (!port) - goto out; + ca_guid = cm_get_ca_guid(device); + if (!ca_guid) + return; + + port_array = kmalloc(sizeof *port * device->phys_port_cnt, GFP_KERNEL); + if (!port_array) + return; + /* todo: (high priority) set CM bit in port info */ memset(®_req, 0, sizeof reg_req); reg_req.mgmt_class = IB_MGMT_CLASS_CM; reg_req.mgmt_class_version = 1; - set_bit(IB_MGMT_METHOD_GET, reg_req.method_mask); - set_bit(IB_MGMT_METHOD_SET, reg_req.method_mask); - set_bit(IB_MGMT_METHOD_GET_RESP, reg_req.method_mask); set_bit(IB_MGMT_METHOD_SEND, reg_req.method_mask); - for (i = 1; i <= device->phys_port_cnt; i++) { - port[i].mad_agent = ib_register_mad_agent(device, i, - IB_QPT_GSI, - ®_req, - 0, - send_handler, - recv_handler, - &port[i]); + for (i = 1, port = port_array; i <= device->phys_port_cnt; i++, port++){ + spin_lock_init(&port->lock); + port->ca_guid = ca_guid; + port->port_num = i; + port->mad_agent = ib_register_mad_agent(device, i, + IB_QPT_GSI, + ®_req, + 0, + cm_send_handler, + cm_recv_handler, + port); + if (IS_ERR(port->mad_agent)) + goto error; + + port->mr = ib_get_dma_mr(port->mad_agent->qp->pd, + IB_ACCESS_LOCAL_WRITE); + if (IS_ERR(port->mr)) { + ib_unregister_mad_agent(port->mad_agent); + goto error; + } } + ib_set_client_data(device, &cm_client, port_array); + return; -out: - ib_set_client_data(device, &cm_client, port); +error: + while (port != port_array) { + --port; + ib_dereg_mr(port->mr); + ib_unregister_mad_agent(port->mad_agent); + } + kfree(port_array); } static void cm_remove_one(struct ib_device *device) { - struct cm_port *port; + struct cm_port *port_array, *port; int i; - port = (struct cm_port *)ib_get_client_data(device, &cm_client); - if (!port) + port_array = (struct cm_port *)ib_get_client_data(device, &cm_client); + if (!port_array) return; - for (i = 1; i <= device->phys_port_cnt; i++) { - if (!IS_ERR(port[i].mad_agent)) - ib_unregister_mad_agent(port[i].mad_agent); + for (i = 1, port = port_array; i <= device->phys_port_cnt; i++, port++){ + ib_dereg_mr(port->mr); + ib_unregister_mad_agent(port->mad_agent); } - kfree(port); + kfree(port_array); } static int __init ib_cm_init(void) { + int ret; + memset(&cm, 0, sizeof cm); spin_lock_init(&cm.lock); cm.service_table = RB_ROOT; - return ib_register_client(&cm_client); + cm.remote_id_table = RB_ROOT; + cm.remote_qp_table = RB_ROOT; + cm.remote_sidr_table = RB_ROOT; + idr_init(&cm.local_id_table); + idr_pre_get(&cm.local_id_table, GFP_KERNEL); + + cm.wq = create_workqueue("ib_cm"); + if (!cm.wq) + return -ENOMEM; + + ret = ib_register_client(&cm_client); + if (ret) + destroy_workqueue(cm.wq); + return ret; } static void __exit ib_cm_cleanup(void) Index: core/cm_msgs.h =================================================================== --- core/cm_msgs.h (revision 0) +++ core/cm_msgs.h (revision 0) @@ -0,0 +1,819 @@ +/* + * Copyright (c) 2004 Intel Corporation. All rights reserved. + * Copyright (c) 2004 Topspin Corporation. All rights reserved. + * Copyright (c) 2004 Voltaire Corporation. All rights reserved. + * + * This software is available to you under a choice of one of two + * licenses. You may choose to be licensed under the terms of the GNU + * General Public License (GPL) Version 2, available from the file + * COPYING the madirectory of this source tree, or the + * OpenIB.org BSD license below: + * + * Redistribution and use source and binary forms, with or + * withmodification, are permitted provided that the following + * conditions are met: + * + * - Redistributions of source code must retathe above + * copyright notice, this list of conditions and the following + * disclaimer. + * + * - Redistributions binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer the documentation and/or other materials + * provided with the distribution. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHWARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS THE + * SOFTWARE. + */ +#if !defined(CM_MSGS_H) +#define CM_MSGS_H + +#include + +/* + * Parameters to routines below should be in network-byte order, and values + * are returned in network-byte order. + */ + +#define IB_CM_CLASS_VERSION 2 /* IB specification 1.2 */ + +enum cm_msg_attr_id { + CM_REQ_ATTR_ID = __constant_htons(0x0010), + CM_MRA_ATTR_ID = __constant_htons(0x0011), + CM_REJ_ATTR_ID = __constant_htons(0x0012), + CM_REP_ATTR_ID = __constant_htons(0x0013), + CM_RTU_ATTR_ID = __constant_htons(0x0014), + CM_DREQ_ATTR_ID = __constant_htons(0x0015), + CM_DREP_ATTR_ID = __constant_htons(0x0016), + CM_SIDR_REQ_ATTR_ID = __constant_htons(0x0017), + CM_SIDR_REP_ATTR_ID = __constant_htons(0x0018), + CM_LAP_ATTR_ID = __constant_htons(0x0019), + CM_APR_ATTR_ID = __constant_htons(0x001A) +}; + +enum cm_msg_sequence { + CM_MSG_SEQUENCE_REQ, + CM_MSG_SEQUENCE_LAP, + CM_MSG_SEQUENCE_DREQ, + CM_MSG_SEQUENCE_SIDR +}; + +struct cm_req_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 rsvd4; + u64 service_id; + u64 local_ca_guid; + u32 rsvd24; + u32 local_qkey; + /* local QPN:24, responder resources:8 */ + u32 offset32; + /* local EECN:24, initiator depth:8 */ + u32 offset36; + /* + * remote EECN:24, remote CM response timeout:5, + * transport service type:2, end-to-end flow control:1 + */ + u32 offset40; + /* starting PSN:24, local CM response timeout:5, retry count:3 */ + u32 offset44; + u16 pkey; + /* path MTU:4, RDC exists:1, RNR retry count:3. */ + u8 offset50; + /* max CM Retries:4, SRQ:1, rsvd:3 */ + u8 offset51; + + u16 primary_local_lid; + u16 primary_remote_lid; + union ib_gid primary_local_gid; + union ib_gid primary_remote_gid; + /* flow label:20, rsvd:6, packet rate:6 */ + u32 primary_offset88; + u8 primary_traffic_class; + u8 primary_hop_limit; + /* SL:4, subnet local:1, rsvd:3 */ + u8 primary_offset94; + /* local ACK timeout:5, rsvd:3 */ + u8 primary_offset95; + + u16 alt_local_lid; + u16 alt_remote_lid; + union ib_gid alt_local_gid; + union ib_gid alt_remote_gid; + /* flow label:20, rsvd:6, packet rate:6 */ + u32 alt_offset132; + u8 alt_traffic_class; + u8 alt_hop_limit; + /* SL:4, subnet local:1, rsvd:3 */ + u8 alt_offset138; + /* local ACK timeout:5, rsvd:3 */ + u8 alt_offset139; + + u8 private_data[IB_CM_REQ_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +static inline u32 cm_req_get_local_qpn(struct cm_req_msg *req_msg) +{ + return cpu_to_be32(be32_to_cpu(req_msg->offset32) >> 8); +} + +static inline void cm_req_set_local_qpn(struct cm_req_msg *req_msg, u32 qpn) +{ + req_msg->offset32 = cpu_to_be32((be32_to_cpu(qpn) << 8) | + (be32_to_cpu(req_msg->offset32) & + 0x000000FF)); +} + +static inline u8 cm_req_get_resp_res(struct cm_req_msg *req_msg) +{ + return (u8) be32_to_cpu(req_msg->offset32); +} + +static inline void cm_req_set_resp_res(struct cm_req_msg *req_msg, u8 resp_res) +{ + req_msg->offset32 = cpu_to_be32(resp_res | + (be32_to_cpu(req_msg->offset32) & + 0xFFFFFF00)); +} + +static inline u8 cm_req_get_init_depth(struct cm_req_msg *req_msg) +{ + return (u8) be32_to_cpu(req_msg->offset36); +} + +static inline void cm_req_set_init_depth(struct cm_req_msg *req_msg, + u8 init_depth) +{ + req_msg->offset36 = cpu_to_be32(init_depth | + (be32_to_cpu(req_msg->offset36) & + 0xFFFFFF00)); +} + +static inline u8 cm_req_get_remote_resp_timeout(struct cm_req_msg *req_msg) +{ + return (u8) ((be32_to_cpu(req_msg->offset40) & 0xF8) >> 3); +} + +static inline void cm_req_set_remote_resp_timeout(struct cm_req_msg *req_msg, + u8 resp_timeout) +{ + req_msg->offset40 = cpu_to_be32((resp_timeout << 3) | + (be32_to_cpu(req_msg->offset40) & + 0xFFFFFF07)); +} + +static inline enum ib_qp_type cm_req_get_qp_type(struct cm_req_msg *req_msg) +{ + u8 transport_type = (u8) (be32_to_cpu(req_msg->offset40) & 0x06) >> 1; + switch(transport_type) { + case 0: return IB_QPT_RC; + case 1: return IB_QPT_UC; + default: return 0; + } +} + +static inline void cm_req_set_qp_type(struct cm_req_msg *req_msg, + enum ib_qp_type qp_type) +{ + switch(qp_type) { + case IB_QPT_UC: + req_msg->offset40 = cpu_to_be32((be32_to_cpu( + req_msg->offset40) & + 0xFFFFFFF9) | 0x2); + default: + req_msg->offset40 = cpu_to_be32(be32_to_cpu( + req_msg->offset40) & + 0xFFFFFFF9); + } +} + +static inline u8 cm_req_get_flow_ctrl(struct cm_req_msg *req_msg) +{ + return be32_to_cpu(req_msg->offset40) & 0x1; +} + +static inline void cm_req_set_flow_ctrl(struct cm_req_msg *req_msg, + u8 flow_ctrl) +{ + req_msg->offset40 = cpu_to_be32((flow_ctrl & 0x1) | + (be32_to_cpu(req_msg->offset40) & + 0xFFFFFFFE)); +} + +static inline u32 cm_req_get_starting_psn(struct cm_req_msg *req_msg) +{ + return be32_to_cpu(req_msg->offset44) >> 8; +} + +static inline void cm_req_set_starting_psn(struct cm_req_msg *req_msg, + u32 starting_psn) +{ + req_msg->offset44 = cpu_to_be32((be32_to_cpu(starting_psn) << 8) | + (be32_to_cpu(req_msg->offset44) & 0x000000FF)); +} + +static inline u8 cm_req_get_local_resp_timeout(struct cm_req_msg *req_msg) +{ + return (u8) ((be32_to_cpu(req_msg->offset44) & 0xF8) >> 3); +} + +static inline void cm_req_set_local_resp_timeout(struct cm_req_msg *req_msg, + u8 resp_timeout) +{ + req_msg->offset44 = cpu_to_be32((resp_timeout << 3) | + (be32_to_cpu(req_msg->offset44) & 0xFFFFFF07)); +} + +static inline u8 cm_req_get_retry_count(struct cm_req_msg *req_msg) +{ + return (u8) (be32_to_cpu(req_msg->offset44) & 0x7); +} + +static inline void cm_req_set_retry_count(struct cm_req_msg *req_msg, + u8 retry_count) +{ + req_msg->offset44 = cpu_to_be32((retry_count & 0x7) | + (be32_to_cpu(req_msg->offset44) & 0xFFFFFFF8)); +} + +static inline u8 cm_req_get_mtu(struct cm_req_msg *req_msg) +{ + return req_msg->offset50 >> 4; +} + +static inline void cm_req_set_path_mtu(struct cm_req_msg *req_msg, u8 path_mtu) +{ + req_msg->offset50 = (u8) ((req_msg->offset50 & 0xF) | (path_mtu << 4)); +} + +static inline u8 cm_req_get_rnr_retry_count(struct cm_req_msg *req_msg) +{ + return req_msg->offset50 & 0x7; +} + +static inline void cm_req_set_rnr_retry_count(struct cm_req_msg *req_msg, + u8 rnr_retry_count) +{ + req_msg->offset50 = (u8) ((req_msg->offset50 & 0xF8) | + (rnr_retry_count & 0x7)); +} + +static inline u8 cm_req_get_max_cm_retries(struct cm_req_msg *req_msg) +{ + return req_msg->offset51 >> 4; +} + +static inline void cm_req_set_max_cm_retries(struct cm_req_msg *req_msg, + u8 retries) +{ + req_msg->offset51 = (u8) ((req_msg->offset51 & 0xF) | (retries << 4)); +} + +static inline u8 cm_req_get_srq(struct cm_req_msg *req_msg) +{ + return (req_msg->offset51 & 0x8) >> 3; +} + +static inline void cm_req_set_srq(struct cm_req_msg *req_msg, u8 srq) +{ + req_msg->offset51 = (u8) ((req_msg->offset51 & 0xF7) | + ((srq & 0x1) << 3)); +} + +static inline u32 cm_req_get_primary_flow_label(struct cm_req_msg *req_msg) +{ + return cpu_to_be32((be32_to_cpu(req_msg->primary_offset88) >> 12)); +} + +static inline void cm_req_set_primary_flow_label(struct cm_req_msg *req_msg, + u32 flow_label) +{ + req_msg->primary_offset88 = cpu_to_be32( + (be32_to_cpu(req_msg->primary_offset88) & + 0x00000FFF) | + (be32_to_cpu(flow_label) << 12)); +} + +static inline u8 cm_req_get_primary_packet_rate(struct cm_req_msg *req_msg) +{ + return (u8) (be32_to_cpu(req_msg->primary_offset88) & 0x3F); +} + +static inline void cm_req_set_primary_packet_rate(struct cm_req_msg *req_msg, + u8 rate) +{ + req_msg->primary_offset88 = cpu_to_be32( + (be32_to_cpu(req_msg->primary_offset88) & + 0xFFFFFFC0) | (rate & 0x3F)); +} + +static inline u8 cm_req_get_primary_sl(struct cm_req_msg *req_msg) +{ + return (u8) (req_msg->primary_offset94 >> 4); +} + +static inline void cm_req_set_primary_sl(struct cm_req_msg *req_msg, u8 sl) +{ + req_msg->primary_offset94 = (u8) ((req_msg->primary_offset94 & 0x0F) | + (sl << 4)); +} + +static inline u8 cm_req_get_primary_subnet_local(struct cm_req_msg *req_msg) +{ + return (u8) ((req_msg->primary_offset94 & 0x08) >> 3); +} + +static inline void cm_req_set_primary_subnet_local(struct cm_req_msg *req_msg, + u8 subnet_local) +{ + req_msg->primary_offset94 = (u8) ((req_msg->primary_offset94 & 0xF7) | + ((subnet_local & 0x1) << 3)); +} + +static inline u8 cm_req_get_primary_local_ack_timeout(struct cm_req_msg *req_msg) +{ + return (u8) (req_msg->primary_offset95 >> 3); +} + +static inline void cm_req_set_primary_local_ack_timeout(struct cm_req_msg *req_msg, + u8 local_ack_timeout) +{ + req_msg->primary_offset95 = (u8) ((req_msg->primary_offset95 & 0x07) | + (local_ack_timeout << 3)); +} + +static inline u32 cm_req_get_alt_flow_label(struct cm_req_msg *req_msg) +{ + return cpu_to_be32((be32_to_cpu(req_msg->alt_offset132) >> 12)); +} + +static inline void cm_req_set_alt_flow_label(struct cm_req_msg *req_msg, + u32 flow_label) +{ + req_msg->alt_offset132 = cpu_to_be32( + (be32_to_cpu(req_msg->alt_offset132) & + 0x00000FFF) | + (be32_to_cpu(flow_label) << 12)); +} + +static inline u8 cm_req_get_alt_packet_rate(struct cm_req_msg *req_msg) +{ + return (u8) (be32_to_cpu(req_msg->alt_offset132) & 0x3F); +} + +static inline void cm_req_set_alt_packet_rate(struct cm_req_msg *req_msg, + u8 rate) +{ + req_msg->alt_offset132 = cpu_to_be32( + (be32_to_cpu(req_msg->alt_offset132) & + 0xFFFFFFC0) | (rate & 0x3F)); +} + +static inline u8 cm_req_get_alt_sl(struct cm_req_msg *req_msg) +{ + return (u8) (req_msg->alt_offset138 >> 4); +} + +static inline void cm_req_set_alt_sl(struct cm_req_msg *req_msg, u8 sl) +{ + req_msg->alt_offset138 = (u8) ((req_msg->alt_offset138 & 0x0F) | + (sl << 4)); +} + +static inline u8 cm_req_get_alt_subnet_local(struct cm_req_msg *req_msg) +{ + return (u8) ((req_msg->alt_offset138 & 0x08) >> 3); +} + +static inline void cm_req_set_alt_subnet_local(struct cm_req_msg *req_msg, + u8 subnet_local) +{ + req_msg->alt_offset138 = (u8) ((req_msg->alt_offset138 & 0xF7) | + ((subnet_local & 0x1) << 3)); +} + +static inline u8 cm_req_get_alt_local_ack_timeout(struct cm_req_msg *req_msg) +{ + return (u8) (req_msg->alt_offset139 >> 3); +} + +static inline void cm_req_set_alt_local_ack_timeout(struct cm_req_msg *req_msg, + u8 local_ack_timeout) +{ + req_msg->alt_offset139 = (u8) ((req_msg->alt_offset139 & 0x07) | + (local_ack_timeout << 3)); +} + +/* Message REJected or MRAed */ +enum cm_msg_response { + CM_MSG_RESPONSE_REQ = 0x0, + CM_MSG_RESPONSE_REP = 0x1, + CM_MSG_RESPONSE_OTHER = 0x2 +}; + + struct cm_mra_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + /* message MRAed:2, rsvd:6 */ + u8 offset8; + /* service timeout:5, rsvd:3 */ + u8 offset9; + + u8 private_data[IB_CM_MRA_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +static inline u8 cm_mra_get_msg_mraed(struct cm_mra_msg *mra_msg) +{ + return (u8) (mra_msg->offset8 >> 6); +} + +static inline void cm_mra_set_msg_mraed(struct cm_mra_msg *mra_msg, u8 msg) +{ + mra_msg->offset8 = (u8) ((mra_msg->offset8 & 0x3F) | (msg << 6)); +} + +static inline u8 cm_mra_get_service_timeout(struct cm_mra_msg *mra_msg) +{ + return (u8) (mra_msg->offset9 >> 3); +} + +static inline void cm_mra_set_service_timeout(struct cm_mra_msg *mra_msg, + u8 service_timeout) +{ + mra_msg->offset9 = (u8) ((mra_msg->offset9 & 0x07) | + (service_timeout << 3)); +} + +struct cm_rej_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + /* message REJected:2, rsvd:6 */ + u8 offset8; + /* reject info length:7, rsvd:1. */ + u8 offset9; + u16 reason; + u8 ari[IB_CM_REJ_ARI_LENGTH]; + + u8 private_data[IB_CM_REJ_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +static inline u8 cm_rej_get_msg_rejected(struct cm_rej_msg *rej_msg) +{ + return (u8) (rej_msg->offset8 >> 6); +} + +static inline void cm_rej_set_msg_rejected(struct cm_rej_msg *rej_msg, u8 msg) +{ + rej_msg->offset8 = (u8) ((rej_msg->offset8 & 0x3F) | (msg << 6)); +} + +static inline u8 cm_rej_get_reject_info_len(struct cm_rej_msg *rej_msg) +{ + return (u8) (rej_msg->offset9 >> 1); +} + +static inline void cm_rej_set_reject_info_len(struct cm_rej_msg *rej_msg, + u8 len) +{ + rej_msg->offset9 = (u8) ((rej_msg->offset9 & 0x1) | (len << 1)); +} + +struct cm_rep_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + u32 local_qkey; + /* local QPN:24, rsvd:8 */ + u32 offset12; + /* local EECN:24, rsvd:8 */ + u32 offset16; + /* starting PSN:24 rsvd:8 */ + u32 offset20; + u8 resp_resources; + u8 initiator_depth; + /* target ACK delay:5, failover accepted:2, end-to-end flow control:1 */ + u8 offset26; + /* RNR retry count:3, SRQ:1, rsvd:5 */ + u8 offset27; + u64 local_ca_guid; + + u8 private_data[IB_CM_REP_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +static inline u32 cm_rep_get_local_qpn(struct cm_rep_msg *rep_msg) +{ + return cpu_to_be32(be32_to_cpu(rep_msg->offset12) >> 8); +} + +static inline void cm_rep_set_local_qpn(struct cm_rep_msg *rep_msg, u32 qpn) +{ + rep_msg->offset12 = cpu_to_be32((be32_to_cpu(qpn) << 8) | + (be32_to_cpu(rep_msg->offset12) & 0x000000FF)); +} + +static inline u32 cm_rep_get_starting_psn(struct cm_rep_msg *rep_msg) +{ + return cpu_to_be32(be32_to_cpu(rep_msg->offset20) >> 8); +} + +static inline void cm_rep_set_starting_psn(struct cm_rep_msg *rep_msg, + u32 starting_psn) +{ + rep_msg->offset20 = cpu_to_be32((be32_to_cpu(starting_psn) << 8) | + (be32_to_cpu(rep_msg->offset20) & 0x000000FF)); +} + +static inline u8 cm_rep_get_target_ack_delay(struct cm_rep_msg *rep_msg) +{ + return (u8) (rep_msg->offset26 >> 3); +} + +static inline void cm_rep_set_target_ack_delay(struct cm_rep_msg *rep_msg, + u8 target_ack_delay) +{ + rep_msg->offset26 = (u8) ((rep_msg->offset26 & 0x07) | + (target_ack_delay << 3)); +} + +static inline u8 cm_rep_get_failover(struct cm_rep_msg *rep_msg) +{ + return (u8) ((rep_msg->offset26 & 0x06) >> 1); +} + +static inline void cm_rep_set_failover(struct cm_rep_msg *rep_msg, u8 failover) +{ + rep_msg->offset26 = (u8) ((rep_msg->offset26 & 0xF9) | + ((failover & 0x3) << 1)); +} + +static inline u8 cm_rep_get_flow_ctrl(struct cm_rep_msg *rep_msg) +{ + return (u8) (rep_msg->offset26 & 0x01); +} + +static inline void cm_rep_set_flow_ctrl(struct cm_rep_msg *rep_msg, + u8 flow_ctrl) +{ + rep_msg->offset26 = (u8) ((rep_msg->offset26 & 0xFE) | + (flow_ctrl & 0x1)); +} + +static inline u8 cm_rep_get_rnr_retry_count(struct cm_rep_msg *rep_msg) +{ + return (u8) (rep_msg->offset27 >> 5); +} + +static inline void cm_rep_set_rnr_retry_count(struct cm_rep_msg *rep_msg, + u8 rnr_retry_count) +{ + rep_msg->offset27 = (u8) ((rep_msg->offset27 & 0x1F) | + (rnr_retry_count << 5)); +} + +static inline u8 cm_rep_get_srq(struct cm_rep_msg *rep_msg) +{ + return (u8) ((rep_msg->offset27 >> 4) & 0x1); +} + +static inline void cm_rep_set_srq(struct cm_rep_msg *rep_msg, u8 srq) +{ + rep_msg->offset27 = (u8) ((rep_msg->offset27 & 0xEF) | + ((srq & 0x1) << 4)); +} + +struct cm_rtu_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + + u8 private_data[IB_CM_RTU_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +struct cm_dreq_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + /* remote QPN/EECN:24, rsvd:8 */ + u32 offset8; + + u8 private_data[IB_CM_DREQ_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +static inline u32 cm_dreq_get_remote_qpn(struct cm_dreq_msg *dreq_msg) +{ + return cpu_to_be32(be32_to_cpu(dreq_msg->offset8) >> 8); +} + +static inline void cm_dreq_set_remote_qpn(struct cm_dreq_msg *dreq_msg, u32 qpn) +{ + dreq_msg->offset8 = cpu_to_be32((be32_to_cpu(qpn) << 8) | + (be32_to_cpu(dreq_msg->offset8) & 0x000000FF)); +} + +struct cm_drep_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + + u8 private_data[IB_CM_DREP_PRIVATE_DATA_SIZE]; + +} __attribute__ ((packed)); + +struct cm_lap_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + + u32 rsvd8; + /* remote QPN/EECN:24, remote CM response timeout:5, rsvd:3 */ + u32 offset12; + u32 rsvd16; + + u16 alt_local_lid; + u16 alt_remote_lid; + union ib_gid alt_local_gid; + union ib_gid alt_remote_gid; + /* flow label:20, rsvd:4, traffic class:8 */ + u32 offset56; + u8 alt_hop_limit; + /* rsvd:2, packet rate:6 */ + uint8_t offset61; + /* SL:4, subnet local:1, rsvd:3 */ + uint8_t offset62; + /* local ACK timeout:5, rsvd:3 */ + uint8_t offset63; + + u8 private_data[IB_CM_LAP_PRIVATE_DATA_SIZE]; +} __attribute__ ((packed)); + +static inline u32 cm_lap_get_remote_qpn(struct cm_lap_msg *lap_msg) +{ + return cpu_to_be32(be32_to_cpu(lap_msg->offset12) >> 8); +} + +static inline void cm_lap_set_remote_qpn(struct cm_lap_msg *lap_msg, u32 qpn) +{ + lap_msg->offset12 = cpu_to_be32((be32_to_cpu(qpn) << 8) | + (be32_to_cpu(lap_msg->offset12) & + 0x000000FF)); +} + +static inline u8 cm_lap_get_remote_resp_timeout(struct cm_lap_msg *lap_msg) +{ + return (u8) ((be32_to_cpu(lap_msg->offset12) & 0xF8) >> 3); +} + +static inline void cm_lap_set_remote_resp_timeout(struct cm_lap_msg *lap_msg, + u8 resp_timeout) +{ + lap_msg->offset12 = cpu_to_be32((resp_timeout << 3) | + (be32_to_cpu(lap_msg->offset12) & + 0xFFFFFF07)); +} + +static inline u32 cm_lap_get_flow_label(struct cm_lap_msg *lap_msg) +{ + return be32_to_cpu(lap_msg->offset56) >> 12; +} + +static inline void cm_lap_set_flow_label(struct cm_lap_msg *lap_msg, + u32 flow_label) +{ + lap_msg->offset56 = cpu_to_be32((flow_label << 12) | + (be32_to_cpu(lap_msg->offset56) & + 0x00000FFF)); +} + +static inline u8 cm_lap_get_traffic_class(struct cm_lap_msg *lap_msg) +{ + return (u8) be32_to_cpu(lap_msg->offset56); +} + +static inline void cm_lap_set_traffic_class(struct cm_lap_msg *lap_msg, + u8 traffic_class) +{ + lap_msg->offset56 = cpu_to_be32(traffic_class | + (be32_to_cpu(lap_msg->offset56) & + 0xFFFFFF00)); +} + +static inline u8 cm_lap_get_packet_rate(struct cm_lap_msg *lap_msg) +{ + return lap_msg->offset61 & 0x3F; +} + +static inline void cm_lap_set_packet_rate(struct cm_lap_msg *lap_msg, + u8 packet_rate) +{ + lap_msg->offset61 = (packet_rate & 0x3F) | (lap_msg->offset61 & 0xC0); +} + +static inline u8 cm_lap_get_sl(struct cm_lap_msg *lap_msg) +{ + return lap_msg->offset62 >> 4; +} + +static inline void cm_lap_set_sl(struct cm_lap_msg *lap_msg, u8 sl) +{ + lap_msg->offset62 = (sl << 4) | (lap_msg->offset62 & 0x0F); +} + +static inline u8 cm_lap_get_subnet_local(struct cm_lap_msg *lap_msg) +{ + return (lap_msg->offset62 >> 3) & 0x1; +} + +static inline void cm_lap_set_subnet_local(struct cm_lap_msg *lap_msg, + u8 subnet_local) +{ + lap_msg->offset62 = ((subnet_local & 0x1) << 3) | + (lap_msg->offset61 & 0xF7); +} +static inline u8 cm_lap_get_local_ack_timeout(struct cm_lap_msg *lap_msg) +{ + return lap_msg->offset63 >> 3; +} + +static inline void cm_lap_set_local_ack_timeout(struct cm_lap_msg *lap_msg, + u8 local_ack_timeout) +{ + lap_msg->offset63 = (local_ack_timeout << 3) | + (lap_msg->offset63 & 0x07); +} + +struct cm_apr_msg { + struct ib_mad_hdr hdr; + + u32 local_comm_id; + u32 remote_comm_id; + + u8 info_length; + u8 ap_status; + u8 info[IB_CM_APR_INFO_LENGTH]; + + u8 private_data[IB_CM_APR_PRIVATE_DATA_SIZE]; +} __attribute__ ((packed)); + +struct cm_sidr_req_msg { + struct ib_mad_hdr hdr; + + u32 request_id; + u16 pkey; + u16 rsvd; + u64 service_id; + + u8 private_data[IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE]; +} __attribute__ ((packed)); + +struct cm_sidr_rep_msg { + struct ib_mad_hdr hdr; + + u32 request_id; + u8 status; + u8 info_length; + u16 rsvd; + /* QPN:24, rsvd:8 */ + u32 offset8; + u64 service_id; + u32 qkey; + u8 info[IB_CM_SIDR_REP_INFO_LENGTH]; + + u8 private_data[IB_CM_SIDR_REP_PRIVATE_DATA_SIZE]; +} __attribute__ ((packed)); + +static inline u32 cm_sidr_rep_get_qpn(struct cm_sidr_rep_msg *sidr_rep_msg) +{ + return cpu_to_be32(be32_to_cpu(sidr_rep_msg->offset8) >> 8); +} + +static inline void cm_sidr_rep_set_qpn(struct cm_sidr_rep_msg *sidr_rep_msg, + u32 qpn) +{ + sidr_rep_msg->offset8 = cpu_to_be32((be32_to_cpu(qpn) << 8) | + (be32_to_cpu(sidr_rep_msg->offset8) & + 0x000000FF)); +} + +#endif /* CM_MSGS_H */ From roland at topspin.com Mon Jan 17 12:39:27 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 17 Jan 2005 12:39:27 -0800 Subject: [openib-general] [PATCH] Initial CM implementation In-Reply-To: <20050117131616.3539301c.mshefty@ichips.intel.com> (Sean Hefty's message of "Mon, 17 Jan 2005 13:16:16 -0800") References: <20050117131616.3539301c.mshefty@ichips.intel.com> Message-ID: <52vf9vg58g.fsf@topspin.com> Just a quick read through, more comments later: int local_cm_response_timeout:5; int flow_control:1; These should be "unsigned," not "int." A signed 1-bit int doesn't make much sense, and I think you'll probably run into sign trouble if someone passes a local_cm_response_timeout of 20 or something for the 5-bit field. In cm_send_handler(), you have: case IB_WC_RESP_TIMEOUT_ERR: cm_process_send_timeout(msg); break; but can this ever happen? I thought that the MAD layer always treated CM MADs as unsolicited which means that responses are not matched with requests so timeouts don't happen. Or am I misunderstanding the MAD layer semantics? I see a lot of setting of state to TIMEWAIT, but I don't see where the TIMEWAIT timeout happens. TIMEWAIT handling should probably be done using the same cm.wq workqueue as receive handling goes through -- this eliminates the problem of connection setup starving timewait reaping that I mentioned earlier. - R. From rminnich at lanl.gov Mon Jan 17 12:42:24 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Mon, 17 Jan 2005 13:42:24 -0700 (MST) Subject: [openib-general] got ipoib up once but not twice :-) In-Reply-To: <1105791832.4649.5315.camel@localhost.localdomain> References: <1105733491.4649.4281.camel@localhost.localdomain> <52wtufjr8v.fsf@topspin.com> <1105791832.4649.5315.camel@localhost.localdomain> Message-ID: On Sat, 15 Jan 2005, Hal Rosenstock wrote: > How many 96 port switches ? I'd be curious how long it does take to > initialize this (as I do not have access to a large cluster). Also, > right now I'm pretty sure things are being done without pipelining on so > it is likely slower. More on this later. > Currently, there are three root switches and 6 'leaf' switches, the roots aggregate the leafs, so we get total of 288 ports. It's all pretty awkward as the IB switches we have were never designed for hierarcy. ron From mst at mellanox.co.il Mon Jan 17 13:05:04 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 17 Jan 2005 23:05:04 +0200 Subject: [openib-general] mstflint on sparc - things to test Message-ID: <20050117210504.GA14844@mellanox.co.il> Hi, Tom! So far configuration cycles work but not memory access. We *really* want memory access, though, not only for performance but also for atomicity and for robustness reasons. In case you have some time for this, and to avoid confusion, I attach here description of 3 things I wanted to test to try and clarify the issue: - run test2 - same as test1 changing the device file to the file under /proc/bus/pci - run mread 0xf0014 - test pci memory is enabled with setpci -s COMMAND Thanks, mst -------------- next part -------------- An embedded message was scrubbed... From: "Michael S. Tsirkin" Subject: [openib-general] mstflint - test2 Date: Sun, 16 Jan 2005 10:15:00 +0200 Size: 4335 URL: -------------- next part -------------- An embedded message was scrubbed... From: "Michael S. Tsirkin" Subject: Re: [openib-general] mstflint - test2 Date: Sun, 16 Jan 2005 12:52:54 +0200 Size: 4180 URL: -------------- next part -------------- An embedded message was scrubbed... From: "Michael S. Tsirkin" Subject: Re: [openib-general] Re: mmap(/dev/mem) causing sigbus Date: Sun, 16 Jan 2005 18:26:57 +0200 Size: 3674 URL: From sean.hefty at intel.com Mon Jan 17 14:48:40 2005 From: sean.hefty at intel.com (Sean Hefty) Date: Mon, 17 Jan 2005 14:48:40 -0800 Subject: [openib-general] [PATCH] Initial CM implementation In-Reply-To: <52vf9vg58g.fsf@topspin.com> Message-ID: >Just a quick read through, more comments later: > > int local_cm_response_timeout:5; > int flow_control:1; > >These should be "unsigned," not "int." A signed 1-bit int doesn't >make much sense, and I think you'll probably run into sign trouble if >someone passes a local_cm_response_timeout of 20 or something for the >5-bit field. I'll change these to unsigned. >In cm_send_handler(), you have: > > case IB_WC_RESP_TIMEOUT_ERR: > cm_process_send_timeout(msg); > break; > >but can this ever happen? I thought that the MAD layer always treated >CM MADs as unsolicited which means that responses are not matched with >requests so timeouts don't happen. Or am I misunderstanding the MAD >layer semantics? My intent is to use the MAD layer timeout and retry code. E.g. the CM will send a REQ. The MAD layer will retry the REQ for the CM. Once a REP is received, the CM will cancel the REQ. So, the CM will do the response matching, but the timeout/retries are done by the MAD code. There's a potential race between receiving a response and receiving a timeout. I have a way to handle it, but I need to go back and see if I set the right fields to do so. >I see a lot of setting of state to TIMEWAIT, but I don't see where the >TIMEWAIT timeout happens. TIMEWAIT is a big todo. My intent is to use the same work queue that receive handling uses. Thanks for the comments. - Sean From tduffy at sun.com Mon Jan 17 16:12:22 2005 From: tduffy at sun.com (Tom Duffy) Date: Mon, 17 Jan 2005 16:12:22 -0800 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1105993644.4646.207.camel@localhost.localdomain> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> Message-ID: <1106007142.13791.23.camel@duffman> [ putting back on openib-general list ] On Mon, 2005-01-17 at 15:27 -0500, Hal Rosenstock wrote: > On Mon, 2005-01-17 at 14:47, Tom Duffy wrote: > > On Sat, 2005-01-15 at 07:30 -0500, Hal Rosenstock wrote: > > > I will have another patch later today which may actually get this to > > > work now. I forgot (hopefully) one last thing. > > > > After using the latest OpenSM, I am getting a hang on Solaris when > > running devfsadm -C. This is new behavior. There are no debug outputs > > when running at debug level 2, so I bumped it up to 3 and got this: > > > > [root at dongon ~]# devfsadm -C > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_sa_session_open: opening session, guid = 0002c901097651d1, prefix = 0000000000000003 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_sa_session_open(): port exists > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_saa_impl_add_client: num_registered_clients 2 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_sa_session_open: clientp = 30001e97068, subnetp = 300024b0c50 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_saa_add_event_subscriber: Adding client to event subscriber list, client = 0x1e97068 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_sa_access_start() enter. attr_id = 0x35, access_type = 0x0, comp_mask = 0000000000001808 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_saa_impl_check_sa_support: cap_mask = 0x202, attr_id = 0x35 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_saa_impl_check_sa_support() exiting, attr_supported = 1 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_populate_ud_dest_list(): Count not below low water mark > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_saa_impl_init_msg: Sending MAD, class = 0x3, method = 0x12, attr_id = 0x35 > That's SA GetTable for PathRecords of some sort. > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_saa_impl_get_attr_id_length(): attr_id: 0x35 size 64 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_saa_impl_init_msg: Packed payload successfully, attr_id = 0x35, length = 64 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_saa_impl_init_msg() exiting ibmf_status = 0 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_msg_transport(): Added message, msgp = 0x30003968200, class = 0x3, method = 0x12, attributeID = 0x35 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_msg_transport(): msgp = 0x30003968200, TID = 0x97651d100000005, transp_op_flags = 0x2 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_msg_transport(): msgp = 0x30003968200, local_lid = 0x2, remote_lid = 0x1, remote_qpn = 0x1, block = 1 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_msg_transport(): unsetting timer 30003968200 0 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_msg_transport(): blocking for completion, msgp = 0x30003968200 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_find_msg_client(): Found message. Inc ref count, msgp = 0x30003968200, ref_cnt = 0x1 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_do_send_compl(): Sequenced transaction, setting response timer msgp = 30003968200 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_set_timer: setting response timer, interval = 1073745 resp_time 4 round trip time 10624d > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_do_send_cb(): Send callback done. Dec ref count, msg = 30003968200 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_do_recv_cb(): Received MAD, tid = 097651d100000005, class = 0x3, attrID = 0x35, lid = 0x1 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_find_msg(): Comparing to msg, msgp = 0x30003968200, tid = 0x97651d100000005, remote_lid = 0x1, mgmt_class = 0x3 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_find_msg(): Found message. Inc ref count, msgp = 0x30003968200, ref_cnt = 0x1 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_do_recv_cb(): Handling rmpp MAD, tid = 097651d100000005,flags = 0x7 rmpp_type = 1, rmpp_segnum = 0 > This is the SA response of DATA packet indicating First and Last (and Active). > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_do_recv_cb(): first RMPP pkt received, msgimplp = 30003968200 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_do_recv_cb: new resp time received, resp_time 0 > Oops. I forgot about setting RRespTime in the RMPP header too. > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_rmpp_recvr_active_flow(): DATA packet received, processing packet > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_rmpp_recvr_flow_main(): segnum = 0, es = 1, wl = 1 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_rmpp_recvr_flow_main(): Unexpected segment number, discarding packet > I also need to set SegmentNumber (to 1 as this is a First packet) and PayloadLength in the RMPP header for the DATA packet. > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_send_rmpp(): msgp = 0x30003968200, next_seg = 0x0, num_pkts = 0 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_init_send_wqe: msgimplp = 30003968200, rmpp_type = 2, next_seg = 0, num_pkts = 0 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_init_send_wqe: msgimplp = 30003968200, rmpp_type = 2, rmpp_flags = 0x1, rmpp_segnum = 0, pyld_nwl = 5 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_set_timer: setting response timer, interval = 1073742 resp_time 1 round trip time 10624d > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_find_msg_client(): Found message. Inc ref count, msgp = 0x30003968200, ref_cnt = 0x1 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_do_send_compl(): Received send callback for RMPP trans msgp = 30003968200, rmpp_state = 0x3 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_do_send_cb(): Send callback done. Dec ref count, msg = 30003968200 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_do_recv_cb(): Received MAD, tid = 097651d100000005, class = 0x3, attrID = 0x35, lid = 0x1 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_find_msg(): Comparing to msg, msgp = 0x30003968200, tid = 0x97651d100000005, remote_lid = 0x1, mgmt_class = 0x3 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_find_msg(): Found message. Inc ref count, msgp = 0x30003968200, ref_cnt = 0x1 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_do_recv_cb(): Handling rmpp MAD, tid = 097651d100000005,flags = 0x1 rmpp_type = 2, rmpp_segnum = 0 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_do_recv_cb: new resp time received, resp_time 14 > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_rmpp_recvr_active_flow(): ACK packet received, discarding packet > > Jan 17 11:29:25 dongon.SFBay.Sun.COM ibmf: ibmf_i_set_timer: setting response timer, interval = 1090125 resp_time 4000 round trip time 10624d > > Jan 17 11:29:26 dongon.SFBay.Sun.COM ibmf: ibmf_i_send_timeout(): resetting id - 893736 > > Jan 17 11:29:26 dongon.SFBay.Sun.COM ibmf: ibmf_i_send_timeout(): Message not in undefined state, return without processing send timeout, msgp = 0x30003968200 > > > > This hangs now and is unkillable. Never returns. > > > > So, setting the rmpp_version presumably makes Solaris even more confused. > > I forgot about the other fields in the packet that need setting. > > I am not sure whether we are getting deeper into a rat hole yet. Are you > willing to keep going ? Yeah, sure. I'll test any patches you send my way... -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From roland at topspin.com Mon Jan 17 18:08:48 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 17 Jan 2005 18:08:48 -0800 Subject: [openib-general] [PATCH] Initial CM implementation In-Reply-To: (Sean Hefty's message of "Mon, 17 Jan 2005 14:48:40 -0800") References: Message-ID: <52hdlffpzj.fsf@topspin.com> Sean> My intent is to use the MAD layer timeout and retry code. Sean> E.g. the CM will send a REQ. The MAD layer will retry the Sean> REQ for the CM. Once a REP is received, the CM will cancel Sean> the REQ. So, the CM will do the response matching, but the Sean> timeout/retries are done by the MAD code. The MAD layer does retries? Is this new? Also I'm still confused about how the MAD layer will match CM responses with requests. If I'm reading the code correctly, mad.c will always treat CM MADs as unsolicited and never try to match them with a send. - Roland From sean.hefty at intel.com Mon Jan 17 19:01:07 2005 From: sean.hefty at intel.com (Sean Hefty) Date: Mon, 17 Jan 2005 19:01:07 -0800 Subject: [openib-general] [PATCH] Initial CM implementation In-Reply-To: <52hdlffpzj.fsf@topspin.com> Message-ID: >The MAD layer does retries? Is this new? Sorry, I was being confusing. The CM actually issues the retry (see the cm_send_handler). The CM is using the MAD layer to track the timeout. (This seemed easier than the CM tracking the state of the send and timing it out itself, since the MAD layer already provides that functionality.) >Also I'm still confused about how the MAD layer will match CM >responses with requests. If I'm reading the code correctly, mad.c >will always treat CM MADs as unsolicited and never try to match them >with a send. You're reading the code correctly. The MAD layer will hand all CM MADs to the CM. If the CM matches a response to an outstanding send, it cancels the send, then processes the response. So, for example, for REQ or REP messages, the MAD layer will complete the send with: timed out, canceled, or error. For an RTU, the MAD layer will complete the send with: success (no timeout would be given) or error. - Sean From ak at muc.de Mon Jan 17 23:24:12 2005 From: ak at muc.de (Andi Kleen) Date: 18 Jan 2005 08:24:12 +0100 Subject: [openib-general] [PATCH] Convert Infiniband MAD driver to compat/unlocked_ioctl Message-ID: <20050118072412.GC76018@muc.de> Convert MAD driver to compat/unlocked_ioctl. Streamlines the code a bit. Signed-off-by: Andi Kleen diff -u linux-2.6.11-rc1-bk4/drivers/infiniband/core/user_mad.c-o linux-2.6.11-rc1-bk4/drivers/infiniband/core/user_mad.c --- linux-2.6.11-rc1-bk4/drivers/infiniband/core/user_mad.c-o 2005-01-14 10:12:18.000000000 +0100 +++ linux-2.6.11-rc1-bk4/drivers/infiniband/core/user_mad.c 2005-01-18 06:25:23.000000000 +0100 @@ -449,7 +449,7 @@ return ret; } -static int ib_umad_ioctl(struct inode *inode, struct file *filp, +static long ib_umad_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) { switch (cmd) { @@ -506,7 +506,8 @@ .read = ib_umad_read, .write = ib_umad_write, .poll = ib_umad_poll, - .ioctl = ib_umad_ioctl, + .unlocked_ioctl = ib_umad_ioctl, + .compat_ioctl = ib_umad_ioctl, .open = ib_umad_open, .release = ib_umad_close }; @@ -702,17 +703,8 @@ goto out_class; } - /* Our ioctls are 32/64 clean */ - ret = register_ioctl32_conversion(IB_USER_MAD_REGISTER_AGENT, NULL); - ret |= register_ioctl32_conversion(IB_USER_MAD_UNREGISTER_AGENT, NULL); - if (ret) { - printk(KERN_ERR "user_mad: couldn't register ioctl32 conversions\n"); - goto out_client; - } - return 0; -out_client: ib_unregister_client(&umad_client); out_class: @@ -727,8 +719,6 @@ static void __exit ib_umad_cleanup(void) { - unregister_ioctl32_conversion(IB_USER_MAD_REGISTER_AGENT); - unregister_ioctl32_conversion(IB_USER_MAD_UNREGISTER_AGENT); ib_unregister_client(&umad_client); class_unregister(&umad_class); unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS); From mst at mellanox.co.il Tue Jan 18 01:28:53 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 18 Jan 2005 11:28:53 +0200 Subject: [openib-general] [PATCH] Convert Infiniband MAD driver to compat/unlocked_ioctl In-Reply-To: <20050118072412.GC76018@muc.de> References: <20050118072412.GC76018@muc.de> Message-ID: <20050118092853.GB22799@mellanox.co.il> Quoting r. Andi Kleen (ak at muc.de) "[openib-general] [PATCH] Convert Infiniband MAD driver to compat/unlocked_ioctl": > > Convert MAD driver to compat/unlocked_ioctl. Streamlines the code a bit. > > Signed-off-by: Andi Kleen Good, but this would require that people run at least 2.6.11-rc1-bk5 which sounds a bit steep. Maybe check the HAVE_COMPAT_IOCTL macro for now? MST From ak at muc.de Tue Jan 18 01:30:28 2005 From: ak at muc.de (Andi Kleen) Date: 18 Jan 2005 10:30:28 +0100 Subject: [openib-general] [PATCH] Convert Infiniband MAD driver to compat/unlocked_ioctl In-Reply-To: <20050118092853.GB22799@mellanox.co.il> References: <20050118072412.GC76018@muc.de> <20050118092853.GB22799@mellanox.co.il> Message-ID: <20050118093028.GA20002@muc.de> On Tue, Jan 18, 2005 at 11:28:53AM +0200, Michael S. Tsirkin wrote: > > Quoting r. Andi Kleen (ak at muc.de) "[openib-general] [PATCH] Convert Infiniband MAD driver to compat/unlocked_ioctl": > > > > Convert MAD driver to compat/unlocked_ioctl. Streamlines the code a bit. > > > > Signed-off-by: Andi Kleen > > Good, but this would require that people run at least 2.6.11-rc1-bk5 > which sounds a bit steep. Maybe check the HAVE_COMPAT_IOCTL macro for now? Nah, for in tree code we avoid using such macros. You're merged now, you have to follow the rules ;-) -Andi From mst at mellanox.co.il Tue Jan 18 03:20:47 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 18 Jan 2005 13:20:47 +0200 Subject: [openib-general] [PATCH] Convert Infiniband MAD driver to compat/unlocked_ioctl In-Reply-To: <20050118093028.GA20002@muc.de> References: <20050118072412.GC76018@muc.de> <20050118092853.GB22799@mellanox.co.il> <20050118093028.GA20002@muc.de> Message-ID: <20050118112047.GG23127@mellanox.co.il> Quoting r. Andi Kleen (ak at muc.de) "Re: [openib-general] [PATCH] Convert Infiniband MAD driver to compat/unlocked_ioctl": > On Tue, Jan 18, 2005 at 11:28:53AM +0200, Michael S. Tsirkin wrote: > > > > Quoting r. Andi Kleen (ak at muc.de) "[openib-general] [PATCH] Convert Infiniband MAD driver to compat/unlocked_ioctl": > > > > > > Convert MAD driver to compat/unlocked_ioctl. Streamlines the code a bit. > > > > > > Signed-off-by: Andi Kleen > > > > Good, but this would require that people run at least 2.6.11-rc1-bk5 > > which sounds a bit steep. Maybe check the HAVE_COMPAT_IOCTL macro for now? > > Nah, for in tree code we avoid using such macros. You're merged now, you > have to follow the rules ;-) > > -Andi I know. But we are working off the common subversion tree here, so its best to accomodate people. Our rule was to support the last release from kernels.org, its not like we are talking 2.4.18 here. Look, this is actually up to Roland. In my humble option, either this checkin should happen after 2.6.11 is out, or add the ifdef and a comment so that when Roland sends the patch upstream, he'll remember to strip them off. MST From mst at mellanox.co.il Tue Jan 18 05:01:41 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 18 Jan 2005 15:01:41 +0200 Subject: [openib-general] [PATCH] mthca: Test interrupts during initialization In-Reply-To: <20050117171350.GB14425@mellanox.co.il> References: <52k6qcgfje.fsf@topspin.com> <20050117170029.GA14425@mellanox.co.il> <52d5w4gf5e.fsf@topspin.com> <20050117171350.GB14425@mellanox.co.il> Message-ID: <20050118130141.GK23127@mellanox.co.il> Hi, Roland. Quoting r. Michael S. Tsirkin (mst at mellanox.co.il) "Re: [openib-general] [PATCH] mthca: Test interrupts during initialization": > Hello! > Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] [PATCH] mthca: Test interrupts during initialization": > > Michael> If mthca could downgrade gracefully to regular > > Michael> interrupts, the default for msi-x could be changed to 1? > > > > Possibly (although it depends on the precise MSI-X failure mode). > > Also I seem to remember some problems with changing the PCI header > > (ie to enable/disable MSI-X) after SYS_EN, although I can't remember > > exactly what the issue was. > > > > - R. > > You asked the right person :) > You cant do it on tavor, but it will be fine if you > close everything and do system disable. > mst I stand corrected. To disable MSI, it is sufficient to close all EQs, perform the appropriate pci configuration transaction to disable MSI, and then re-create the EQs with interrupt value instead of the MSI value. You do not have to go through system disable. By the way, if you plan to do it, I think you also may want to check the FW revision since older FW revisions had issues with MSI or MSIX. MST From matthew at wil.cx Tue Jan 18 07:03:53 2005 From: matthew at wil.cx (Matthew Wilcox) Date: Tue, 18 Jan 2005 15:03:53 +0000 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <41EC98A9.1040407@conectiva.com.br> References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> Message-ID: <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> On Tue, Jan 18, 2005 at 03:03:37AM -0200, Arnaldo Carvalho de Melo wrote: > I suggest not removing the "finished stuff", just move them to a "finished > as of 2.6.something", as these cases may well come back in the future, say > when something big like infiniband gets merged it can come packed with > those "finished" things 8) Funny you should mention that. drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); *SLAP*. -- "Next the statesmen will invent cheap lies, putting the blame upon the nation that is attacked, and every man will be glad of those conscience-soothing falsities, and will diligently study them, and refuse to examine any refutations of them; and thus he will by and by convince himself that the war is just, and will thank God for the better sleep he enjoys after this process of grotesque self-deception." -- Mark Twain From mst at mellanox.co.il Tue Jan 18 08:17:47 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 18 Jan 2005 18:17:47 +0200 Subject: [openib-general] ip over ib throughtput In-Reply-To: <1104874366.1352.70.camel@localhost> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <20050104211513.GG8522@mellanox.co.il> <1104874366.1352.70.camel@localhost> Message-ID: <20050118161747.GA24070@mellanox.co.il> Hi, Josh, Roland! Quoting r. Josh England (jjengla at sandia.gov) "Re: [openib-general] ip over ib throughtput": > On Tue, 2005-01-04 at 23:15 +0200, Michael S. Tsirkin wrote: > > Quoting r. Josh England (jjengla at sandia.gov) "Re: [openib-general] ip over ib throughtput": > > > I'm seeing about 364 MB/s between 2 PCIe Xeon 3.2GHz boxes using > > > netperf-2.3pl1. > > > > > > -JE > > > > With IP over IB on gen2? Are these x86_64? > > Yeah...gen2, 2.6.10, x86_64, PCIe .... and actually now its up to 420 > MB/s with MSI-X enabled. > > -JE I wander what flags / compilation options do you give netperf? I see numbers up to 310 consistently with MSI-X, although my system is approximately the same as yours. MST From halr at voltaire.com Tue Jan 18 08:41:21 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 18 Jan 2005 11:41:21 -0500 Subject: [openib-general] OpenSM: check MAD response rather than request method when VENDOR_RMPP_FLAGS not defined Message-ID: <1106066481.4665.5.camel@localhost.localdomain> osm_sa_pkey_record.c: In osm_pkey_rec_rcv_process when VENDOR_RMPP_SUPPORT is not defined, check response MAD method rather than request MAD method for GetTable to determine whether to set RMPP type to DATA and RMPP flags Index: osm_sa_pkey_record.c =================================================================== --- osm_sa_pkey_record.c (revision 1550) +++ osm_sa_pkey_record.c (revision 1551) @@ -513,7 +513,7 @@ #ifndef VENDOR_RMPP_SUPPORT /* we support only one packet RMPP - so we will set the first and last flags for gettable */ - if (p_rcvd_mad->method == IB_MAD_METHOD_GETTABLE_RESP) + if (p_resp_sa_mad->method == IB_MAD_METHOD_GETTABLE_RESP) { p_resp_sa_mad->rmpp_type = IB_RMPP_TYPE_DATA; p_resp_sa_mad->rmpp_flags = IB_RMPP_FLAG_FIRST | IB_RMPP_FLAG_LAST | IB_RMPP_FLAG_ACTIVE; From halr at voltaire.com Tue Jan 18 08:48:52 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 18 Jan 2005 11:48:52 -0500 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106007142.13791.23.camel@duffman> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> Message-ID: <1106066576.4665.7.camel@localhost.localdomain> On Mon, 2005-01-17 at 19:12, Tom Duffy wrote: > Yeah, sure. I'll test any patches you send my way... I think I have this now. Please try again. Thanks. -- Hal From roland at topspin.com Tue Jan 18 09:19:40 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 18 Jan 2005 09:19:40 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> (Matthew Wilcox's message of "Tue, 18 Jan 2005 15:03:53 +0000") References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> Message-ID: <52llaqejtf.fsf@topspin.com> Matthew> Funny you should mention that. Matthew> drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); Matthew> drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); Matthew> *SLAP*. ouch ;) What should those uses of yield() be replaced with? The loops are polling for pending work to finish up on an exit path, and don't have any strict timing requirements. cond_resched() seems a bit heavyweight, since we don't need to run for our whole time slice. We could do msleep(0) or msleep(1) but I don't quite see why that's much of an improvement. Thanks, Roland From roland at topspin.com Tue Jan 18 09:21:37 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 18 Jan 2005 09:21:37 -0800 Subject: [openib-general] Re: [PATCH] Convert Infiniband MAD driver to compat/unlocked_ioctl In-Reply-To: <20050118072412.GC76018@muc.de> (Andi Kleen's message of "18 Jan 2005 08:24:12 +0100, Tue, 18 Jan 2005 08:24:12 +0100") References: <20050118072412.GC76018@muc.de> Message-ID: <52hdleejq6.fsf@topspin.com> Thanks, I've been meaning to do this myself. I'll queue it up in our tree. Thanks, Roland From roland at topspin.com Tue Jan 18 09:25:23 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 18 Jan 2005 09:25:23 -0800 Subject: [openib-general] [PATCH] Convert Infiniband MAD driver to compat/unlocked_ioctl In-Reply-To: <20050118112047.GG23127@mellanox.co.il> (Michael S. Tsirkin's message of "Tue, 18 Jan 2005 13:20:47 +0200") References: <20050118072412.GC76018@muc.de> <20050118092853.GB22799@mellanox.co.il> <20050118093028.GA20002@muc.de> <20050118112047.GG23127@mellanox.co.il> Message-ID: <52d5w2ejjw.fsf@topspin.com> Michael> Look, this is actually up to Roland. In my humble Michael> option, either this checkin should happen after 2.6.11 is Michael> out, or add the ifdef and a comment so that when Roland Michael> sends the patch upstream, he'll remember to strip them Michael> off. Yes, I'll add the #ifdefs to subversion but leave them out of the upstream patch. It definitely makes sense to me to get the ioctl cleanup before 2.6.11 is out. (Similarly I want to change ipoib_debugfs to use debugfs) - R. From acme at conectiva.com.br Tue Jan 18 09:34:37 2005 From: acme at conectiva.com.br (Arnaldo Carvalho de Melo) Date: Tue, 18 Jan 2005 15:34:37 -0200 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> Message-ID: <41ED48AD.6090703@conectiva.com.br> Matthew Wilcox escreveu: > On Tue, Jan 18, 2005 at 03:03:37AM -0200, Arnaldo Carvalho de Melo wrote: > >>I suggest not removing the "finished stuff", just move them to a "finished >>as of 2.6.something", as these cases may well come back in the future, say >>when something big like infiniband gets merged it can come packed with >>those "finished" things 8) > > > Funny you should mention that. > > drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); > drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); > > *SLAP*. See? 8) - Arnaldo From roland at topspin.com Tue Jan 18 09:33:47 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 18 Jan 2005 09:33:47 -0800 Subject: [openib-general] [PATCH] IPv6: Add correct padding to IPoIB link addr option Message-ID: <528y6qej5w.fsf@topspin.com> +++ linux-bk/net/ipv6/ndisc.c 2005-01-14 21:20:55.736745091 -0800 @@ -169,12 +169,33 @@ #define NDISC_OPT_SPACE(len) (((len)+2+7)&~7) -static u8 *ndisc_fill_option(u8 *opt, int type, void *data, int data_len) +/* + * Return the padding between the option length and the start of the + * link addr. Currently only IP-over-InfiniBand needs this, although + * if RFC 3831 IPv6-over-Fibre Channel is ever implemented it may + * also need a pad of 2. + */ +static int ndisc_addr_option_pad(unsigned short type) +{ + switch (type) { + case ARPHRD_INFINIBAND: return 2; + default: return 0; + } +} + +static u8 *ndisc_fill_addr_option(u8 *opt, int type, void *data, int data_len, + unsigned short addr_type) { int space = NDISC_OPT_SPACE(data_len); + int pad = ndisc_addr_option_pad(addr_type); opt[0] = type; opt[1] = space>>3; + + memset(opt + 2, 0, pad); + opt += pad; + space -= pad; + memcpy(opt+2, data, data_len); data_len += 2; opt += data_len; @@ -453,7 +474,8 @@ ipv6_addr_copy(&msg->target, solicited_addr); if (inc_opt) - ndisc_fill_option(msg->opt, ND_OPT_TARGET_LL_ADDR, dev->dev_addr, dev->addr_len); + ndisc_fill_addr_option(msg->opt, ND_OPT_TARGET_LL_ADDR, dev->dev_addr, + dev->addr_len, dev->type); /* checksum */ msg->icmph.icmp6_cksum = csum_ipv6_magic(src_addr, daddr, len, @@ -536,7 +558,8 @@ ipv6_addr_copy(&msg->target, solicit); if (send_llinfo) - ndisc_fill_option(msg->opt, ND_OPT_SOURCE_LL_ADDR, dev->dev_addr, dev->addr_len); + ndisc_fill_addr_option(msg->opt, ND_OPT_SOURCE_LL_ADDR, dev->dev_addr, + dev->addr_len, dev->type); /* checksum */ msg->icmph.icmp6_cksum = csum_ipv6_magic(&skb->nh.ipv6h->saddr, @@ -610,7 +633,8 @@ opt = (u8*) (hdr + 1); if (dev->addr_len) - ndisc_fill_option(opt, ND_OPT_SOURCE_LL_ADDR, dev->dev_addr, dev->addr_len); + ndisc_fill_addr_option(opt, ND_OPT_SOURCE_LL_ADDR, dev->dev_addr, + dev->addr_len, dev->type); /* checksum */ hdr->icmp6_cksum = csum_ipv6_magic(&skb->nh.ipv6h->saddr, daddr, len, @@ -717,7 +741,8 @@ } if (ndopts.nd_opts_src_lladdr) { - lladdr = (u8*)(ndopts.nd_opts_src_lladdr + 1); + lladdr = (u8*)(ndopts.nd_opts_src_lladdr + 1) + + ndisc_addr_option_pad(dev->type); lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3; if (lladdrlen != NDISC_OPT_SPACE(dev->addr_len)) { ND_PRINTK2(KERN_WARNING @@ -874,7 +899,8 @@ return; } if (ndopts.nd_opts_tgt_lladdr) { - lladdr = (u8*)(ndopts.nd_opts_tgt_lladdr + 1); + lladdr = (u8*)(ndopts.nd_opts_tgt_lladdr + 1) + + ndisc_addr_option_pad(dev->type); lladdrlen = ndopts.nd_opts_tgt_lladdr->nd_opt_len << 3; if (lladdrlen != NDISC_OPT_SPACE(dev->addr_len)) { ND_PRINTK2(KERN_WARNING @@ -964,7 +990,8 @@ } if (ndopts.nd_opts_src_lladdr) { - lladdr = (u8 *)(ndopts.nd_opts_src_lladdr + 1); + lladdr = (u8 *)(ndopts.nd_opts_src_lladdr + 1) + + ndisc_addr_option_pad(skb->dev->type); lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3; if (lladdrlen != NDISC_OPT_SPACE(skb->dev->addr_len)) goto out; @@ -1130,7 +1157,8 @@ u8 *lladdr = NULL; int lladdrlen; if (ndopts.nd_opts_src_lladdr) { - lladdr = (u8*)((ndopts.nd_opts_src_lladdr)+1); + lladdr = (u8*)((ndopts.nd_opts_src_lladdr)+1) + + ndisc_addr_option_pad(skb->dev->type); lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3; if (lladdrlen != NDISC_OPT_SPACE(skb->dev->addr_len)) { ND_PRINTK2(KERN_WARNING @@ -1250,7 +1278,8 @@ return; } if (ndopts.nd_opts_tgt_lladdr) { - lladdr = (u8*)(ndopts.nd_opts_tgt_lladdr + 1); + lladdr = (u8*)(ndopts.nd_opts_tgt_lladdr + 1) + + ndisc_addr_option_pad(skb->dev->type); lladdrlen = ndopts.nd_opts_tgt_lladdr->nd_opt_len << 3; if (lladdrlen != NDISC_OPT_SPACE(skb->dev->addr_len)) { ND_PRINTK2(KERN_WARNING @@ -1379,7 +1408,8 @@ */ if (dev->addr_len) - opt = ndisc_fill_option(opt, ND_OPT_TARGET_LL_ADDR, neigh->ha, dev->addr_len); + opt = ndisc_fill_addr_option(opt, ND_OPT_TARGET_LL_ADDR, neigh->ha, + dev->addr_len, dev->type); /* * build redirect option and copy skb over to the new packet. From nacc at us.ibm.com Tue Jan 18 09:45:43 2005 From: nacc at us.ibm.com (Nishanth Aravamudan) Date: Tue, 18 Jan 2005 09:45:43 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <52llaqejtf.fsf@topspin.com> References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> Message-ID: <20050118174543.GA3238@us.ibm.com> On Tue, Jan 18, 2005 at 09:19:40AM -0800, Roland Dreier wrote: > Matthew> Funny you should mention that. > > Matthew> drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); > Matthew> drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); > > Matthew> *SLAP*. > > ouch ;) > > What should those uses of yield() be replaced with? The loops are > polling for pending work to finish up on an exit path, and don't have > any strict timing requirements. cond_resched() seems a bit > heavyweight, since we don't need to run for our whole time slice. We > could do msleep(0) or msleep(1) but I don't quite see why that's much > of an improvement. I'm not an expert by any means, but I would *really* appreciate it if you would not call msleep(0). Just because the function currently has the odd behavior of sleeping for an extra jiffy, I don't want anyone to get the idea to call msleep(0) in their drivers! :) It just seems misleading. Call msleep(1) if you are ok with a millisecond delay (or longer). Currently it will sleep for a millisecond + 1 jiffy, but hopefully we will eventually be able to implement accurate delays, in which case it is most important that the intent of the author (IMO masked by msleep(0)) be clear. Thanks, Nish From roland at topspin.com Tue Jan 18 09:49:16 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 18 Jan 2005 09:49:16 -0800 Subject: [openib-general] [PATCH] IPv6: Add correct padding to IPoIB link addr option In-Reply-To: <528y6qej5w.fsf@topspin.com> (Roland Dreier's message of "Tue, 18 Jan 2005 09:33:47 -0800") References: <528y6qej5w.fsf@topspin.com> Message-ID: <524qheeig3.fsf@topspin.com> Sorry, somehow I left out the description of the patch saying why you might want to apply it.... Anand Parthasarathy pointed out that draft-ietf-ipoib-ip-over-infiniband-09.txt says: [DISC] specifies the length of source/target option in number of 8-octets as indicated by a length of '3' above. Since the IPoIB link-layer address is only 20-octet long, two octets of zero MUST be prepended to fill the total option length of 24 octets. The current Linux neighbour discovery code puts the padding after the link address. This patch fixes up ndisc.c to put the padding in the correct place by adding a general ndisc_addr_option_pad() function (which could be used in the future if someone ever implements RFC 3831 IPv6-over-FC or some other encapsulation that requires padding). Signed-off-by: Roland Dreier --- linux-bk.orig/net/ipv6/ndisc.c 2005-01-12 13:27:52.000000000 -0800 +++ linux-bk/net/ipv6/ndisc.c 2005-01-14 21:20:55.736745091 -0800 @@ -169,12 +169,33 @@ #define NDISC_OPT_SPACE(len) (((len)+2+7)&~7) -static u8 *ndisc_fill_option(u8 *opt, int type, void *data, int data_len) +/* + * Return the padding between the option length and the start of the + * link addr. Currently only IP-over-InfiniBand needs this, although + * if RFC 3831 IPv6-over-Fibre Channel is ever implemented it may + * also need a pad of 2. + */ +static int ndisc_addr_option_pad(unsigned short type) +{ + switch (type) { + case ARPHRD_INFINIBAND: return 2; + default: return 0; + } +} + +static u8 *ndisc_fill_addr_option(u8 *opt, int type, void *data, int data_len, + unsigned short addr_type) { int space = NDISC_OPT_SPACE(data_len); + int pad = ndisc_addr_option_pad(addr_type); opt[0] = type; opt[1] = space>>3; + + memset(opt + 2, 0, pad); + opt += pad; + space -= pad; + memcpy(opt+2, data, data_len); data_len += 2; opt += data_len; @@ -453,7 +474,8 @@ ipv6_addr_copy(&msg->target, solicited_addr); if (inc_opt) - ndisc_fill_option(msg->opt, ND_OPT_TARGET_LL_ADDR, dev->dev_addr, dev->addr_len); + ndisc_fill_addr_option(msg->opt, ND_OPT_TARGET_LL_ADDR, dev->dev_addr, + dev->addr_len, dev->type); /* checksum */ msg->icmph.icmp6_cksum = csum_ipv6_magic(src_addr, daddr, len, @@ -536,7 +558,8 @@ ipv6_addr_copy(&msg->target, solicit); if (send_llinfo) - ndisc_fill_option(msg->opt, ND_OPT_SOURCE_LL_ADDR, dev->dev_addr, dev->addr_len); + ndisc_fill_addr_option(msg->opt, ND_OPT_SOURCE_LL_ADDR, dev->dev_addr, + dev->addr_len, dev->type); /* checksum */ msg->icmph.icmp6_cksum = csum_ipv6_magic(&skb->nh.ipv6h->saddr, @@ -610,7 +633,8 @@ opt = (u8*) (hdr + 1); if (dev->addr_len) - ndisc_fill_option(opt, ND_OPT_SOURCE_LL_ADDR, dev->dev_addr, dev->addr_len); + ndisc_fill_addr_option(opt, ND_OPT_SOURCE_LL_ADDR, dev->dev_addr, + dev->addr_len, dev->type); /* checksum */ hdr->icmp6_cksum = csum_ipv6_magic(&skb->nh.ipv6h->saddr, daddr, len, @@ -717,7 +741,8 @@ } if (ndopts.nd_opts_src_lladdr) { - lladdr = (u8*)(ndopts.nd_opts_src_lladdr + 1); + lladdr = (u8*)(ndopts.nd_opts_src_lladdr + 1) + + ndisc_addr_option_pad(dev->type); lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3; if (lladdrlen != NDISC_OPT_SPACE(dev->addr_len)) { ND_PRINTK2(KERN_WARNING @@ -874,7 +899,8 @@ return; } if (ndopts.nd_opts_tgt_lladdr) { - lladdr = (u8*)(ndopts.nd_opts_tgt_lladdr + 1); + lladdr = (u8*)(ndopts.nd_opts_tgt_lladdr + 1) + + ndisc_addr_option_pad(dev->type); lladdrlen = ndopts.nd_opts_tgt_lladdr->nd_opt_len << 3; if (lladdrlen != NDISC_OPT_SPACE(dev->addr_len)) { ND_PRINTK2(KERN_WARNING @@ -964,7 +990,8 @@ } if (ndopts.nd_opts_src_lladdr) { - lladdr = (u8 *)(ndopts.nd_opts_src_lladdr + 1); + lladdr = (u8 *)(ndopts.nd_opts_src_lladdr + 1) + + ndisc_addr_option_pad(skb->dev->type); lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3; if (lladdrlen != NDISC_OPT_SPACE(skb->dev->addr_len)) goto out; @@ -1130,7 +1157,8 @@ u8 *lladdr = NULL; int lladdrlen; if (ndopts.nd_opts_src_lladdr) { - lladdr = (u8*)((ndopts.nd_opts_src_lladdr)+1); + lladdr = (u8*)((ndopts.nd_opts_src_lladdr)+1) + + ndisc_addr_option_pad(skb->dev->type); lladdrlen = ndopts.nd_opts_src_lladdr->nd_opt_len << 3; if (lladdrlen != NDISC_OPT_SPACE(skb->dev->addr_len)) { ND_PRINTK2(KERN_WARNING @@ -1250,7 +1278,8 @@ return; } if (ndopts.nd_opts_tgt_lladdr) { - lladdr = (u8*)(ndopts.nd_opts_tgt_lladdr + 1); + lladdr = (u8*)(ndopts.nd_opts_tgt_lladdr + 1) + + ndisc_addr_option_pad(skb->dev->type); lladdrlen = ndopts.nd_opts_tgt_lladdr->nd_opt_len << 3; if (lladdrlen != NDISC_OPT_SPACE(skb->dev->addr_len)) { ND_PRINTK2(KERN_WARNING @@ -1379,7 +1408,8 @@ */ if (dev->addr_len) - opt = ndisc_fill_option(opt, ND_OPT_TARGET_LL_ADDR, neigh->ha, dev->addr_len); + opt = ndisc_fill_addr_option(opt, ND_OPT_TARGET_LL_ADDR, neigh->ha, + dev->addr_len, dev->type); /* * build redirect option and copy skb over to the new packet. From tduffy at sun.com Tue Jan 18 10:03:15 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 18 Jan 2005 10:03:15 -0800 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106066576.4665.7.camel@localhost.localdomain> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> Message-ID: <1106071395.2045.12.camel@duffman> On Tue, 2005-01-18 at 11:48 -0500, Hal Rosenstock wrote: > I think I have this now. Please try again. Thanks. Got this on the Linux side with the new opensm (revision 1555): ib_mad: MAD received with unsupported base version 0 ib_mad: MAD received with unsupported base version 47 ib_mad: MAD received with unsupported base version 0 ib_mad: MAD received with unsupported base version 109 ib_mad: MAD received with unsupported base version 0 On the Solaris side: Jan 18 10:00:20 dongon.SFBay.Sun.COM ibmf: ibmf_i_rmpp_recvr_term_flow(): Received ACK while in recv_term state for single sided trans, msgp = 0x30003770580 Jan 18 10:00:20 dongon.SFBay.Sun.COM ibmf: ibmf_saa_impl_prepare_response: Bad MAD status, mad_status = 300 -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mst at mellanox.co.il Tue Jan 18 10:05:05 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 18 Jan 2005 20:05:05 +0200 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <52llaqejtf.fsf@topspin.com> References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> Message-ID: <20050118180505.GA24404@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] Re: [KJ] [RFC] TODO file cleanups": > Matthew> Funny you should mention that. > > Matthew> drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); > Matthew> drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); > > Matthew> *SLAP*. > > ouch ;) > > What should those uses of yield() be replaced with? The loops are > polling for pending work to finish up on an exit path, and don't have > any strict timing requirements. cond_resched() seems a bit > heavyweight, since we don't need to run for our whole time slice. We > could do msleep(0) or msleep(1) but I don't quite see why that's much > of an improvement. > > Thanks, > Roland The reason we have this and not just closing the qp is because we dont want to change the qp number, right? May I put in again my proposal to add a "reset cq" verb, which will make it possible to just reset everything when the interface is going down, without polling, arbitrary timeouts and such. I can build up a patch ... MST From roland at topspin.com Tue Jan 18 10:10:43 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 18 Jan 2005 10:10:43 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <20050118180505.GA24404@mellanox.co.il> (Michael S. Tsirkin's message of "Tue, 18 Jan 2005 20:05:05 +0200") References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118180505.GA24404@mellanox.co.il> Message-ID: <52zmz6d2vw.fsf@topspin.com> Michael> May I put in again my proposal to add a "reset cq" verb, Michael> which will make it possible to just reset everything when Michael> the interface is going down, without polling, arbitrary Michael> timeouts and such. I still don't understand how this resolves synchronization with processing that may be in progress on other CPUs, etc. Michael> I can build up a patch ... Perhaps that would be the best way to explain the idea. - R. From mst at mellanox.co.il Tue Jan 18 10:16:40 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 18 Jan 2005 20:16:40 +0200 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <52zmz6d2vw.fsf@topspin.com> References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118180505.GA24404@mellanox.co.il> <52zmz6d2vw.fsf@topspin.com> Message-ID: <20050118181640.GB24404@mellanox.co.il> Hello! Quoting r. Roland Dreier (roland at topspin.com) "Re: [openib-general] Re: [KJ] [RFC] TODO file cleanups": > Michael> May I put in again my proposal to add a "reset cq" verb, > Michael> which will make it possible to just reset everything when > Michael> the interface is going down, without polling, arbitrary > Michael> timeouts and such. > > I still don't understand how this resolves synchronization with > processing that may be in progress on other CPUs, etc. By the way, I was looking at using RCU to reduce locking, also for thing like poll_cq. What do you say to that? > Michael> I can build up a patch ... > > Perhaps that would be the best way to explain the idea. > > - R. okay mst From boas1 at llnl.gov Tue Jan 18 10:25:15 2005 From: boas1 at llnl.gov (Bill Boas) Date: Tue, 18 Jan 2005 10:25:15 -0800 Subject: [openib-general] Registration to-date for Sonoma Workshop Message-ID: <6.1.2.0.2.20050118101241.035bb080@mail-lc.llnl.gov> Please firm up attendance from your companies and customers. Bill Boas bboas at llnl.gov ICCD LLNL, B-113, R-2018 Wk: 925-422-4110 7000 East Ave Cell: 925-337-2224 Livermore, CA 94551 Pgr: 877-203-2248 -------------- next part -------------- A non-text attachment was scrubbed... Name: Registration to Jan18.xml Type: application/xml Size: 162264 bytes Desc: not available URL: From matthew at wil.cx Tue Jan 18 10:26:16 2005 From: matthew at wil.cx (Matthew Wilcox) Date: Tue, 18 Jan 2005 18:26:16 +0000 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <52llaqejtf.fsf@topspin.com> References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> Message-ID: <20050118182616.GS30982@parcelfarce.linux.theplanet.co.uk> On Tue, Jan 18, 2005 at 09:19:40AM -0800, Roland Dreier wrote: > Matthew> Funny you should mention that. > > Matthew> drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); > Matthew> drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); > > Matthew> *SLAP*. > > ouch ;) > > What should those uses of yield() be replaced with? The loops are > polling for pending work to finish up on an exit path, and don't have > any strict timing requirements. cond_resched() seems a bit > heavyweight, since we don't need to run for our whole time slice. We > could do msleep(0) or msleep(1) but I don't quite see why that's much > of an improvement. The semantics of yield() aren't what you, or I, or 2.4 think they should be. Basically, it means "go away, run anything else, even the idle task, don't run me again for many seconds". I think msleep(1) is probably the best for this driver, but I'm not sure exactly what semantics you want. -- "Next the statesmen will invent cheap lies, putting the blame upon the nation that is attacked, and every man will be glad of those conscience-soothing falsities, and will diligently study them, and refuse to examine any refutations of them; and thus he will by and by convince himself that the war is just, and will thank God for the better sleep he enjoys after this process of grotesque self-deception." -- Mark Twain From mst at mellanox.co.il Tue Jan 18 10:29:38 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 18 Jan 2005 20:29:38 +0200 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <20050118182616.GS30982@parcelfarce.linux.theplanet.co.uk> References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118182616.GS30982@parcelfarce.linux.theplanet.co.uk> Message-ID: <20050118182938.GE24404@mellanox.co.il> Hello! Quoting r. Matthew Wilcox (matthew at wil.cx) "Re: [openib-general] Re: [KJ] [RFC] TODO file cleanups": > On Tue, Jan 18, 2005 at 09:19:40AM -0800, Roland Dreier wrote: > > Matthew> Funny you should mention that. > > > > Matthew> drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); > > Matthew> drivers/infiniband/ulp/ipoib/ipoib_ib.c: yield(); > > > > Matthew> *SLAP*. > > > > ouch ;) > > > > What should those uses of yield() be replaced with? The loops are > > polling for pending work to finish up on an exit path, and don't have > > any strict timing requirements. cond_resched() seems a bit > > heavyweight, since we don't need to run for our whole time slice. We > > could do msleep(0) or msleep(1) but I don't quite see why that's much > > of an improvement. > > The semantics of yield() aren't what you, or I, or 2.4 think they should > be. Basically, it means "go away, run anything else, even the idle task, > don't run me again for many seconds". I think msleep(1) is probably the > best for this driver, but I'm not sure exactly what semantics you want. We are brining the interface down, and are polling some locations to check that it is safe to go away. mst From tduffy at sun.com Tue Jan 18 10:32:45 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 18 Jan 2005 10:32:45 -0800 Subject: [openib-general] mstflint - test2 In-Reply-To: <20050116105254.GA4037@mellanox.co.il> References: <1105741527.22751.14.camel@duffman> <20050116081500.GC31298@mellanox.co.il> <20050116105254.GA4037@mellanox.co.il> Message-ID: <1106073165.2045.17.camel@duffman> On Sun, 2005-01-16 at 12:52 +0200, Michael S. Tsirkin wrote: > ./mread /proc/bus/pci/81/00.0 0x000f0014 tat:~# ./mread /proc/bus/pci/0000\:81/00.0 0x000f0014 Read 0x000f0014:0x00a15a44 -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From tduffy at sun.com Tue Jan 18 10:34:38 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 18 Jan 2005 10:34:38 -0800 Subject: [openib-general] Re: mmap(/dev/mem) causing sigbus In-Reply-To: <20050116162657.GD4537@mellanox.co.il> References: <1105741527.22751.14.camel@duffman> <20050116162657.GD4537@mellanox.co.il> Message-ID: <1106073278.2045.19.camel@duffman> On Sun, 2005-01-16 at 18:26 +0200, Michael S. Tsirkin wrote: > Bit 1 is memory space enable, and I see that it is set. > What do you see? tat:~# /usr/bin/setpci -s 0000:81:00.0 COMMAND lspci: -s: Invalid slot number tat:~# /usr/bin/setpci -s 81:00.0 COMMAND 0006 -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From tduffy at sun.com Tue Jan 18 10:40:46 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 18 Jan 2005 10:40:46 -0800 Subject: [openib-general] Re: mstflint on sparc - things to test In-Reply-To: <20050117210504.GA14844@mellanox.co.il> References: <20050117210504.GA14844@mellanox.co.il> Message-ID: <1106073646.2045.22.camel@duffman> On Mon, 2005-01-17 at 23:05 +0200, Michael S. Tsirkin wrote: > - run test2 - same as test1 changing the device file to the file under > /proc/bus/pci And I had to send the ioctl, but after that, I get: tat:~# ./mmap-test value at 0x000f0014 is 0x00a15a44 -tduffy #define BAR0 0x1ff00100000ull #define _XOPEN_SOURCE 500 #define _FILE_OFFSET_BITS 64 #include #include #include #include #include #include int main() { int fd; void *ptr; unsigned value; unsigned long long offset = BAR0; fd = open("/proc/bus/pci/0000:81/00.0",O_RDWR | O_SYNC); if (fd<0) { perror("open"); return 1; } ioctl(fd, PCIIOC_MMAP_IS_MEM); ptr = mmap(NULL, 0x100000, PROT_READ | PROT_WRITE, MAP_SHARED, fd, offset); if ( (! ptr) || (ptr == MAP_FAILED) ) { perror("map"); return 1; } value= *( (unsigned*)(ptr + 0x000f0014) ); printf("value at 0x000f0014 is %#8.8x\n", value); return 0; } -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mst at mellanox.co.il Tue Jan 18 10:42:42 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 18 Jan 2005 20:42:42 +0200 Subject: [openib-general] mstflint - test2 In-Reply-To: <1106073165.2045.17.camel@duffman> References: <1106073165.2045.17.camel@duffman> Message-ID: <20050118184242.GF24404@mellanox.co.il> Hi, Tom! Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] mstflint - test2": > On Sun, 2005-01-16 at 12:52 +0200, Michael S. Tsirkin wrote: > > ./mread /proc/bus/pci/81/00.0 0x000f0014 > > tat:~# ./mread /proc/bus/pci/0000\:81/00.0 0x000f0014 > Read 0x000f0014:0x00a15a44 > > -tduffy Thanks, but this triggers configuration cycles access, and we know they work (flint also works fine this way). What do you see with this: ./mread 81:00.0 0x000f0014 MST From halr at voltaire.com Tue Jan 18 10:41:31 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 18 Jan 2005 13:41:31 -0500 Subject: [openib-general] OpenSM: Fix mad_size of link, path, and service records when VENDOR_RMPP_SUPPORT not define'd Message-ID: <1106073690.4665.187.camel@localhost.localdomain> OpenSM: Fix mad_size of link, path, and service records when VENDOR_RMPP_SUPPORT not define'd Index: osm_sa_path_record.c =================================================================== --- osm_sa_path_record.c (revision 1559) +++ osm_sa_path_record.c (revision 1560) @@ -1250,10 +1250,8 @@ num_rec,trim_num_rec ); num_rec = trim_num_rec; } - mad_size = MAD_BLOCK_SIZE; -#else - mad_size = IB_SA_MAD_HDR_SIZE + num_rec * sizeof(ib_path_rec_t); #endif + mad_size = IB_SA_MAD_HDR_SIZE + num_rec * sizeof(ib_path_rec_t); if( osm_log_is_active( p_rcv->p_log, OSM_LOG_DEBUG ) ) { Index: osm_sa_service_record.c =================================================================== --- osm_sa_service_record.c (revision 1559) +++ osm_sa_service_record.c (revision 1560) @@ -403,10 +403,8 @@ num_rec,trim_num_rec ); num_rec = trim_num_rec; } - mad_size = MAD_BLOCK_SIZE; -#else - mad_size = IB_SA_MAD_HDR_SIZE + num_rec * sizeof(ib_service_record_t); #endif + mad_size = IB_SA_MAD_HDR_SIZE + num_rec * sizeof(ib_service_record_t); if( osm_log_is_active( p_rcv->p_log, OSM_LOG_DEBUG ) ) { Index: osm_sa_link_record.c =================================================================== --- osm_sa_link_record.c (revision 1559) +++ osm_sa_link_record.c (revision 1560) @@ -661,10 +661,8 @@ num_rec,trim_num_rec ); num_rec = trim_num_rec; } - mad_size = MAD_BLOCK_SIZE; -#else - mad_size = IB_SA_MAD_HDR_SIZE + num_rec * sizeof(ib_link_record_t); #endif + mad_size = IB_SA_MAD_HDR_SIZE + num_rec * sizeof(ib_link_record_t); if( osm_log_is_active( p_rcv->p_log, OSM_LOG_DEBUG ) ) { From tduffy at sun.com Tue Jan 18 10:50:40 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 18 Jan 2005 10:50:40 -0800 Subject: [openib-general] mstflint - test2 In-Reply-To: <20050118184242.GF24404@mellanox.co.il> References: <1106073165.2045.17.camel@duffman> <20050118184242.GF24404@mellanox.co.il> Message-ID: <1106074240.2045.29.camel@duffman> On Tue, 2005-01-18 at 20:42 +0200, Michael S. Tsirkin wrote: > What do you see with this: > > ./mread 81:00.0 0x000f0014 tat:~# ./mread 81:00.0 0x000f0014 mopen: No such file or directory tat:~# ./mread 0000:81:00.0 0x000f0014 mopen: No such file or directory Now with my modified mfind: tat:~# ./mread 0000:81:00.0 0x000f0014 Read 0x000f0014:0x00a15a44 -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: mfind.patch Type: text/x-patch Size: 1917 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mst at mellanox.co.il Tue Jan 18 10:56:34 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 18 Jan 2005 20:56:34 +0200 Subject: [openib-general] mstflint - test2 In-Reply-To: <1106074240.2045.29.camel@duffman> References: <1106074240.2045.29.camel@duffman> Message-ID: <20050118185634.GG24404@mellanox.co.il> Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] mstflint - test2": > On Tue, 2005-01-18 at 20:42 +0200, Michael S. Tsirkin wrote: > > What do you see with this: > > > > ./mread 81:00.0 0x000f0014 > > tat:~# ./mread 81:00.0 0x000f0014 > mopen: No such file or directory > > tat:~# ./mread 0000:81:00.0 0x000f0014 > mopen: No such file or directory > Now with my modified mfind: > > tat:~# ./mread 0000:81:00.0 0x000f0014 > Read 0x000f0014:0x00a15a44 > > -tduffy Sorry, I'll apply that . Lets try also mwrite: mread 0000:81:00.0 0x82484 mwrite 0000:81:00.0 0x82484 0x1234 mread 0000:81:00.0 0x82484 MST From roland at topspin.com Tue Jan 18 11:06:19 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 18 Jan 2005 11:06:19 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <20050118181640.GB24404@mellanox.co.il> (Michael S. Tsirkin's message of "Tue, 18 Jan 2005 20:16:40 +0200") References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118180505.GA24404@mellanox.co.il> <52zmz6d2vw.fsf@topspin.com> <20050118181640.GB24404@mellanox.co.il> Message-ID: <52vf9ud0b8.fsf@topspin.com> Michael> By the way, I was looking at using RCU to reduce locking, Michael> also for thing like poll_cq. What do you say to that? Unless it's a dramatic speedup, we should avoid RCU because it seems RCU can only be used with GPL code, not dual GPL/BSD. - Roland From roland at topspin.com Tue Jan 18 11:07:58 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 18 Jan 2005 11:07:58 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <20050118182616.GS30982@parcelfarce.linux.theplanet.co.uk> (Matthew Wilcox's message of "Tue, 18 Jan 2005 18:26:16 +0000") References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118182616.GS30982@parcelfarce.linux.theplanet.co.uk> Message-ID: <52oefmd08h.fsf@topspin.com> Matthew> The semantics of yield() aren't what you, or I, or 2.4 Matthew> think they should be. Basically, it means "go away, run Matthew> anything else, even the idle task, don't run me again for Matthew> many seconds". I think msleep(1) is probably the best Matthew> for this driver, but I'm not sure exactly what semantics Matthew> you want. OK, I'll make that change. Thanks. - Roland From halr at voltaire.com Tue Jan 18 11:06:25 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 18 Jan 2005 14:06:25 -0500 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106071395.2045.12.camel@duffman> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> Message-ID: <1106075184.4665.244.camel@localhost.localdomain> On Tue, 2005-01-18 at 13:03, Tom Duffy wrote: > On Tue, 2005-01-18 at 11:48 -0500, Hal Rosenstock wrote: > > I think I have this now. Please try again. Thanks. > > Got this on the Linux side with the new opensm (revision 1555): > > ib_mad: MAD received with unsupported base version 0 > ib_mad: MAD received with unsupported base version 47 > ib_mad: MAD received with unsupported base version 0 > ib_mad: MAD received with unsupported base version 109 > ib_mad: MAD received with unsupported base version 0 The OpenIB MAD layer is complaining about received MADs with base versions it doesn't understand (other than base version 1). Perhaps are some RMPP MADs sent to it with this not set to 1 ? > On the Solaris side: > > Jan 18 10:00:20 dongon.SFBay.Sun.COM ibmf: ibmf_i_rmpp_recvr_term_flow(): Received ACK while in recv_term state for single sided trans, msgp = 0x30003770580 That's weird. OpenIB wouldn't send any ACKs so I'm not sure what this is. What version were you running with ? I found another issue with certain SA records where the PayloadLength was miscalculated and would confuse the receiver. This was fixed in rev 1560. > Jan 18 10:00:20 dongon.SFBay.Sun.COM ibmf: ibmf_saa_impl_prepare_response: Bad MAD status, mad_status = 300 -- Hal -- Hal From halr at voltaire.com Tue Jan 18 11:09:55 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 18 Jan 2005 14:09:55 -0500 Subject: [openib-general] Nit with osm/include/iba/ib_types.h Message-ID: <1106075395.4665.252.camel@localhost.localdomain> Hi Eitan, It looks to me like IB_RMPP_NO_RESP_TIME in ib_types.h is trying to mask off the RRespTime (high 5 bits) of RMPPFlags byte so it should be #define IB_RMPP_NO_RESP_TIME 0x07 rather than #define IB_RMPP_NO_RESP_TIME 0x1F As this does not appear to be used, this is merely cosmetic right now. -- Hal From roland at topspin.com Tue Jan 18 11:22:07 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 18 Jan 2005 11:22:07 -0800 Subject: [openib-general] [PATCH] Fix capability mask enums in ib_verbs.h In-Reply-To: <52hdljlk65.fsf@topspin.com> (Roland Dreier's message of "Fri, 14 Jan 2005 14:28:50 -0800") References: <52pt07lkhd.fsf@topspin.com> <52hdljlk65.fsf@topspin.com> Message-ID: <528y6qczkw.fsf@topspin.com> Roland> This patch implements setting the IsSM capability bit from Roland> userspace by creating special files /dev/infiniband/issmN Roland> that set the bit when opened and clear it when closed. Roland> Additional opens of the same file will block or return Roland> EAGAIN depending on whether the O_NONBLOCK flag is passed Roland> to open(). The precise API is also described in the patch Roland> to the doc file. OK, no one complained so I just committed this change. - Roland From mshefty at ichips.intel.com Tue Jan 18 12:21:25 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Tue, 18 Jan 2005 12:21:25 -0800 Subject: [openib-general] [PATCH] CM:destroy workqueue on cleanup Message-ID: <20050118122125.65a44a6a.mshefty@ichips.intel.com> Committing patch to destroy the workqueue in the CM on cleanup. - Sean signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1549) +++ core/cm.c (working copy) @@ -2427,6 +2427,8 @@ static void __exit ib_cm_cleanup(void) { + flush_workqueue(cm.wq); + destroy_workqueue(cm.wq); ib_unregister_client(&cm_client); } From mst at mellanox.co.il Tue Jan 18 11:26:35 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 18 Jan 2005 21:26:35 +0200 Subject: [openib-general] mstflint - test3 In-Reply-To: <1106074240.2045.29.camel@duffman> References: <1106074240.2045.29.camel@duffman> Message-ID: <20050118192635.GA14688@mellanox.co.il> OK, I found what looks like an edian-ness bug in flint, but I dont see how could it work on /proc/bus/pci earlier. anyway - could you pls try again now? MST From tduffy at sun.com Tue Jan 18 11:40:30 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 18 Jan 2005 11:40:30 -0800 Subject: [openib-general] mstflint - test2 In-Reply-To: <20050118185634.GG24404@mellanox.co.il> References: <1106074240.2045.29.camel@duffman> <20050118185634.GG24404@mellanox.co.il> Message-ID: <1106077230.2045.34.camel@duffman> On Tue, 2005-01-18 at 20:56 +0200, Michael S. Tsirkin wrote: > Lets try also mwrite: > mread 0000:81:00.0 0x82484 > mwrite 0000:81:00.0 0x82484 0x1234 > mread 0000:81:00.0 0x82484 tat:~# ./mread 0000:81:00.0 0x82484 Read 0x00082484:0x20041223 tat:~# ./mwrite 0000:81:00.0 0x82484 0x1234 tat:~# ./mread 0000:81:00.0 0x82484 Read 0x00082484:0x00001234 looking good... -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mshefty at ichips.intel.com Tue Jan 18 13:27:13 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Tue, 18 Jan 2005 13:27:13 -0800 Subject: [openib-general] [PATCH] CM: fix SIDR cleanup Message-ID: <20050118132713.0c44b2ac.mshefty@ichips.intel.com> Committing patch to: * fix cleanup related to SIDR request/reply when user destroys their communication identifier * remove unused SIDR call * remove call to cleanup SIDR tracking from incorrect state signed-off-by: Sean Hefty - Sean Index: core/cm.c =================================================================== --- core/cm.c (revision 1564) +++ core/cm.c (working copy) @@ -499,31 +499,14 @@ return NULL; } -static struct cm_id_private * cm_find_id_by_remote_sidr(union ib_gid *port_gid, - u32 remote_id) +static void cm_reject_sidr_req(struct cm_id_private *cm_id_priv, + enum ib_cm_sidr_status status) { - struct rb_node *node = cm.remote_sidr_table.rb_node; - struct cm_id_private *cm_id_priv; + struct ib_cm_sidr_rep_param param; - while (node) { - cm_id_priv = rb_entry(node, struct cm_id_private, remote_id_node); - if (remote_id < cm_id_priv->id.remote_id) - node = node->rb_left; - else if (remote_id > cm_id_priv->id.remote_id) - node = node->rb_right; - else { - int cmp; - cmp = memcmp(port_gid, &cm_id_priv->remote_port_gid, - sizeof *port_gid); - if (cmp < 0) - node = node->rb_left; - else if (cmp > 0) - node = node->rb_right; - else - return cm_id_priv; - } - } - return NULL; + memset(¶m, 0, sizeof param); + param.status = status; + ib_send_cm_sidr_rep(&cm_id_priv->id, ¶m); } struct ib_cm_id *ib_create_cm_id(ib_cm_handler cm_handler, @@ -569,11 +552,22 @@ spin_lock_irqsave(&cm.lock, flags2); rb_erase(&cm_id_priv->service_node, &cm.service_table); spin_unlock_irqrestore(&cm.lock, flags2); + cm_id->state = IB_CM_IDLE; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + break; + case IB_CM_SIDR_REQ_SENT: + cm_id->state = IB_CM_IDLE; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + ib_cancel_mad(cm_id_priv->port->mad_agent, + (unsigned long) cm_id_priv->msg); + break; + case IB_CM_SIDR_REQ_RCVD: + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_reject_sidr_req(cm_id_priv, IB_SIDR_REJECT); + break; default: break; } - cm_id->state = IB_CM_IDLE; - spin_unlock_irqrestore(&cm_id_priv->lock, flags); cm_free_id(cm_id->local_id); atomic_dec(&cm_id_priv->refcount); @@ -2161,7 +2155,7 @@ { struct cm_id_private *cm_id_priv; struct ib_cm_event cm_event; - unsigned long flags, flags2; + unsigned long flags; memset(&cm_event, 0, sizeof cm_event); cm_id_priv = msg->cm_id_priv; @@ -2187,9 +2181,6 @@ case IB_CM_SIDR_REQ_SENT: cm_id_priv->id.state = IB_CM_IDLE; cm_event.event = IB_CM_SIDR_REQ_ERROR; - spin_lock_irqsave(&cm.lock, flags2); - rb_erase(&cm_id_priv->remote_id_node, &cm.remote_sidr_table); - spin_unlock_irqrestore(&cm.lock, flags2); break; default: goto discard; From tduffy at sun.com Tue Jan 18 12:48:01 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 18 Jan 2005 12:48:01 -0800 Subject: [openib-general] Re: mstflint - test3 In-Reply-To: <20050118192635.GA14688@mellanox.co.il> References: <1106074240.2045.29.camel@duffman> <20050118192635.GA14688@mellanox.co.il> Message-ID: <1106081281.2045.46.camel@duffman> On Tue, 2005-01-18 at 21:26 +0200, Michael S. Tsirkin wrote: > OK, I found what looks like an edian-ness bug in flint, but I dont see > how could it work on /proc/bus/pci earlier. > anyway - could you pls try again now? tat:~# ./mstflint -d 0000:81:00.0 q Image type: FailSafe Chip rev.: A1 GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 50d0000100c90200 Board ID: guoCC ra Yeah! This is of course with #define CONFIG_USE_DEV_MEM 0. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mst at mellanox.co.il Tue Jan 18 12:51:54 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 18 Jan 2005 22:51:54 +0200 Subject: [openib-general] Re: mstflint - test3 In-Reply-To: <1106081281.2045.46.camel@duffman> References: <1106081281.2045.46.camel@duffman> Message-ID: <20050118205154.GA24938@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: mstflint - test3": > On Tue, 2005-01-18 at 21:26 +0200, Michael S. Tsirkin wrote: > > OK, I found what looks like an edian-ness bug in flint, but I dont see > > how could it work on /proc/bus/pci earlier. > > anyway - could you pls try again now? > > tat:~# ./mstflint -d 0000:81:00.0 q > Image type: FailSafe > Chip rev.: A1 > GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 > 50d0000100c90200 > Board ID: guoCC ra > > Yeah! This is of course with #define CONFIG_USE_DEV_MEM 0. > > -tduffy Great! Now two questions: - does the board ID look right? - does the /proc/bus/pci variant still work? mst From tduffy at sun.com Tue Jan 18 12:59:45 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 18 Jan 2005 12:59:45 -0800 Subject: [openib-general] Re: mstflint - test3 In-Reply-To: <20050118205154.GA24938@mellanox.co.il> References: <1106081281.2045.46.camel@duffman> <20050118205154.GA24938@mellanox.co.il> Message-ID: <1106081985.2045.55.camel@duffman> On Tue, 2005-01-18 at 22:51 +0200, Michael S. Tsirkin wrote: > Now two questions: > - does the board ID look right? I don't think so...does it look right to you? > - does the /proc/bus/pci variant still work? Yes! tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q Image type: FailSafe Chip rev.: A1 GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 50d0000100c90200 Board ID: guoCC ra -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From tduffy at sun.com Tue Jan 18 13:19:22 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 18 Jan 2005 13:19:22 -0800 Subject: [openib-general] ib_umad crash Message-ID: <1106083162.2045.65.camel@duffman> I had just unloaded and reloaded all the kernel modules, and restarted opensm which printed: Error from osm_opensm_bind (0x2A) Then this: [root at flopteron2 bin]# Unable to handle kernel paging request at 0000003164616d7d RIP: {strnlen+12} PML4 31b6c067 PGD 0 Oops: 0000 [1] SMP CPU 2 Modules linked in: ib_umad ib_ipoib ib_sa ib_mthca ib_mad ib_core loop pciehp md5 ipv6 parport_pc lp parport autofs4 nfs lockd sunrpc pcmcia yenta_socket pcmcia_core ext3 jbd video button battery ac uhci_hcd ehci_hcd hw_random i2c_i801 i2c_core e1000 floppy dm_snapshot dm_zero dm_mirror xfs dm_mod mptscsih mptbase sd_mod scsi_mod Pid: 16067, comm: udev Not tainted 2.6.10openib RIP: 0010:[] {strnlen+12} RSP: 0018:000001000a873d60 EFLAGS: 00010297 RAX: 0000003164616d7d RBX: 0000010007cec000 RCX: 000000000000000a RDX: 000001000a873df8 RSI: fffffffffffffffe RDI: 0000003164616d7d RBP: 0000000000000000 R08: 00000000ffffffff R09: 0000000000000000 R10: 0000000000000006 R11: 0000000000000000 R12: 0000010087cebffe R13: 0000003164616d7d R14: 00000000ffffffff R15: 000001000a873dc8 FS: 0000002a9555ede0(0000) GS:ffffffff8044dd00(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b CR2: 0000003164616d7d CR3: 000000003ff10000 CR4: 00000000000006e0 Process udev (pid: 16067, threadinfo 000001000a872000, task 000001000d96b7e0) Stack: ffffffff801ea375 000001000a873e88 ffffffff801d35ca 000000007fffffff 0000010007cec000 ffffffffa01193bb 000001001b58f380 000001003c69e9b0 000001001b58f3a0 000001000a873f50 Call Trace:{vsnprintf+757} {avc_has_perm+90} {sprintf+136} {inode_has_perm+131} {:ib_umad:show_ibdev+0} {:ib_umad:show_ibdev+35} {class_device_attr_show+24} {sysfs_read_file+172} {vfs_read+228} {sys_read+83} {system_call+126} Code: 80 3f 00 90 74 11 48 ff ce 48 ff c0 48 83 fe ff 74 05 80 38 RIP {strnlen+12} RSP <000001000a873d60> CR2: 0000003164616d7d <1>Unable to handle kernel paging request at 0000003164616d7d RIP: {strnlen+12} PML4 2d34a067 PGD 0 Oops: 0000 [2] SMP CPU 3 Modules linked in: ib_umad ib_ipoib ib_sa ib_mthca ib_mad ib_core loop pciehp md5 ipv6 parport_pc lp parport autofs4 nfs lockd sunrpc pcmcia yenta_socket pcmcia_core ext3 jbd video button battery ac uhci_hcd ehci_hcd hw_random i2c_i801 i2c_core e1000 floppy dm_snapshot dm_zero dm_mirror xfs dm_mod mptscsih mptbase sd_mod scsi_mod Pid: 16064, comm: udev Not tainted 2.6.10openib RIP: 0010:[] {strnlen+12} RSP: 0018:0000010035771d60 EFLAGS: 00010297 RAX: 0000003164616d7d RBX: 0000010023f6b000 RCX: 000000000000000a RDX: 0000010035771df8 RSI: fffffffffffffffe RDI: 0000003164616d7d RBP: 0000000000000000 R08: 00000000ffffffff R09: 0000000000000000 R10: 0000000000000006 R11: 0000000000000000 R12: 00000100a3f6affe R13: 0000003164616d7d R14: 00000000ffffffff R15: 0000010035771dc8 FS: 0000002a9555ede0(0000) GS:ffffffff8044dd80(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b CR2: 0000003164616d7d CR3: 000000003ff46000 CR4: 00000000000006e0 Process udev (pid: 16064, threadinfo 0000010035770000, task 000001000225b090) Stack: ffffffff801ea375 0000010035771e88 ffffffff801d35ca 000000007fffffff 0000010023f6b000 ffffffffa01193bb 0000010017581600 000001003c69e9b0 0000010017581620 0000010035771f50 Call Trace:{vsnprintf+757} {avc_has_perm+90} {sprintf+136} {inode_has_perm+131} {:ib_umad:show_ibdev+0} {:ib_umad:show_ibdev+35} {class_device_attr_show+24} {sysfs_read_file+172} {vfs_read+228} {sys_read+83} {system_call+126} Code: 80 3f 00 90 74 11 48 ff ce 48 ff c0 48 83 fe ff 74 05 80 38 RIP {strnlen+12} RSP <0000010035771d60> CR2: 0000003164616d7d -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From boas1 at llnl.gov Tue Jan 18 13:26:51 2005 From: boas1 at llnl.gov (Bill Boas) Date: Tue, 18 Jan 2005 13:26:51 -0800 Subject: [openib-general] .rtf version of Registration to-date for Sonoma Workshop In-Reply-To: <6.1.2.0.2.20050118101241.035bb080@mail-lc.llnl.gov> References: <6.1.2.0.2.20050118101241.035bb080@mail-lc.llnl.gov> Message-ID: <6.1.2.0.2.20050118132456.02046d78@mail-lc.llnl.gov> In .rtf for those that cannot open .xml. At 10:25 AM 1/18/2005, you wrote: >1b1a9578.jpg > Bill Boas bboas at llnl.gov ICCD LLNL, B-113, R-2018 Wk: 925-422-4110 7000 East Ave Cell: 925-337-2224 Livermore, CA 94551 Pgr: 877-203-2248 -------------- next part -------------- A non-text attachment was scrubbed... Name: Registration to Jan18.rtf Type: application/rtf Size: 90030 bytes Desc: not available URL: From roland at topspin.com Tue Jan 18 13:26:39 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 18 Jan 2005 13:26:39 -0800 Subject: [openib-general] ib_umad crash In-Reply-To: <1106083162.2045.65.camel@duffman> (Tom Duffy's message of "Tue, 18 Jan 2005 13:19:22 -0800") References: <1106083162.2045.65.camel@duffman> Message-ID: <52oefmbf8w.fsf@topspin.com> My fault I think. Can you try the change to user_mad.c that I just checked in? Thanks, Roland From tduffy at sun.com Tue Jan 18 13:27:19 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 18 Jan 2005 13:27:19 -0800 Subject: [openib-general] ib_umad crash In-Reply-To: <1106083162.2045.65.camel@duffman> References: <1106083162.2045.65.camel@duffman> Message-ID: <1106083639.2045.67.camel@duffman> On Tue, 2005-01-18 at 13:19 -0800, Tom Duffy wrote: > I had just unloaded and reloaded all the kernel modules, and restarted > opensm which printed: Actually, it looks like a insmod order thing. I was able to get it again by first modprobing ib_umad, then ib_mthca. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From davem at davemloft.net Tue Jan 18 13:27:07 2005 From: davem at davemloft.net (David S. Miller) Date: Tue, 18 Jan 2005 13:27:07 -0800 Subject: [openib-general] [PATCH] IPv6: Add correct padding to IPoIB link addr option In-Reply-To: <524qheeig3.fsf@topspin.com> References: <528y6qej5w.fsf@topspin.com> <524qheeig3.fsf@topspin.com> Message-ID: <20050118132707.01a99d6b.davem@davemloft.net> Applied, thanks Roland. From tduffy at sun.com Tue Jan 18 13:42:24 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 18 Jan 2005 13:42:24 -0800 Subject: [openib-general] ib_umad crash In-Reply-To: <52oefmbf8w.fsf@topspin.com> References: <1106083162.2045.65.camel@duffman> <52oefmbf8w.fsf@topspin.com> Message-ID: <1106084544.2045.69.camel@duffman> On Tue, 2005-01-18 at 13:26 -0800, Roland Dreier wrote: > My fault I think. Can you try the change to user_mad.c that I just > checked in? Ok, can't trigger it now. Assuming you fixed it. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From roland at topspin.com Tue Jan 18 13:44:13 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 18 Jan 2005 13:44:13 -0800 Subject: [openib-general] ib_umad crash In-Reply-To: <1106084544.2045.69.camel@duffman> (Tom Duffy's message of "Tue, 18 Jan 2005 13:42:24 -0800") References: <1106083162.2045.65.camel@duffman> <52oefmbf8w.fsf@topspin.com> <1106084544.2045.69.camel@duffman> Message-ID: <52d5w2befm.fsf@topspin.com> Tom> Ok, can't trigger it now. Assuming you fixed it. Yeah, I think so. I can see how the old code would have exactly the problem you saw, so I'm pretty confident of the fix. - R. From mshefty at ichips.intel.com Tue Jan 18 14:53:57 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Tue, 18 Jan 2005 14:53:57 -0800 Subject: [openib-general] [PATCH] CM: associate sends with current CEP state Message-ID: <20050118145357.0d0c2558.mshefty@ichips.intel.com> Committing patch that will associate sends with the current communication identifier state. Fixes a race condition completing a send in failure with receiving a response. Also added calls to cancel sends once response is received. - Sean signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1567) +++ core/cm.c (working copy) @@ -81,6 +81,7 @@ struct cm_id_private *cm_id_priv; struct ib_send_wr send_wr; struct ib_sge sge; + enum ib_cm_state sent_state; u8 retry; DECLARE_PCI_UNMAP_ADDR(mapping) struct ib_mad mad; @@ -768,6 +769,7 @@ goto out; } cm_id->state = IB_CM_REQ_SENT; + msg->sent_state = IB_CM_REQ_SENT; cm_id_priv->msg = msg; if (param->peer_to_peer) { @@ -904,8 +906,8 @@ cm_insert_remote_id(cur_cm_id_priv); spin_unlock_irqrestore(&cm.lock, flags); - ib_cancel_mad(cur_cm_id_priv->port->mad_agent, - (unsigned long)cur_cm_id_priv->msg); + ib_cancel_mad(port->mad_agent, + (unsigned long) cur_cm_id_priv->msg); ib_destroy_cm_id(&cm_id_priv->id); cm_id_priv = cur_cm_id_priv; } @@ -1029,6 +1031,7 @@ } cm_id->state = IB_CM_REP_SENT; + msg->sent_state = IB_CM_REP_SENT; cm_id_priv->msg = msg; spin_unlock_irqrestore(&cm_id_priv->lock, flags); out: @@ -1145,6 +1148,8 @@ cm_id_priv->id.state = IB_CM_REP_RCVD; spin_unlock_irqrestore(&cm_id_priv->lock, flags); + ib_cancel_mad(port->mad_agent, (unsigned long) cm_id_priv->msg); + cm_id_priv->id.remote_id = rep_msg->local_comm_id; cm_id_priv->remote_ca_guid = rep_msg->local_ca_guid; cm_id_priv->remote_qpn = cm_rep_get_local_qpn(rep_msg); @@ -1201,6 +1206,8 @@ cm_id_priv->id.state = IB_CM_ESTABLISHED; spin_unlock_irqrestore(&cm_id_priv->lock, flags); + ib_cancel_mad(port->mad_agent, (unsigned long) cm_id_priv->msg); + cm_event->event = IB_CM_RTU_RECEIVED; cm_event->private_data = &rtu_msg->private_data; cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); @@ -1287,6 +1294,7 @@ } cm_id->state = IB_CM_DREQ_SENT; + msg->sent_state = IB_CM_DREQ_SENT; cm_id_priv->msg = msg; spin_unlock_irqrestore(&cm_id_priv->lock, flags); out: @@ -1418,6 +1426,8 @@ cm_id_priv->id.state = IB_CM_TIMEWAIT; spin_unlock_irqrestore(&cm_id_priv->lock, flags); + ib_cancel_mad(port->mad_agent, (unsigned long) cm_id_priv->msg); + cm_event->event = IB_CM_DREP_RECEIVED; cm_event->private_data = &drep_msg->private_data; ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); @@ -1514,7 +1524,6 @@ } cm_id->state = IB_CM_IDLE; - cm_id_priv->msg = msg; spin_unlock_irqrestore(&cm_id_priv->lock, flags); out: return ret; @@ -1621,7 +1630,6 @@ default: break; } - cm_id_priv->msg = msg; spin_unlock_irqrestore(&cm_id_priv->lock, flags); out: return ret; @@ -1704,6 +1712,7 @@ } cm_id->lap_state = IB_CM_LAP_SENT; + msg->sent_state = IB_CM_ESTABLISHED; cm_id_priv->msg = msg; spin_unlock_irqrestore(&cm_id_priv->lock, flags); out: @@ -1858,6 +1867,7 @@ { struct cm_id_private *cm_id_priv; struct cm_apr_msg *apr_msg; + struct cm_msg *msg; struct ib_cm_event *cm_event; unsigned long flags; @@ -1878,10 +1888,11 @@ goto out; } cm_id_priv->id.lap_state = IB_CM_LAP_IDLE; + msg = cm_id_priv->msg; + cm_id_priv->msg = NULL; spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(cm_id_priv->port->mad_agent, - (unsigned long)cm_id_priv->msg); + ib_cancel_mad(port->mad_agent, (unsigned long) msg); cm_event->event = IB_CM_APR_RECEIVED; cm_event->param.apr_rcvd.ap_status = apr_msg->ap_status; @@ -1959,6 +1970,7 @@ goto out; } cm_id->state = IB_CM_SIDR_REQ_SENT; + msg->sent_state = IB_CM_SIDR_REQ_SENT; cm_id_priv->msg = msg; spin_unlock_irqrestore(&cm_id_priv->lock, flags); out: @@ -2127,8 +2139,7 @@ cm_id_priv->id.state = IB_CM_IDLE; spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(cm_id_priv->port->mad_agent, - (unsigned long)cm_id_priv->msg); + ib_cancel_mad(port->mad_agent, (unsigned long) cm_id_priv->msg); cm_event->event = IB_CM_SIDR_REP_RECEIVED; cm_event->param.sidr_rep_rcvd.status = sidr_rep_msg->status; @@ -2162,7 +2173,7 @@ /* Discard old sends or ones without a response. */ spin_lock_irqsave(&cm_id_priv->lock, flags); - if (msg != cm_id_priv->msg) + if (msg != cm_id_priv->msg || msg->sent_state != cm_id_priv->id.state) goto discard; switch (cm_id_priv->id.state) { @@ -2207,7 +2218,7 @@ /* Discard old sends. */ spin_lock_irqsave(&cm_id_priv->lock, flags); - if (msg != cm_id_priv->msg) { + if (msg != cm_id_priv->msg || msg->sent_state != cm_id_priv->id.state) { spin_unlock_irqrestore(&cm_id_priv->lock, flags); cm_free_msg(msg); return; From parks at lanl.gov Tue Jan 18 14:11:58 2005 From: parks at lanl.gov (Parks Fields) Date: Tue, 18 Jan 2005 15:11:58 -0700 Subject: [openib-general] .rtf version of Registration to-date for Sonoma Workshop In-Reply-To: <6.1.2.0.2.20050118132456.02046d78@mail-lc.llnl.gov> References: <6.1.2.0.2.20050118101241.035bb080@mail-lc.llnl.gov> <6.1.2.0.2.20050118132456.02046d78@mail-lc.llnl.gov> Message-ID: <6.1.2.0.2.20050118151114.01c60bf0@ccn-mail.lanl.gov> Bill, How is the lab suppose to pay. Travel usually cuts a check?? parks From mshefty at ichips.intel.com Tue Jan 18 15:22:12 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Tue, 18 Jan 2005 15:22:12 -0800 Subject: [openib-general] [PATCH] CM: set/record correct message timeout Message-ID: <20050118152212.258ec665.mshefty@ichips.intel.com> Committing patch that sets the timeout value for sent messages to the correct timeout value, including setting the timeout to 0 for messages that do not generate a response. Also added recording the timeout on the passive side of a connection. - Sean signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1568) +++ core/cm.c (working copy) @@ -161,7 +161,7 @@ m->send_wr.wr.ud.mad_hdr = &m->mad.mad_hdr; m->send_wr.wr.ud.remote_qpn = 1; m->send_wr.wr.ud.remote_qkey = IB_QP1_QKEY; - m->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; + /* Timeout set by caller if response is expected. */ m->send_wr.wr.ud.pkey_index = cm_id_priv->pkey_index; atomic_inc(&cm_id_priv->refcount); @@ -755,6 +755,7 @@ goto out; cm_format_req((struct cm_req_msg *)&msg->mad, cm_id_priv, param); + msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state == IB_CM_IDLE) @@ -912,6 +913,8 @@ cm_id_priv = cur_cm_id_priv; } cm_id_priv->port = port; + cm_id_priv->timeout_ms = cm_convert_to_ms( + cm_req_get_local_resp_timeout(req_msg)); cm_id_priv->max_cm_retries = cm_req_get_max_cm_retries(req_msg); cm_id_priv->remote_qpn = cm_req_get_local_qpn(req_msg); cm_id_priv->remote_port_gid = req_msg->primary_local_gid; @@ -1015,6 +1018,7 @@ goto out; cm_format_rep((struct cm_rep_msg *)&msg->mad, cm_id_priv, param); + msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state == IB_CM_REQ_RCVD || @@ -1279,6 +1283,7 @@ cm_format_dreq((struct cm_dreq_msg *)&msg->mad, cm_id_priv, private_data, private_data_len); + msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state == IB_CM_ESTABLISHED) @@ -1696,6 +1701,7 @@ cm_format_lap((struct cm_lap_msg *)&msg->mad, cm_id_priv, alternate_path, private_data, private_data_len); + msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state == IB_CM_ESTABLISHED && @@ -1956,6 +1962,7 @@ cm_format_sidr_req((struct cm_sidr_req_msg *)&msg->mad, cm_id_priv, param); + msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state == IB_CM_IDLE) From yoshfuji at linux-ipv6.org Tue Jan 18 16:20:18 2005 From: yoshfuji at linux-ipv6.org (YOSHIFUJI Hideaki / =?iso-2022-jp?B?GyRCNUhGIzFRTEAbKEI=?=) Date: Wed, 19 Jan 2005 09:20:18 +0900 (JST) Subject: [openib-general] Re: [Ipoverib] [PATCH] IPv6: Add correct padding to IPoIB link addr option In-Reply-To: <528y6qej5w.fsf@topspin.com> References: <528y6qej5w.fsf@topspin.com> Message-ID: <20050119.092018.07351674.yoshfuji@linux-ipv6.org> David, let me tkink about this. Thanks. In article <528y6qej5w.fsf at topspin.com> (at Tue, 18 Jan 2005 09:33:47 -0800), Roland Dreier says: > +++ linux-bk/net/ipv6/ndisc.c 2005-01-14 21:20:55.736745091 -0800 > @@ -169,12 +169,33 @@ > > #define NDISC_OPT_SPACE(len) (((len)+2+7)&~7) > > -static u8 *ndisc_fill_option(u8 *opt, int type, void *data, int data_len) > +/* > + * Return the padding between the option length and the start of the > + * link addr. Currently only IP-over-InfiniBand needs this, although > + * if RFC 3831 IPv6-over-Fibre Channel is ever implemented it may > + * also need a pad of 2. > + */ > +static int ndisc_addr_option_pad(unsigned short type) > +{ > + switch (type) { > + case ARPHRD_INFINIBAND: return 2; > + default: return 0; > + } > +} > + > +static u8 *ndisc_fill_addr_option(u8 *opt, int type, void *data, int data_len, > + unsigned short addr_type) > { > int space = NDISC_OPT_SPACE(data_len); > + int pad = ndisc_addr_option_pad(addr_type); > > opt[0] = type; > opt[1] = space>>3; > + > + memset(opt + 2, 0, pad); > + opt += pad; > + space -= pad; > + > memcpy(opt+2, data, data_len); > data_len += 2; > opt += data_len; -- Hideaki YOSHIFUJI @ USAGI Project GPG FP: 9022 65EB 1ECF 3AD1 0BDF 80D8 4807 F894 E062 0EEA From mshefty at ichips.intel.com Tue Jan 18 19:23:47 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Tue, 18 Jan 2005 19:23:47 -0800 Subject: [openib-general] [PATCH] CM: combine allocation of work item and event structures Message-ID: <20050118192347.0fe3f6f6.mshefty@ichips.intel.com> This patch combines the allocation of receive work queue items and the corresponding event reporting structure into a single allocation. signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1569) +++ core/cm.c (working copy) @@ -115,8 +115,8 @@ struct work_struct work; struct cm_port *port; struct ib_mad_recv_wc *mad_recv_wc; - /* todo: allocate event when allocating work structure */ - /* struct ib_cm_event cm_event; */ + struct ib_cm_event cm_event; + struct ib_sa_path_rec path[]; }; static inline void cm_deref_id(struct cm_id_private *cm_id_priv) @@ -835,31 +835,22 @@ cm_req_get_alt_local_ack_timeout(req_msg); } -static void cm_req_handler(struct cm_port *port, - struct ib_mad_recv_wc *mad_recv_wc) +static void cm_req_handler(struct cm_recv_work *recv_work) { struct ib_cm_id *cm_id; struct cm_id_private *cm_id_priv, *cur_cm_id_priv; struct cm_req_msg *req_msg; - struct ib_cm_event *cm_event; unsigned long flags, flags2; struct ib_cm_req_event_param *param; struct ib_wc *wc; int ret; - cm_event = kmalloc(sizeof *cm_event + - sizeof *cm_event->param.req_rcvd.primary_path + - sizeof *cm_event->param.req_rcvd.alternate_path, - GFP_KERNEL); - if (!cm_event) - return; - cm_id = ib_create_cm_id(NULL, NULL); if (IS_ERR(cm_id)) - goto out; + return; cm_id_priv = container_of(cm_id, struct cm_id_private, id); - req_msg = (struct cm_req_msg *)mad_recv_wc->recv_buf.mad; + req_msg = (struct cm_req_msg *)recv_work->mad_recv_wc->recv_buf.mad; cm_id_priv->remote_ca_guid = req_msg->local_ca_guid; cm_id_priv->id.remote_id = req_msg->local_comm_id; @@ -869,14 +860,14 @@ req_msg->local_comm_id); if (cur_cm_id_priv) { spin_unlock_irqrestore(&cm.lock, flags); - goto destroy_id; /* Duplicate message. */ + goto out; /* Duplicate message. */ } /* Find matching listen/peer request. */ cur_cm_id_priv = cm_find_service(req_msg->service_id); if (!cur_cm_id_priv) { spin_unlock_irqrestore(&cm.lock, flags); /* todo: reject with no match */ - goto destroy_id; /* No match. */ + goto out; /* No match. */ } spin_lock_irqsave(&cur_cm_id_priv->lock, flags2); if (cur_cm_id_priv->id.state == IB_CM_LISTEN) { @@ -892,11 +883,12 @@ cm_id_priv->id.state = IB_CM_REQ_RCVD; } else { /* Process peer requests. */ - if (cm_is_active_peer(port->ca_guid, req_msg->local_ca_guid, + if (cm_is_active_peer(recv_work->port->ca_guid, + req_msg->local_ca_guid, cur_cm_id_priv->local_qpn, cm_req_get_local_qpn(req_msg))) { spin_unlock_irqrestore(&cm.lock, flags); - goto destroy_id; /* Stay active. */ + goto out; /* Stay active. */ } atomic_inc(&cur_cm_id_priv->refcount); cur_cm_id_priv->id.state = IB_CM_REQ_RCVD; @@ -907,32 +899,32 @@ cm_insert_remote_id(cur_cm_id_priv); spin_unlock_irqrestore(&cm.lock, flags); - ib_cancel_mad(port->mad_agent, + ib_cancel_mad(recv_work->port->mad_agent, (unsigned long) cur_cm_id_priv->msg); ib_destroy_cm_id(&cm_id_priv->id); cm_id_priv = cur_cm_id_priv; } - cm_id_priv->port = port; + cm_id_priv->port = recv_work->port; cm_id_priv->timeout_ms = cm_convert_to_ms( cm_req_get_local_resp_timeout(req_msg)); cm_id_priv->max_cm_retries = cm_req_get_max_cm_retries(req_msg); cm_id_priv->remote_qpn = cm_req_get_local_qpn(req_msg); cm_id_priv->remote_port_gid = req_msg->primary_local_gid; - wc = mad_recv_wc->wc; + wc = recv_work->mad_recv_wc->wc; cm_id_priv->pkey_index = wc->pkey_index; - cm_set_ah_attr(&cm_id_priv->ah_attr, port->port_num, + cm_set_ah_attr(&cm_id_priv->ah_attr, recv_work->port->port_num, wc->slid, wc->sl, wc->dlid_path_bits); - cm_event->event = IB_CM_REQ_RECEIVED; - param = &cm_event->param.req_rcvd; + recv_work->cm_event.event = IB_CM_REQ_RECEIVED; + param = &recv_work->cm_event.param.req_rcvd; param->listen_id = &cur_cm_id_priv->id; - param->device = port->mad_agent->device; - param->port = port->port_num; - param->primary_path = (struct ib_sa_path_rec *) - (u8*)cm_event + sizeof *cm_event; - param->alternate_path = (struct ib_sa_path_rec *) - (u8*)param->primary_path + - sizeof *param->primary_path; + param->device = recv_work->port->mad_agent->device; + param->port = recv_work->port->port_num; + param->primary_path = &recv_work->path[0]; + if (req_msg->alt_local_lid) + param->alternate_path = &recv_work->path[1]; + else + param->alternate_path = NULL; cm_format_paths_from_req(param->primary_path, param->alternate_path, req_msg); param->remote_ca_guid = req_msg->local_ca_guid; @@ -942,21 +934,21 @@ param->starting_psn = be32_to_cpu(cm_req_get_starting_psn(req_msg)); param->responder_resources = cm_req_get_resp_res(req_msg); param->initiator_depth = cm_req_get_init_depth(req_msg); - param->local_cm_response_timeout = cm_req_get_remote_resp_timeout(req_msg); + param->local_cm_response_timeout = + cm_req_get_remote_resp_timeout(req_msg); param->flow_control = cm_req_get_flow_ctrl(req_msg); - param->remote_cm_response_timeout = cm_req_get_local_resp_timeout(req_msg); + param->remote_cm_response_timeout = + cm_req_get_local_resp_timeout(req_msg); param->retry_count = cm_req_get_retry_count(req_msg); param->rnr_retry_count = cm_req_get_rnr_retry_count(req_msg); param->srq = cm_req_get_srq(req_msg); - cm_event->private_data = &req_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + recv_work->cm_event.private_data = &req_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); cm_deref_id(cur_cm_id_priv); if (!ret) - goto out; -destroy_id: - ib_destroy_cm_id(&cm_id_priv->id); + return; out: - kfree(cm_event); + ib_destroy_cm_id(&cm_id_priv->id); } static void cm_format_rep(struct cm_rep_msg *rep_msg, @@ -1117,25 +1109,19 @@ } EXPORT_SYMBOL(ib_send_cm_rtu); -static void cm_rep_handler(struct cm_port *port, - struct ib_mad_recv_wc *mad_recv_wc) +static void cm_rep_handler(struct cm_recv_work *recv_work) { struct cm_id_private *cm_id_priv; struct cm_rep_msg *rep_msg; - struct ib_cm_event *cm_event; struct ib_cm_rep_event_param *param; unsigned long flags; int ret; - rep_msg = (struct cm_rep_msg *)mad_recv_wc->recv_buf.mad; + rep_msg = (struct cm_rep_msg *)recv_work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(rep_msg->remote_comm_id); if (!cm_id_priv) return; - cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); - if (!cm_event) - goto out; - spin_lock_irqsave(&cm_id_priv->lock, flags); switch (cm_id_priv->id.state) { case IB_CM_REQ_SENT: @@ -1152,14 +1138,15 @@ cm_id_priv->id.state = IB_CM_REP_RCVD; spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(port->mad_agent, (unsigned long) cm_id_priv->msg); + ib_cancel_mad(recv_work->port->mad_agent, + (unsigned long) cm_id_priv->msg); cm_id_priv->id.remote_id = rep_msg->local_comm_id; cm_id_priv->remote_ca_guid = rep_msg->local_ca_guid; cm_id_priv->remote_qpn = cm_rep_get_local_qpn(rep_msg); - cm_event->event = IB_CM_REP_RECEIVED; - param = &cm_event->param.rep_rcvd; + recv_work->cm_event.event = IB_CM_REP_RECEIVED; + param = &recv_work->cm_event.param.rep_rcvd; param->remote_ca_guid = rep_msg->local_ca_guid; param->remote_qkey = be32_to_cpu(rep_msg->local_qkey); param->remote_qpn = be32_to_cpu(cm_id_priv->remote_qpn); @@ -1171,36 +1158,28 @@ param->flow_control = cm_rep_get_flow_ctrl(rep_msg); param->rnr_retry_count = cm_rep_get_rnr_retry_count(rep_msg); param->srq = cm_rep_get_srq(rep_msg); - cm_event->private_data = &rep_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + recv_work->cm_event.private_data = &rep_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); if (ret) { - kfree(cm_event); atomic_dec(&cm_id_priv->refcount); ib_destroy_cm_id(&cm_id_priv->id); return; } out: - kfree(cm_event); cm_deref_id(cm_id_priv); } -static void cm_rtu_handler(struct cm_port *port, - struct ib_mad_recv_wc *mad_recv_wc) +static void cm_rtu_handler(struct cm_recv_work *recv_work) { struct cm_id_private *cm_id_priv; struct cm_rtu_msg *rtu_msg; - struct ib_cm_event *cm_event; unsigned long flags; - rtu_msg = (struct cm_rtu_msg *)mad_recv_wc->recv_buf.mad; + rtu_msg = (struct cm_rtu_msg *)recv_work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(rtu_msg->remote_comm_id); if (!cm_id_priv) return; - cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); - if (!cm_event) - goto out; - spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id_priv->id.state != IB_CM_REP_SENT && cm_id_priv->id.state != IB_CM_MRA_REP_RCVD) { @@ -1210,13 +1189,13 @@ cm_id_priv->id.state = IB_CM_ESTABLISHED; spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(port->mad_agent, (unsigned long) cm_id_priv->msg); + ib_cancel_mad(recv_work->port->mad_agent, + (unsigned long) cm_id_priv->msg); - cm_event->event = IB_CM_RTU_RECEIVED; - cm_event->private_data = &rtu_msg->private_data; - cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + recv_work->cm_event.event = IB_CM_RTU_RECEIVED; + recv_work->cm_event.private_data = &rtu_msg->private_data; + cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); out: - kfree(cm_event); cm_deref_id(cm_id_priv); } @@ -1307,24 +1286,18 @@ } EXPORT_SYMBOL(ib_send_cm_dreq); -static void cm_dreq_handler(struct cm_port *port, - struct ib_mad_recv_wc *mad_recv_wc) +static void cm_dreq_handler(struct cm_recv_work *recv_work) { struct cm_id_private *cm_id_priv; struct cm_dreq_msg *dreq_msg; - struct ib_cm_event *cm_event; unsigned long flags; int ret; - dreq_msg = (struct cm_dreq_msg *)mad_recv_wc->recv_buf.mad; + dreq_msg = (struct cm_dreq_msg *)recv_work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(dreq_msg->remote_comm_id); if (!cm_id_priv) return; - cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); - if (!cm_event) - goto out; - spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id_priv->id.state != IB_CM_ESTABLISHED || cm_id_priv->local_qpn != cm_dreq_get_remote_qpn(dreq_msg)) { @@ -1335,17 +1308,15 @@ cm_id_priv->id.state = IB_CM_DREQ_RCVD; spin_unlock_irqrestore(&cm_id_priv->lock, flags); - cm_event->event = IB_CM_DREQ_RECEIVED; - cm_event->private_data = &dreq_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + recv_work->cm_event.event = IB_CM_DREQ_RECEIVED; + recv_work->cm_event.private_data = &dreq_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); if (ret) { - kfree(cm_event); atomic_dec(&cm_id_priv->refcount); ib_destroy_cm_id(&cm_id_priv->id); return; } out: - kfree(cm_event); cm_deref_id(cm_id_priv); } @@ -1405,24 +1376,18 @@ } EXPORT_SYMBOL(ib_send_cm_drep); -static void cm_drep_handler(struct cm_port *port, - struct ib_mad_recv_wc *mad_recv_wc) +static void cm_drep_handler(struct cm_recv_work *recv_work) { struct cm_id_private *cm_id_priv; struct cm_drep_msg *drep_msg; - struct ib_cm_event *cm_event; unsigned long flags; int ret; - drep_msg = (struct cm_drep_msg *)mad_recv_wc->recv_buf.mad; + drep_msg = (struct cm_drep_msg *)recv_work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(drep_msg->remote_comm_id); if (!cm_id_priv) return; - cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); - if (!cm_event) - goto out; - spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id_priv->id.state != IB_CM_DREQ_SENT) { spin_unlock_irqrestore(&cm_id_priv->lock, flags); @@ -1431,19 +1396,18 @@ cm_id_priv->id.state = IB_CM_TIMEWAIT; spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(port->mad_agent, (unsigned long) cm_id_priv->msg); + ib_cancel_mad(recv_work->port->mad_agent, + (unsigned long) cm_id_priv->msg); - cm_event->event = IB_CM_DREP_RECEIVED; - cm_event->private_data = &drep_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + recv_work->cm_event.event = IB_CM_DREP_RECEIVED; + recv_work->cm_event.private_data = &drep_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); if (ret) { - kfree(cm_event); atomic_dec(&cm_id_priv->refcount); ib_destroy_cm_id(&cm_id_priv->id); return; } out: - kfree(cm_event); cm_deref_id(cm_id_priv); } @@ -1535,8 +1499,7 @@ } EXPORT_SYMBOL(ib_send_cm_rej); -static void cm_rej_handler(struct cm_port *port, - struct ib_mad_recv_wc *mad_recv_wc) +static void cm_rej_handler(struct cm_recv_work *recv_work) { /* todo: write reject handler */ } @@ -1641,8 +1604,7 @@ } EXPORT_SYMBOL(ib_send_cm_mra); -static void cm_mra_handler(struct cm_port *port, - struct ib_mad_recv_wc *mad_recv_wc) +static void cm_mra_handler(struct cm_recv_work *recv_work) { /* todo: write MRA handler */ /* todo: add timeout mechanism separate from retries for @@ -1748,27 +1710,20 @@ path->packet_life_time = cm_lap_get_local_ack_timeout(lap_msg); } -static void cm_lap_handler(struct cm_port *port, - struct ib_mad_recv_wc *mad_recv_wc) +static void cm_lap_handler(struct cm_recv_work *recv_work) { struct cm_id_private *cm_id_priv; struct cm_lap_msg *lap_msg; - struct ib_cm_event *cm_event; + struct ib_cm_lap_event_param *param; unsigned long flags; int ret; /* todo: verify LAP request and send reject APR if invalid. */ - lap_msg = (struct cm_lap_msg *)mad_recv_wc->recv_buf.mad; + lap_msg = (struct cm_lap_msg *)recv_work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(lap_msg->remote_comm_id); if (!cm_id_priv) return; - cm_event = kmalloc(sizeof *cm_event + - sizeof *(cm_event->param.lap_rcvd.alternate_path), - GFP_KERNEL); - if (!cm_event) - goto out; - spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id_priv->id.state != IB_CM_ESTABLISHED && cm_id_priv->id.lap_state != IB_CM_LAP_IDLE) { @@ -1778,22 +1733,18 @@ cm_id_priv->id.lap_state = IB_CM_LAP_RCVD; spin_unlock_irqrestore(&cm_id_priv->lock, flags); - cm_event->event = IB_CM_LAP_RECEIVED; - cm_event->param.lap_rcvd.alternate_path = (struct ib_sa_path_rec *) - (u8*)cm_event + - sizeof *cm_event; - cm_format_path_from_lap(cm_event->param.lap_rcvd.alternate_path, - lap_msg); - cm_event->private_data = &lap_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + recv_work->cm_event.event = IB_CM_LAP_RECEIVED; + param = &recv_work->cm_event.param.lap_rcvd; + param->alternate_path = &recv_work->path[0]; + cm_format_path_from_lap(param->alternate_path, lap_msg); + recv_work->cm_event.private_data = &lap_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); if (ret) { - kfree(cm_event); atomic_dec(&cm_id_priv->refcount); ib_destroy_cm_id(&cm_id_priv->id); return; } out: - kfree(cm_event); cm_deref_id(cm_id_priv); } @@ -1868,24 +1819,18 @@ } EXPORT_SYMBOL(ib_send_cm_apr); -static void cm_apr_handler(struct cm_port *port, - struct ib_mad_recv_wc *mad_recv_wc) +static void cm_apr_handler(struct cm_recv_work *recv_work) { struct cm_id_private *cm_id_priv; struct cm_apr_msg *apr_msg; struct cm_msg *msg; - struct ib_cm_event *cm_event; unsigned long flags; - apr_msg = (struct cm_apr_msg *)mad_recv_wc->recv_buf.mad; + apr_msg = (struct cm_apr_msg *)recv_work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(apr_msg->remote_comm_id); if (!cm_id_priv) return; /* Unmatched reply. */ - cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); - if (!cm_event) - goto out; - spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id_priv->id.state != IB_CM_ESTABLISHED || (cm_id_priv->id.lap_state != IB_CM_LAP_SENT && @@ -1898,16 +1843,16 @@ cm_id_priv->msg = NULL; spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(port->mad_agent, (unsigned long) msg); + ib_cancel_mad(recv_work->port->mad_agent, + (unsigned long) msg); - cm_event->event = IB_CM_APR_RECEIVED; - cm_event->param.apr_rcvd.ap_status = apr_msg->ap_status; - cm_event->param.apr_rcvd.apr_info = &apr_msg->info; - cm_event->param.apr_rcvd.info_len = apr_msg->info_length; - cm_event->private_data = &apr_msg->private_data; - cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + recv_work->cm_event.event = IB_CM_APR_RECEIVED; + recv_work->cm_event.param.apr_rcvd.ap_status = apr_msg->ap_status; + recv_work->cm_event.param.apr_rcvd.apr_info = &apr_msg->info; + recv_work->cm_event.param.apr_rcvd.info_len = apr_msg->info_length; + recv_work->cm_event.private_data = &apr_msg->private_data; + cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); out: - kfree(cm_event); cm_deref_id(cm_id_priv); } @@ -1985,29 +1930,25 @@ } EXPORT_SYMBOL(ib_send_cm_sidr_req); -static void cm_sidr_req_handler(struct cm_port *port, - struct ib_mad_recv_wc *mad_recv_wc) +static void cm_sidr_req_handler(struct cm_recv_work *recv_work) { struct ib_cm_id *cm_id; struct cm_id_private *cm_id_priv, *cur_cm_id_priv; struct cm_sidr_req_msg *sidr_req_msg; - struct ib_cm_event *cm_event; + struct ib_cm_sidr_req_event_param *param; struct ib_wc *wc; unsigned long flags; int ret; - cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); - if (!cm_event) - return; - cm_id = ib_create_cm_id(NULL, NULL); if (IS_ERR(cm_id)) - goto out; + return; cm_id_priv = container_of(cm_id, struct cm_id_private, id); /* Record SGID/SLID and request ID for lookup. */ - sidr_req_msg = (struct cm_sidr_req_msg *)mad_recv_wc->recv_buf.mad; - wc = mad_recv_wc->wc; + sidr_req_msg = (struct cm_sidr_req_msg *) + recv_work->mad_recv_wc->recv_buf.mad; + wc = recv_work->mad_recv_wc->wc; cm_id_priv->remote_port_gid.global.subnet_prefix = wc->slid; cm_id_priv->remote_port_gid.global.interface_id = 0; cm_id_priv->id.remote_id = sidr_req_msg->request_id; @@ -2016,14 +1957,14 @@ cur_cm_id_priv = cm_insert_remote_sidr(cm_id_priv); if (cur_cm_id_priv) { spin_unlock_irqrestore(&cm.lock, flags); - goto destroy_id; /* Duplicate message. */ + goto out; /* Duplicate message. */ } cur_cm_id_priv = cm_find_service(sidr_req_msg->service_id); if (!cur_cm_id_priv || cur_cm_id_priv->id.state != IB_CM_LISTEN) { rb_erase(&cm_id_priv->remote_id_node, &cm.remote_sidr_table); spin_unlock_irqrestore(&cm.lock, flags); /* todo: reject with no match */ - goto destroy_id; /* No match. */ + goto out; /* No match. */ } atomic_inc(&cur_cm_id_priv->refcount); spin_unlock_irqrestore(&cm.lock, flags); @@ -2033,25 +1974,24 @@ cm_id_priv->id.service_id = sidr_req_msg->service_id; cm_id_priv->id.service_mask = ~0ULL; cm_id_priv->id.state = IB_CM_SIDR_REQ_RCVD; - cm_id_priv->port = port; + cm_id_priv->port = recv_work->port; cm_id_priv->pkey_index = wc->pkey_index; - cm_set_ah_attr(&cm_id_priv->ah_attr, port->port_num, wc->slid, - wc->sl, wc->dlid_path_bits); + cm_set_ah_attr(&cm_id_priv->ah_attr, recv_work->port->port_num, + wc->slid, wc->sl, wc->dlid_path_bits); - cm_event->event = IB_CM_SIDR_REQ_RECEIVED; - cm_event->param.sidr_req_rcvd.pkey = sidr_req_msg->pkey; - cm_event->param.sidr_req_rcvd.listen_id = &cur_cm_id_priv->id; - cm_event->param.sidr_req_rcvd.device = port->mad_agent->device; - cm_event->param.sidr_req_rcvd.port = port->port_num; - cm_event->private_data = &sidr_req_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + recv_work->cm_event.event = IB_CM_SIDR_REQ_RECEIVED; + param = &recv_work->cm_event.param.sidr_req_rcvd; + param->pkey = sidr_req_msg->pkey; + param->listen_id = &cur_cm_id_priv->id; + param->device = recv_work->port->mad_agent->device; + param->port = recv_work->port->port_num; + recv_work->cm_event.private_data = &sidr_req_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); cm_deref_id(cur_cm_id_priv); if (!ret) - goto out; -destroy_id: - ib_destroy_cm_id(&cm_id_priv->id); + return; out: - kfree(cm_event); + ib_destroy_cm_id(&cm_id_priv->id); } static void cm_format_sidr_rep(struct cm_sidr_rep_msg *sidr_rep_msg, @@ -2120,24 +2060,20 @@ } EXPORT_SYMBOL(ib_send_cm_sidr_rep); -static void cm_sidr_rep_handler(struct cm_port *port, - struct ib_mad_recv_wc *mad_recv_wc) +static void cm_sidr_rep_handler(struct cm_recv_work *recv_work) { struct cm_id_private *cm_id_priv; struct cm_sidr_rep_msg *sidr_rep_msg; - struct ib_cm_event *cm_event; + struct ib_cm_sidr_rep_event_param *param; unsigned long flags; int ret; - sidr_rep_msg = (struct cm_sidr_rep_msg *)mad_recv_wc->recv_buf.mad; + sidr_rep_msg = (struct cm_sidr_rep_msg *) + recv_work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(sidr_rep_msg->request_id); if (!cm_id_priv) return; /* Unmatched reply. */ - cm_event = kmalloc(sizeof *cm_event, GFP_KERNEL); - if (!cm_event) - goto out; - spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id_priv->id.state != IB_CM_SIDR_REQ_SENT) { spin_unlock_irqrestore(&cm_id_priv->lock, flags); @@ -2146,25 +2082,24 @@ cm_id_priv->id.state = IB_CM_IDLE; spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(port->mad_agent, (unsigned long) cm_id_priv->msg); + ib_cancel_mad(recv_work->port->mad_agent, + (unsigned long) cm_id_priv->msg); - cm_event->event = IB_CM_SIDR_REP_RECEIVED; - cm_event->param.sidr_rep_rcvd.status = sidr_rep_msg->status; - cm_event->param.sidr_rep_rcvd.qkey = be32_to_cpu(sidr_rep_msg->qkey); - cm_event->param.sidr_rep_rcvd.qpn = be32_to_cpu(cm_sidr_rep_get_qpn( - sidr_rep_msg)); - cm_event->param.sidr_rep_rcvd.info = &sidr_rep_msg->info; - cm_event->param.sidr_rep_rcvd.info_len = sidr_rep_msg->info_length; - cm_event->private_data = &sidr_rep_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, cm_event); + recv_work->cm_event.event = IB_CM_SIDR_REP_RECEIVED; + param = &recv_work->cm_event.param.sidr_rep_rcvd; + param->status = sidr_rep_msg->status; + param->qkey = be32_to_cpu(sidr_rep_msg->qkey); + param->qpn = be32_to_cpu(cm_sidr_rep_get_qpn(sidr_rep_msg)); + param->info = &sidr_rep_msg->info; + param->info_len = sidr_rep_msg->info_length; + recv_work->cm_event.private_data = &sidr_rep_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); if (ret) { - kfree(cm_event); atomic_dec(&cm_id_priv->refcount); ib_destroy_cm_id(&cm_id_priv->id); return; } out: - kfree(cm_event); cm_deref_id(cm_id_priv); } @@ -2270,37 +2205,37 @@ switch (recv_work->mad_recv_wc->recv_buf.mad->mad_hdr.attr_id) { case CM_REQ_ATTR_ID: - cm_req_handler(recv_work->port, recv_work->mad_recv_wc); + cm_req_handler(recv_work); break; case CM_MRA_ATTR_ID: - cm_mra_handler(recv_work->port, recv_work->mad_recv_wc); + cm_mra_handler(recv_work); break; case CM_REJ_ATTR_ID: - cm_rej_handler(recv_work->port, recv_work->mad_recv_wc); + cm_rej_handler(recv_work); break; case CM_REP_ATTR_ID: - cm_rep_handler(recv_work->port, recv_work->mad_recv_wc); + cm_rep_handler(recv_work); break; case CM_RTU_ATTR_ID: - cm_rtu_handler(recv_work->port, recv_work->mad_recv_wc); + cm_rtu_handler(recv_work); break; case CM_DREQ_ATTR_ID: - cm_dreq_handler(recv_work->port, recv_work->mad_recv_wc); + cm_dreq_handler(recv_work); break; case CM_DREP_ATTR_ID: - cm_drep_handler(recv_work->port, recv_work->mad_recv_wc); + cm_drep_handler(recv_work); break; case CM_SIDR_REQ_ATTR_ID: - cm_sidr_req_handler(recv_work->port, recv_work->mad_recv_wc); + cm_sidr_req_handler(recv_work); break; case CM_SIDR_REP_ATTR_ID: - cm_sidr_rep_handler(recv_work->port, recv_work->mad_recv_wc); + cm_sidr_rep_handler(recv_work); break; case CM_LAP_ATTR_ID: - cm_lap_handler(recv_work->port, recv_work->mad_recv_wc); + cm_lap_handler(recv_work); break; case CM_APR_ATTR_ID: - cm_apr_handler(recv_work->port, recv_work->mad_recv_wc); + cm_apr_handler(recv_work); break; default: break; @@ -2313,8 +2248,23 @@ struct ib_mad_recv_wc *mad_recv_wc) { struct cm_recv_work *recv_work; + int paths; + + switch (mad_recv_wc->recv_buf.mad->mad_hdr.attr_id) { + case CM_REQ_ATTR_ID: + paths = 1 + (((struct cm_req_msg *) mad_recv_wc->recv_buf.mad)-> + alt_local_lid != 0); + break; + case CM_LAP_ATTR_ID: + paths = 1; + break; + default: + paths = 0; + break; + } - recv_work = kmalloc(sizeof *recv_work, GFP_KERNEL); + recv_work = kmalloc(sizeof *recv_work + sizeof(struct ib_sa_path_rec) * + paths, GFP_KERNEL); if (!recv_work) { ib_free_recv_mad(mad_recv_wc); return; From roland at topspin.com Tue Jan 18 22:13:26 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 18 Jan 2005 22:13:26 -0800 Subject: [openib-general] Branch for userspace verbs Message-ID: <52651u9cah.fsf@topspin.com> I've created a subversion branch at https://openib.org/svn/gen2/branches/roland-uverbs to use for developing userspace verbs support. I've just checked in a new version of libibverbs and the beginnings of an ib_uverbs module. The code that is checked in allows userspace to find devices that support userspace verbs and get asynchronous events delivered. I started a branch because although the code so far is fairly self-contained, I'll soon need to make some more invasive changes (such as adding a few new methods and parameters to the operations in struct ib_device). I think it will be better to do this on a branch and keep the trunk close to what's in the kernel. There's not much documentation right now, but it should be possible to try it by building a kernel with CONFIG_INFINIBAND_USER_VERBS=y and building libibverbs and libmthca. Then load ib_uverbs on top of ib_mthca, set OPENIB_DRIVER_PATH to point to the directory with mthca.so, and run examples/ib_drivers or examples/asyncwatch. Comments or questions appreciated... - R. From kumarkr at us.ibm.com Tue Jan 18 23:49:55 2005 From: kumarkr at us.ibm.com (Krishna Kumar) Date: Wed, 19 Jan 2005 13:19:55 +0530 Subject: [openib-general] Re: [Ipoverib] [PATCH] IPv6: Add correct padding to IPoIB link addr option In-Reply-To: <20050119.092018.07351674.yoshfuji@linux-ipv6.org> Message-ID: Hi Roland, Couple of minor comments on this : 1 : In "+static int ndisc_addr_option_pad(unsigned short type)", change the function name to ndisc_lladdr_option_pad() and the argument name to addr_type, to be more precise ? addr_option seems confusing, unless it is known that this is a LL address option (not a big deal, though). 2. I know memset has optimized check for count, but isn't it better to check for pad before this code since most of time it is going to be zero (unless you are doing only IB traffic) ? + if (pad) { memset(opt + 2, 0, pad); opt += pad; space -= pad; + } 3. I guess there is no clean way to avoid changing all consumers of ll_addr to not worry about the padding after the length and before the LL address, but it would be nice if that were possible (eg via the ndisc_parse_options). Also, Dave/Yoshifuji, can't ndisc_options have just nd_opt_array[5] instead of nd_opt_array[7], with indices-1 being used to store/access the options ? In any case, I was expecting 6 rather than 7 in the current code, since there are 5 options with the array[0] being unused. thanks, - KK YOSHIFUJI Hideaki / 吉藤英明 roland at topspin.com, Sent by: davem at davemloft.net netdev-bounce at oss cc .sgi.com netdev at oss.sgi.com, ipoverib at ietf.org, openib-general at openib.org 01/19/2005 05:50 Subject AM Re: [Ipoverib] [PATCH] IPv6: Add correct padding to IPoIB link addr option David, let me tkink about this. Thanks. In article <528y6qej5w.fsf at topspin.com> (at Tue, 18 Jan 2005 09:33:47 -0800), Roland Dreier says: > +++ linux-bk/net/ipv6/ndisc.c 2005-01-14 21:20:55.736745091 -0800 > @@ -169,12 +169,33 @@ > > #define NDISC_OPT_SPACE(len) (((len)+2+7)&~7) > > -static u8 *ndisc_fill_option(u8 *opt, int type, void *data, int data_len) > +/* > + * Return the padding between the option length and the start of the > + * link addr. Currently only IP-over-InfiniBand needs this, although > + * if RFC 3831 IPv6-over-Fibre Channel is ever implemented it may > + * also need a pad of 2. > + */ > +static int ndisc_addr_option_pad(unsigned short type) > +{ > + switch (type) { > + case ARPHRD_INFINIBAND: return 2; > + default: return 0; > + } > +} > + > +static u8 *ndisc_fill_addr_option(u8 *opt, int type, void *data, int data_len, > + unsigned short addr_type) > { > int space = NDISC_OPT_SPACE(data_len); > + int pad = ndisc_addr_option_pad(addr_type); > > opt[0] = type; > opt[1] = space>>3; > + > + memset(opt + 2, 0, pad); > + opt += pad; > + space -= pad; > + > memcpy(opt+2, data, data_len); > data_len += 2; > opt += data_len; -- Hideaki YOSHIFUJI @ USAGI Project GPG FP: 9022 65EB 1ECF 3AD1 0BDF 80D8 4807 F894 E062 0EEA -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: graycol.gif Type: image/gif Size: 105 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: pic32399.gif Type: image/gif Size: 1255 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ecblank.gif Type: image/gif Size: 45 bytes Desc: not available URL: From kashyapv at us.ibm.com Wed Jan 19 00:18:37 2005 From: kashyapv at us.ibm.com (Vivek Kashyap) Date: Wed, 19 Jan 2005 00:18:37 -0800 (PST) Subject: [openib-general] Re: [Ipoverib] [PATCH] IPv6: Add correct padding to IPoIB link addr option In-Reply-To: Message-ID: I suggest that the implementation discussion not be reflected on ipoverib. I've bcc'd to ipoverib for this mail. Those interested in the details can follow it on netdev/openib. Thanks, Vivek On Wed, 19 Jan 2005, Krishna Kumar wrote: > > > > > > Hi Roland, > > Couple of minor comments on this : > > 1 : In "+static int ndisc_addr_option_pad(unsigned short type)", change > the function > name to ndisc_lladdr_option_pad() and the argument name to addr_type, > to be > more precise ? addr_option seems confusing, unless it is known that > this is a LL > address option (not a big deal, though). > > 2. I know memset has optimized check for count, but isn't it better to > check for pad > before this code since most of time it is going to be zero (unless you > are doing only > IB traffic) ? > > + if (pad) { > memset(opt + 2, 0, pad); > opt += pad; > space -= pad; > + } > > 3. I guess there is no clean way to avoid changing all consumers of ll_addr > to not worry > about the padding after the length and before the LL address, but it > would be nice if > that were possible (eg via the ndisc_parse_options). > > Also, Dave/Yoshifuji, can't ndisc_options have just nd_opt_array[5] instead > of nd_opt_array[7], > with indices-1 being used to store/access the options ? In any case, I was > expecting 6 rather > than 7 in the current code, since there are 5 options with the array[0] > being unused. > > thanks, > > - KK > > > > > YOSHIFUJI Hideaki > / $B5HF#1QL@(B > pv6.org> roland at topspin.com, > Sent by: davem at davemloft.net > netdev-bounce at oss cc > .sgi.com netdev at oss.sgi.com, > ipoverib at ietf.org, > openib-general at openib.org > 01/19/2005 05:50 Subject > AM Re: [Ipoverib] [PATCH] IPv6: Add > correct padding to IPoIB link addr > option > > > > > > > > > > > David, let me tkink about this. > Thanks. > > In article <528y6qej5w.fsf at topspin.com> (at Tue, 18 Jan 2005 09:33:47 > -0800), Roland Dreier says: > > > +++ linux-bk/net/ipv6/ndisc.c 2005-01-14 21:20:55.736745091 > -0800 > > @@ -169,12 +169,33 @@ > > > > #define NDISC_OPT_SPACE(len) (((len)+2+7)&~7) > > > > -static u8 *ndisc_fill_option(u8 *opt, int type, void *data, int > data_len) > > +/* > > + * Return the padding between the option length and the start of the > > + * link addr. Currently only IP-over-InfiniBand needs this, although > > + * if RFC 3831 IPv6-over-Fibre Channel is ever implemented it may > > + * also need a pad of 2. > > + */ > > +static int ndisc_addr_option_pad(unsigned short type) > > +{ > > + switch (type) { > > + case ARPHRD_INFINIBAND: return 2; > > + default: return 0; > > + } > > +} > > + > > +static u8 *ndisc_fill_addr_option(u8 *opt, int type, void *data, int > data_len, > > + unsigned short > addr_type) > > { > > int space = NDISC_OPT_SPACE(data_len); > > + int pad = ndisc_addr_option_pad(addr_type); > > > > opt[0] = type; > > opt[1] = space>>3; > > + > > + memset(opt + 2, 0, pad); > > + opt += pad; > > + space -= pad; > > + > > memcpy(opt+2, data, data_len); > > data_len += 2; > > opt += data_len; > > -- > Hideaki YOSHIFUJI @ USAGI Project > GPG FP: 9022 65EB 1ECF 3AD1 0BDF 80D8 4807 F894 E062 0EEA > > From mshefty at ichips.intel.com Wed Jan 19 01:25:57 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 19 Jan 2005 01:25:57 -0800 Subject: [openib-general] [PATCH] CM: set CM bit on port info Message-ID: <20050119012557.703212cf.mshefty@ichips.intel.com> Following patch sets the CM supported bit on port info records. signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1570) +++ core/cm.c (working copy) @@ -2295,9 +2295,16 @@ static void cm_add_one(struct ib_device *device) { struct cm_port *port_array, *port; - struct ib_mad_reg_req reg_req; + struct ib_mad_reg_req reg_req = { + .mgmt_class = IB_MGMT_CLASS_CM, + .mgmt_class_version = 1 + }; + struct ib_port_modify port_modify = { + .set_port_cap_mask = IB_PORT_CM_SUP + }; u64 ca_guid; u8 i; + int ret; ca_guid = cm_get_ca_guid(device); if (!ca_guid) @@ -2307,15 +2314,12 @@ if (!port_array) return; - /* todo: (high priority) set CM bit in port info */ - memset(®_req, 0, sizeof reg_req); - reg_req.mgmt_class = IB_MGMT_CLASS_CM; - reg_req.mgmt_class_version = 1; set_bit(IB_MGMT_METHOD_SEND, reg_req.method_mask); for (i = 1, port = port_array; i <= device->phys_port_cnt; i++, port++){ spin_lock_init(&port->lock); port->ca_guid = ca_guid; port->port_num = i; + port->mad_agent = ib_register_mad_agent(device, i, IB_QPT_GSI, ®_req, @@ -2324,21 +2328,30 @@ cm_recv_handler, port); if (IS_ERR(port->mad_agent)) - goto error; + goto error1; port->mr = ib_get_dma_mr(port->mad_agent->qp->pd, IB_ACCESS_LOCAL_WRITE); - if (IS_ERR(port->mr)) { - ib_unregister_mad_agent(port->mad_agent); - goto error; - } + if (IS_ERR(port->mr)) + goto error2; + + ret = ib_modify_port(device, i, 0, &port_modify); + if (ret) + goto error3; } ib_set_client_data(device, &cm_client, port_array); return; -error: +error3: + ib_dereg_mr(port->mr); +error2: + ib_unregister_mad_agent(port->mad_agent); +error1: + port_modify.set_port_cap_mask = 0; + port_modify.clr_port_cap_mask = IB_PORT_CM_SUP; while (port != port_array) { --port; + ib_modify_port(device, port->port_num, 0, &port_modify); ib_dereg_mr(port->mr); ib_unregister_mad_agent(port->mad_agent); } @@ -2348,6 +2361,9 @@ static void cm_remove_one(struct ib_device *device) { struct cm_port *port_array, *port; + struct ib_port_modify port_modify = { + .clr_port_cap_mask = IB_PORT_CM_SUP + }; int i; port_array = (struct cm_port *)ib_get_client_data(device, &cm_client); @@ -2355,6 +2371,7 @@ return; for (i = 1, port = port_array; i <= device->phys_port_cnt; i++, port++){ + ib_modify_port(device, port->port_num, 0, &port_modify); ib_dereg_mr(port->mr); ib_unregister_mad_agent(port->mad_agent); } From mshefty at ichips.intel.com Wed Jan 19 01:33:44 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 19 Jan 2005 01:33:44 -0800 Subject: [openib-general] [PATCH] [TRIVIAL] CM: remove unused call Message-ID: <20050119013344.22171f30.mshefty@ichips.intel.com> Removes an unneeded function. Note that there are still 3 other unused calls, but I these may be needed by functionality that's currently missing, so I'm holding off removing those for now. signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1574) +++ core/cm.c (working copy) @@ -309,20 +309,6 @@ return NULL; } -static struct cm_id_private * cm_acquire_id_by_service(u64 service_id) -{ - struct cm_id_private *cm_id_priv; - unsigned long flags; - - spin_lock_irqsave(&cm.lock, flags); - cm_id_priv = cm_find_service(service_id); - if (cm_id_priv) - atomic_inc(&cm_id_priv->refcount); - spin_unlock_irqrestore(&cm.lock, flags); - - return cm_id_priv; -} - static struct cm_id_private * cm_insert_remote_id(struct cm_id_private *cm_id_priv) { From yoshfuji at linux-ipv6.org Wed Jan 19 01:02:12 2005 From: yoshfuji at linux-ipv6.org (YOSHIFUJI Hideaki / =?iso-2022-jp?B?GyRCNUhGIzFRTEAbKEI=?=) Date: Wed, 19 Jan 2005 18:02:12 +0900 (JST) Subject: [openib-general] Re: [Ipoverib] [PATCH] IPv6: Add correct padding to IPoIB link addr option In-Reply-To: References: <20050119.092018.07351674.yoshfuji@linux-ipv6.org> Message-ID: <20050119.180212.65445666.yoshfuji@linux-ipv6.org> In article (at Wed, 19 Jan 2005 13:19:55 +0530), Krishna Kumar says: > Couple of minor comments on this : : > 3. I guess there is no clean way to avoid changing all consumers of ll_addr > to not worry > about the padding after the length and before the LL address, but it > would be nice if > that were possible (eg via the ndisc_parse_options). > > Also, Dave/Yoshifuji, can't ndisc_options have just nd_opt_array[5] instead > of nd_opt_array[7], > with indices-1 being used to store/access the options ? In any case, I was > expecting 6 rather > than 7 in the current code, since there are 5 options with the array[0] > being unused. > I'll take care of both. Thank you! --yoshfuji From mst at mellanox.co.il Wed Jan 19 01:18:05 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 19 Jan 2005 11:18:05 +0200 Subject: [openib-general] Re: mstflint - test3 In-Reply-To: <1106081985.2045.55.camel@duffman> References: <1106081985.2045.55.camel@duffman> Message-ID: <20050119091805.GA1215@mellanox.co.il> Hi, Tom! Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] Re: mstflint - test3": > On Tue, 2005-01-18 at 22:51 +0200, Michael S. Tsirkin wrote: > > Now two questions: > > - does the board ID look right? > > I don't think so ... does it look right to you? I think I fixed this now. Pls try again. > > - does the /proc/bus/pci variant still work? > > Yes! > > tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q > Image type: FailSafe > Chip rev.: A1 > GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 > 50d0000100c90200 > Board ID: guoCC ra > > -tduffy So, how could this work previously then? Whatever. Tom, I think I now have fixed support for names of the form /proc/bus/pci/0000\:81/00.0 simply by trying both variants. /dev/mem is now disabled by default, too. So everything should work for you now, without patches. TODO: true pci domain support (parse resource file from sysfs), merge Tom's error handling patch. MST From shaharf at voltaire.com Wed Jan 19 05:42:02 2005 From: shaharf at voltaire.com (shaharf) Date: Wed, 19 Jan 2005 15:42:02 +0200 Subject: [openib-general] Osm tree re-organization and Makefiles cleanup Message-ID: HI all, In order to be able to support several umad layers (i.e. non gen2) and to cleanup things, I separated any vendor specific stuff from the opensm directory and moved it to a new library - lib vendor (usermode/management/osm/libvendor). The includes files in the opensm directory were appropriately moved to osm/include/vendor and osm/include/opensm. A new osm/Makefile is added to make the libraries and the opensm binary in the correct order. This makefile is used by the upper management/makefile, but can used standalone once the non osm libraries are built. In addition, I cleaned up all Makefiles to make them relative to the usermode/management directory. This means that you don't have to edit make.inc any more, but it also means you have to chdir to the usermode/management in order to make everything ( I guess everybody does that anyway...). Just to remind you, you should be able to build everything by: Chdir .../management Make && make install The default install directories are now /usr/local/ib/{lib,bin} Shahar -------------- next part -------------- An HTML attachment was scrubbed... URL: From mst at mellanox.co.il Wed Jan 19 07:08:57 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 19 Jan 2005 17:08:57 +0200 Subject: [openib-general] patches from subversion In-Reply-To: <20050119012557.703212cf.mshefty@ichips.intel.com> References: <20050119012557.703212cf.mshefty@ichips.intel.com> Message-ID: <20050119150857.GA10707@mellanox.co.il> Guys, I'd like to ask all to generate patches with diff -up option, which makes it easier to understand the generated patch. Howto (there are other ways): svn diff --diff-cmd mydiff where I have ~>cat ~/bin/mydiff #!/usr/bin/perl exec("diff","-up", at ARGV); If there's agreement on this, lets also add this to the FAQ. MST From halr at voltaire.com Wed Jan 19 08:03:16 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 19 Jan 2005 11:03:16 -0500 Subject: [openib-general] OpenSM: Don't return NO RECORDS status in response to SA GetTable Message-ID: <1106150596.4648.81.camel@localhost.localdomain> OpenSM: Don't return NO RECORDS status in response to SA GetTable Index: osm_sa_vlarb_record.c =================================================================== --- osm_sa_vlarb_record.c (revision 1582) +++ osm_sa_vlarb_record.c (working copy) @@ -509,7 +509,7 @@ "osm_vlarb_rec_rcv_process: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); @@ -603,4 +603,3 @@ Exit: OSM_LOG_EXIT( p_rcv->p_log ); } - Index: osm_sa_lft_record.c =================================================================== --- osm_sa_lft_record.c (revision 1582) +++ osm_sa_lft_record.c (working copy) @@ -453,7 +453,8 @@ "osm_lftr_rcv_process: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method != IB_MAD_METHOD_GETTABLE) && + (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); Index: osm_sa_service_record.c =================================================================== --- osm_sa_service_record.c (revision 1582) +++ osm_sa_service_record.c (working copy) @@ -391,7 +391,6 @@ goto Exit; } - trim_num_rec = 0; #ifndef VENDOR_RMPP_SUPPORT trim_num_rec = (MAD_BLOCK_SIZE - IB_SA_MAD_HDR_SIZE) / sizeof(ib_service_record_t); @@ -468,7 +467,8 @@ p_resp_sr = (ib_service_record_t*)ib_sa_mad_get_payload_ptr( p_resp_sa_mad ); - if( num_rec == 0 ) + if( (p_resp_sa_mad->method != IB_MAD_METHOD_GETTABLE_RESP) && + (num_rec == 0)) { p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; cl_memclr( p_resp_sr, sizeof(*p_resp_sr) ); @@ -835,7 +835,6 @@ p_recvd_service_rec = (ib_service_record_t*)ib_sa_mad_get_payload_ptr( p_sa_mad ); - cl_qlist_init(&sr_match_item.sr_list); sr_match_item.p_service_rec = p_recvd_service_rec; sr_match_item.comp_mask = p_sa_mad->comp_mask; @@ -851,7 +850,8 @@ __get_matching_sr, &context); - if( cl_qlist_count( &sr_match_item.sr_list ) == 0 ) + if ((p_sa_mad->method == IB_MAD_METHOD_GET) && + (cl_qlist_count( &sr_match_item.sr_list ) == 0)) { cl_plock_release(p_rcv->p_lock); Index: osm_sa_portinfo_record.c =================================================================== --- osm_sa_portinfo_record.c (revision 1582) +++ osm_sa_portinfo_record.c (working copy) @@ -719,7 +719,7 @@ "osm_pir_rcv_process: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); Index: osm_sa_pkey_record.c =================================================================== --- osm_sa_pkey_record.c (revision 1582) +++ osm_sa_pkey_record.c (working copy) @@ -365,7 +365,6 @@ cl_qlist_init( &rec_list ); - context.p_rcvd_rec = p_rcvd_rec; context.p_list = &rec_list; context.comp_mask = p_rcvd_mad->comp_mask; @@ -457,7 +456,7 @@ "osm_pkey_rec_rcv_process: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); Index: osm_sa_slvl_record.c =================================================================== --- osm_sa_slvl_record.c (revision 1582) +++ osm_sa_slvl_record.c (working copy) @@ -485,7 +485,7 @@ "osm_slvl_rec_rcv_process: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); Index: osm_sa_node_record.c =================================================================== --- osm_sa_node_record.c (revision 1582) +++ osm_sa_node_record.c (working copy) @@ -557,7 +557,7 @@ "osm_nr_rcv_process: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); Index: osm_sa_link_record.c =================================================================== --- osm_sa_link_record.c (revision 1582) +++ osm_sa_link_record.c (working copy) @@ -130,7 +130,6 @@ OSM_LOG_EXIT( p_rcv->p_log ); } - /********************************************************************** **********************************************************************/ ib_api_status_t @@ -284,7 +283,6 @@ } - } else { @@ -386,8 +384,6 @@ OSM_LOG_EXIT( p_rcv->p_log ); } - - /********************************************************************** **********************************************************************/ static void @@ -524,8 +520,6 @@ OSM_LOG_EXIT( p_rcv->p_log ); } - - /********************************************************************** Returns the SA status to return to the client. **********************************************************************/ @@ -552,6 +546,8 @@ p_lr = (ib_link_record_t*)ib_sa_mad_get_payload_ptr( p_sa_mad ); comp_mask = p_sa_mad->comp_mask; + *pp_src_port = NULL; + *pp_dest_port = NULL; if( p_sa_mad->comp_mask & IB_LR_COMPMASK_FROM_LID ) { @@ -559,10 +555,11 @@ cl_ntoh16(p_lr->from_lid), (void**)pp_src_port ); - if( (status != CL_SUCCESS) || (*pp_src_port == NULL) ) + if( ( (status != CL_SUCCESS) || (*pp_src_port == NULL) ) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { /* - This 'error' is a the client's fault (bad gid) so + This 'error' is the client's fault (bad lid) so don't enter it as an error in our own log. Return an error response to the client. */ @@ -582,10 +579,11 @@ cl_ntoh16(p_lr->to_lid), (void**)pp_dest_port ); - if( (status != CL_SUCCESS) || (*pp_dest_port == NULL) ) + if( ( (status != CL_SUCCESS) || (*pp_dest_port == NULL) ) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { /* - This 'error' is a the client's fault (bad gid) so + This 'error' is the client's fault (bad lid) so don't enter it as an error in our own log. Return an error response to the client. */ @@ -604,7 +602,6 @@ return( sa_status ); } - /********************************************************************** **********************************************************************/ static void @@ -703,7 +700,6 @@ /* C15-0.1.5 - always return SM_Key = 0 (table 151 p 782) */ p_resp_sa_mad->sm_key = 0; - #ifndef VENDOR_RMPP_SUPPORT /* we support only one packet RMPP - so we will set the first and last flags for gettable */ @@ -720,7 +716,7 @@ p_resp_lr = (ib_link_record_t*)ib_sa_mad_get_payload_ptr( p_resp_sa_mad ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; cl_memclr( p_resp_lr, sizeof(*p_resp_lr) ); @@ -762,7 +758,6 @@ OSM_LOG_EXIT( p_rcv->p_log ); } - /********************************************************************** **********************************************************************/ void @@ -810,7 +805,6 @@ goto Exit; } - if( osm_log_is_active( p_rcv->p_log, OSM_LOG_DEBUG ) ) osm_dump_link_record( p_rcv->p_log, p_lr, OSM_LOG_DEBUG ); @@ -837,7 +831,8 @@ cl_plock_release( p_rcv->p_lock ); - if( cl_qlist_count( &lr_list ) == 0 ) + if( (cl_qlist_count( &lr_list ) == 0) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); Index: osm_sa_mcmember_record.c =================================================================== --- osm_sa_mcmember_record.c (revision 1582) +++ osm_sa_mcmember_record.c (working copy) @@ -1678,16 +1678,16 @@ "osm_mcmr_query_mgrp: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); goto Exit; } - /* */ - /* Get a MAD to reply. Address of Mad is in the received mad_wrapper */ - /* */ + /* + * Get a MAD to reply. Address of Mad is in the received mad_wrapper + */ p_resp_madw = osm_mad_pool_get( p_rcv->p_mad_pool, p_madw->h_bind, num_rec * sizeof(ib_member_rec_t) + IB_SA_MAD_HDR_SIZE, Index: osm_sa_path_record.c =================================================================== --- osm_sa_path_record.c (revision 1582) +++ osm_sa_path_record.c (working copy) @@ -941,7 +941,8 @@ if( comp_mask & IB_PR_COMPMASK_PKEY ) { - if( p_pr->pkey != IB_DEFAULT_PKEY ) + if ( (p_pr->pkey != IB_DEFAULT_PKEY) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { sa_status = IB_SA_MAD_STATUS_NO_RECORDS; goto Exit; @@ -950,7 +951,8 @@ if( comp_mask & IB_PR_COMPMASK_SL ) { - if( p_pr->sl != OSM_DEFAULT_SL ) + if( (p_pr->sl != OSM_DEFAULT_SL) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { sa_status = IB_SA_MAD_STATUS_NO_RECORDS; goto Exit; @@ -982,15 +984,17 @@ } else { + *pp_src_port = 0; if( p_sa_mad->comp_mask & IB_PR_COMPMASK_SLID ) { status = cl_ptr_vector_at( &p_rcv->p_subn->port_lid_tbl, cl_ntoh16(p_pr->slid), (void**)pp_src_port ); - if( (status != CL_SUCCESS) || (*pp_src_port == NULL) ) + if( ( (status != CL_SUCCESS) || (*pp_src_port == NULL) ) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { /* - This 'error' is a the client's fault (bad lid) so + This 'error' is the client's fault (bad lid) so don't enter it as an error in our own log. Return an error response to the client. */ @@ -1002,15 +1006,7 @@ sa_status = IB_SA_MAD_STATUS_NO_RECORDS; goto Exit; } - } - else - { - /* - No source information specified. - */ - *pp_src_port = 0; - } } if( p_sa_mad->comp_mask & IB_PR_COMPMASK_DGID ) @@ -1023,7 +1019,7 @@ &p_rcv->p_subn->port_guid_tbl ) ) { /* - This 'error' is a the client's fault (bad gid) so + This 'error' is the client's fault (bad gid) so don't enter it as an error in our own log. Return an error response to the client. */ @@ -1038,15 +1034,17 @@ } else { + *pp_dest_port = 0; if( p_sa_mad->comp_mask & IB_PR_COMPMASK_DLID ) { status = cl_ptr_vector_at( &p_rcv->p_subn->port_lid_tbl, cl_ntoh16(p_pr->dlid), (void**)pp_dest_port ); - if( (status != CL_SUCCESS) || (*pp_dest_port == NULL) ) + if( ( (status != CL_SUCCESS) || (*pp_dest_port == NULL) ) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { /* - This 'error' is a the client's fault (bad gid) so + This 'error' is the client's fault (bad lid) so don't enter it as an error in our own log. Return an error response to the client. */ @@ -1058,15 +1056,7 @@ sa_status = IB_SA_MAD_STATUS_NO_RECORDS; goto Exit; } - } - else - { - /* - No destination information specified. - */ - *pp_dest_port = 0; - } } Exit: @@ -1118,7 +1108,6 @@ OSM_LOG_EXIT( p_rcv->p_log ); } - /********************************************************************** **********************************************************************/ static void @@ -1193,7 +1182,6 @@ OSM_LOG_EXIT( p_rcv->p_log ); } - /********************************************************************** **********************************************************************/ static void @@ -1260,7 +1248,7 @@ "Generating response with %u records.\n", num_rec ); } - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); @@ -1307,9 +1295,10 @@ p_resp_pr = (ib_path_rec_t*)ib_sa_mad_get_payload_ptr( p_resp_sa_mad ); - if( num_rec == 0 ) + if ( num_rec == 0 ) { - p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; + if (p_resp_sa_mad->method == IB_MAD_METHOD_GET_RESP) + p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; cl_memclr( p_resp_pr, sizeof(*p_resp_pr) ); } else From halr at voltaire.com Wed Jan 19 08:09:44 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 19 Jan 2005 11:09:44 -0500 Subject: [openib-general] OpenSM: osm_sa_path_record.c minor code redundancy Message-ID: <1106150983.4648.95.camel@localhost.localdomain> Hi Eitan, It looks to me like in osm_sa_path_record.c::__osm_pr_rcv_respond that the second setting of NO RECORDS status is redundant as it is weeded out earlier in that routine. if( num_rec == 0 ) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); goto Exit; } ... if( num_rec == 0 ) { p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; cl_memclr( p_resp_pr, sizeof(*p_resp_pr) ); } else { ... -- Hal From halr at voltaire.com Wed Jan 19 08:22:48 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 19 Jan 2005 11:22:48 -0500 Subject: [openib-general] OpenSM: Some more osm_sa_path_record.c questions Message-ID: <1106151768.4648.110.camel@localhost.localdomain> Hi Eitan, I have a few more questions about osm_sa_path_record.c based on a quick scan when I was looking at the NO RECORDS status issue with response to SA GetTable: 1. Why are non default PKey and SL invalid when they are requested in the component mask of the SA request for PathRecord ? (This seems inconsistent with the ability to set the PKeyTable and SL2VLMapping tables via osmsh or other means). In fact, if the component mask is not set for these and a GetTable is issued, wouldn't these additional path records come back ? Just wondering if there is another reason here I don't understand. /* Check a few easy disqualifying cases up front before getting into the endpoints. */ if( comp_mask & IB_PR_COMPMASK_PKEY ) { if( p_pr->pkey != IB_DEFAULT_PKEY ) { sa_status = IB_SA_MAD_STATUS_NO_RECORDS; goto Exit; } } if( comp_mask & IB_PR_COMPMASK_SL ) { if( p_pr->sl != OSM_DEFAULT_SL ) { sa_status = IB_SA_MAD_STATUS_NO_RECORDS; goto Exit; } 2. Are component masks SGID and SLID, and DGID and DLID mutually exclusive ? if( p_sa_mad->comp_mask & IB_PR_COMPMASK_SGID ) { else { if( p_sa_mad->comp_mask & IB_PR_COMPMASK_SLID ) Similarly for DGID and DLID If SLID is specified with SGID (similarly for DLID and DGID) in the component mask, shouldn't the LID be validated to make sure it is valid for that GID before a response is returned ? Thanks. -- Hal From halr at voltaire.com Wed Jan 19 08:44:52 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 19 Jan 2005 11:44:52 -0500 Subject: [openib-general] A Couple of Quick CM Questions Message-ID: <1106153092.4648.115.camel@localhost.localdomain> Hi Sean, I just started looking at CM again and have a couple of questions: 1. Shouldn't the CM class version be 2 rather than 1 ? 1 was for 1.0.a. 2 is for 1.1 and 1.2 support. 2. Should CM support ClassPortInfo ? It looks like it doesn't currently. More to come... -- Hal From tduffy at sun.com Wed Jan 19 09:14:37 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 19 Jan 2005 09:14:37 -0800 Subject: [openib-general] openIB + RTAI, kernel freezing... In-Reply-To: <41EE7906.5080703@eig.unige.ch> References: <506C3D7B14CDD411A52C00025558DED6064BED71@mtlex01.yok.mtl.com> <1105381618.8427.1.camel@duffman> <41E3E179.7000407@eig.unige.ch> <1105457796.11083.2.camel@duffman> <41EE7906.5080703@eig.unige.ch> Message-ID: <1106154877.7680.3.camel@duffman> On Wed, 2005-01-19 at 16:13 +0100, von Wyl Marc wrote: > The VAPI and CMAPI. > I installed a linux 2.6.10 with a 2.6.11-rc1 patch (containing openIB > patch) and now I'm trying to install the gen2 userspace but without > success... Can you be more specific about what is failing for you? Have you read all the README's about what to do? -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mshefty at ichips.intel.com Wed Jan 19 09:42:39 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 19 Jan 2005 09:42:39 -0800 Subject: [openib-general] Re: A Couple of Quick CM Questions In-Reply-To: <1106153092.4648.115.camel@localhost.localdomain> References: <1106153092.4648.115.camel@localhost.localdomain> Message-ID: <41EE9C0F.70802@ichips.intel.com> Hal Rosenstock wrote: > 1. Shouldn't the CM class version be 2 rather than 1 ? 1 was for 1.0.a. > 2 is for 1.1 and 1.2 support. It should. I'll update this. > 2. Should CM support ClassPortInfo ? It looks like it doesn't currently. I left this out of the latest check-in, but the CM will need to support this eventually. (It was simply a matter of time to implement this properly.) Thanks for the comments. - Sean From iod00d at hp.com Wed Jan 19 10:15:25 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 19 Jan 2005 10:15:25 -0800 Subject: [openib-general] patches from subversion In-Reply-To: <20050119150857.GA10707@mellanox.co.il> References: <20050119012557.703212cf.mshefty@ichips.intel.com> <20050119150857.GA10707@mellanox.co.il> Message-ID: <20050119181525.GB8754@esmail.cup.hp.com> On Wed, Jan 19, 2005 at 05:08:57PM +0200, Michael S. Tsirkin wrote: > Guys, I'd like to ask all to generate patches with diff -up option, > which makes it easier to understand the generated patch. While I prefer "-up" output also, please don't flame anyone for submitting them with default params - I'm likely to do that. We don't need to make it harder than necessary to submit patches. It's already tedious enough. SVN appears to be missing is the "-p" support - it generates universal diffs by default. But complains about "-up" params. > Howto (there are other ways): > > svn diff --diff-cmd mydiff Yes - two other ways. 1) modify ~/.subversion/config: diff-cmd = ~/bin/mydiff 2) svn diff --diff-cmd "/usr/bin/diff" -x -up FILENAME It's annoying that one can't just say: svn diff -x -up FILENAME... The help I was able to find indicate SVN only attempts to support GNU diff parameters. SVN seems to fall short of that goal in this case. > If there's agreement on this, lets also add this to the FAQ. Please add MST's suggestions and mine to the FAQ as part of "how to use SVN" and not a requirement to submit patches. hth, grant From mshefty at ichips.intel.com Wed Jan 19 10:25:04 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 19 Jan 2005 10:25:04 -0800 Subject: [openib-general] Re: A Couple of Quick CM Questions In-Reply-To: <1106153092.4648.115.camel@localhost.localdomain> References: <1106153092.4648.115.camel@localhost.localdomain> Message-ID: <41EEA600.7060701@ichips.intel.com> Hal Rosenstock wrote: > 1. Shouldn't the CM class version be 2 rather than 1 ? 1 was for 1.0.a. > 2 is for 1.1 and 1.2 support. Class version is set to 2 in cm_msgs.h, so I think this is okay. - Sean From halr at voltaire.com Wed Jan 19 10:32:46 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 19 Jan 2005 13:32:46 -0500 Subject: [openib-general] Re: A Couple of Quick CM Questions In-Reply-To: <41EEA600.7060701@ichips.intel.com> References: <1106153092.4648.115.camel@localhost.localdomain> <41EEA600.7060701@ichips.intel.com> Message-ID: <1106159152.4648.362.camel@localhost.localdomain> On Wed, 2005-01-19 at 13:25, Sean Hefty wrote: > Hal Rosenstock wrote: > > 1. Shouldn't the CM class version be 2 rather than 1 ? 1 was for 1.0.a. > > 2 is for 1.1 and 1.2 support. > > Class version is set to 2 in cm_msgs.h, so I think this is okay. cm.c line 2286: struct ib_mad_reg_req reg_req = { .mgmt_class = IB_MGMT_CLASS_CM, .mgmt_class_version = 1 }; From mshefty at ichips.intel.com Wed Jan 19 10:43:53 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 19 Jan 2005 10:43:53 -0800 Subject: [openib-general] Re: A Couple of Quick CM Questions In-Reply-To: <1106159152.4648.362.camel@localhost.localdomain> References: <1106153092.4648.115.camel@localhost.localdomain> <41EEA600.7060701@ichips.intel.com> <1106159152.4648.362.camel@localhost.localdomain> Message-ID: <41EEAA69.5040804@ichips.intel.com> Hal Rosenstock wrote: > On Wed, 2005-01-19 at 13:25, Sean Hefty wrote: > >>Hal Rosenstock wrote: >> >>>1. Shouldn't the CM class version be 2 rather than 1 ? 1 was for 1.0.a. >>>2 is for 1.1 and 1.2 support. >> >>Class version is set to 2 in cm_msgs.h, so I think this is okay. > > > cm.c line 2286: > > struct ib_mad_reg_req reg_req = { > .mgmt_class = IB_MGMT_CLASS_CM, > .mgmt_class_version = 1 > }; > Thanks! I've changed this now. (I was looking at the formatting at the actual MAD, where I used 2.) - Sean From mshefty at ichips.intel.com Wed Jan 19 11:41:29 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 19 Jan 2005 11:41:29 -0800 Subject: [openib-general] [PATCH] change bitfields to unsigned value Message-ID: <20050119114129.4e492194.mshefty@ichips.intel.com> Patch changes bitfield definitions from int to unsigned int, as suggested by Roland. signed-off-by: Sean Hefty Index: include/ib_cm.h =================================================================== --- include/ib_cm.h (revision 1567) +++ include/ib_cm.h (working copy) @@ -117,29 +117,29 @@ struct ib_cm_req_event_param { u32 remote_qpn; enum ib_qp_type qp_type; - u32 starting_psn; - u8 responder_resources; - u8 initiator_depth; - int local_cm_response_timeout:5; - int flow_control:1; - int remote_cm_response_timeout:5; - int retry_count:3; - int rnr_retry_count:3; - int srq:1; + u32 starting_psn; + u8 responder_resources; + u8 initiator_depth; + unsigned int local_cm_response_timeout:5; + unsigned int flow_control:1; + unsigned int remote_cm_response_timeout:5; + unsigned int retry_count:3; + unsigned int rnr_retry_count:3; + unsigned int srq:1; }; struct ib_cm_rep_event_param { - u64 remote_ca_guid; - u32 remote_qkey; - u32 remote_qpn; - u32 starting_psn; - u8 responder_resources; - u8 initiator_depth; - int target_ack_delay:5; - int failover_accepted:2; - int flow_control:1; - int rnr_retry_count:3; - int srq:1; + u64 remote_ca_guid; + u32 remote_qkey; + u32 remote_qpn; + u32 starting_psn; + u8 responder_resources; + u8 initiator_depth; + unsigned int target_ack_delay:5; + unsigned int failover_accepted:2; + unsigned int flow_control:1; + unsigned int rnr_retry_count:3; + unsigned int srq:1; }; enum ib_cm_rej_reason { From vnguyen_777 at yahoo.com Wed Jan 19 11:33:07 2005 From: vnguyen_777 at yahoo.com (vinh nguyen) Date: Wed, 19 Jan 2005 11:33:07 -0800 (PST) Subject: [openib-general] ping between IB interfaces Message-ID: <20050119193307.64918.qmail@web51006.mail.yahoo.com> Hi, I downloaded and installed ibal1-285 from sourceforge.net. I followed the INSTALL.txt guide, I've got ipoib and opensm running but when I tried to "ping" between two nodes I got "Destination Host Unreachable". I'm running the modules on kernel 2.4.20. I have two Mellanox HCA cards, and I connect them directly to each other on port 1. I ran opensm on one node and ipoib on both nodes. When I do "ifconfig -a", I was able to see the devices ib010 on both nodes. Then, I issued "ifconfig ib010 192.168.0.1" on one node, and "ifconfig ib010 192.168.0.2" on the other node. When I do a "ifconfig ib010" I got: node 1: ib010 Link encap:UNSPEC HWaddr FF-FF-00-00-00-00-00-00-00-00-00-00-00-00-00-00 inet addr:192.168.0.1 Bcast:192.168.0.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:2044 Metric:1 RX packets:24 errors:0 dropped:0 overruns:0 frame:0 TX packets:24 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:1344 (1.3 Kb) TX bytes:1440 (1.4 Kb) node 2: ib010 Link encap:UNSPEC HWaddr 00-00-00-18-FE-80-00-00-00-00-00-00-00-00-00-00 inet addr:192.168.0.2 Bcast:192.168.0.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:2044 Metric:1 RX packets:24 errors:0 dropped:0 overruns:0 frame:0 TX packets:24 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:128 RX bytes:1344 (1.3 Kb) TX bytes:1440 (1.4 Kb) I also followed the INSTALL.txt to add ipoib IP addresses to /etc/host file. 127.0.0.1 infiniband4 localhost.localdomain localhost 192.168.0.1 infiniband3-ib0 192.168.0.2 infiniband4-ib0 192.169.0.1 infiniband3-ib1 192.169.0.2 infiniband4-ib1 Did I miss something? I'm new to infiniband, and I've been reading the mail archive on sourceforge.net forum but still not able to figure out what the problem is. Some of you had expressed the same problem in the past, I would appreciate if you can tell me how you solved the problem and help me solve mine. Thanks in advance. Vinh Nguyen. Umass Lowell __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From tduffy at sun.com Wed Jan 19 11:41:06 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 19 Jan 2005 11:41:06 -0800 Subject: [openib-general] Re: mstflint - test3 In-Reply-To: <20050119091805.GA1215@mellanox.co.il> References: <1106081985.2045.55.camel@duffman> <20050119091805.GA1215@mellanox.co.il> Message-ID: <1106163666.20998.3.camel@duffman> On Wed, 2005-01-19 at 11:18 +0200, Michael S. Tsirkin wrote: > I think I fixed this now. Pls try again. This is using an unpatched mtcr.h. Looks good. tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q Image type: FailSafe Chip rev.: A1 GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 50d0000100c90200 Board ID: Cougar C tat:~# ./mstflint -d 0000:81:00.0 q Image type: FailSafe Chip rev.: A1 GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 50d0000100c90200 Board ID: Cougar C tat:~# ./mstflint -d 81:00.0 q Image type: FailSafe Chip rev.: A1 GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 50d0000100c90200 Board ID: Cougar C -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mshefty at ichips.intel.com Wed Jan 19 12:03:20 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 19 Jan 2005 12:03:20 -0800 Subject: [openib-general] ping between IB interfaces In-Reply-To: <20050119193307.64918.qmail@web51006.mail.yahoo.com> References: <20050119193307.64918.qmail@web51006.mail.yahoo.com> Message-ID: <41EEBD08.4090202@ichips.intel.com> vinh nguyen wrote: > Hi, > > I downloaded and installed ibal1-285 from > sourceforge.net. I followed the INSTALL.txt guide, > I've got ipoib and opensm running but when I tried to > "ping" between two nodes I got "Destination Host > Unreachable". Vinh, If possible, can you use the latest code from www.openib.org, which uses a different code base than that found on sourceforge? The IBAL code on sourceforge has limited ongoing development on it at this time, with limited support. The openib code base is active and has better support. Thanks, - Sean From tduffy at sun.com Wed Jan 19 12:51:22 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 19 Jan 2005 12:51:22 -0800 Subject: [openib-general] ping between IB interfaces In-Reply-To: <20050119193307.64918.qmail@web51006.mail.yahoo.com> References: <20050119193307.64918.qmail@web51006.mail.yahoo.com> Message-ID: <1106167882.20998.7.camel@duffman> On Wed, 2005-01-19 at 11:33 -0800, vinh nguyen wrote: > I'm running the modules on kernel 2.4.20. If you grab the latest 2.6.11-rc1 tree, it has IB support in it already. I would recommend this. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From eitan at mellanox.co.il Wed Jan 19 13:01:40 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Wed, 19 Jan 2005 23:01:40 +0200 Subject: [openib-general] RE: OpenSM: Some more osm_sa_path_record.c questions Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC7D@mtlex01.yok.mtl.com> Hi Hal You had 2 questions: 1. Why are non default PKey and SL invalid when they are requested in the component mask of the SA request for PathRecord ? [EZ] The reason for that is that OpenSM does not support pruning of paths based on the PKeys or SL fields. So if a query requiring the paths to follow a specific SL or PKey is received - an empty response is provided. As always a patch fixing this will be appreciated. 2. Are component masks SGID and SLID, and DGID and DLID mutually exclusive ? [EZ] The code you quote is only use for limiting the "world" by the given DGID/DLID or SGID/SLID. Based on the limit found (either a "pair", "half world" or "full world") the search is done in a more efficient manner. After limiting the search to a smaller set than all ports to all other ports, the paths are filtered by the provided comp_mask. So in your case where both SGID and SLID masks are given - later the paths will be filtered. Were you able to exercise this bug? Or are you only reading through? -------------- next part -------------- An HTML attachment was scrubbed... URL: From eitan at mellanox.co.il Wed Jan 19 13:04:28 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Wed, 19 Jan 2005 23:04:28 +0200 Subject: [openib-general] RE: OpenSM: osm_sa_path_record.c minor code redundancy Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC80@mtlex01.yok.mtl.com> Correct. The first one should be removed. Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -----Original Message----- From: Hal Rosenstock [mailto:halr at voltaire.com] Sent: Wednesday, January 19, 2005 6:10 PM To: Eitan Zahavi Cc: openib-general at openib.org Subject: OpenSM: osm_sa_path_record.c minor code redundancy Hi Eitan, It looks to me like in osm_sa_path_record.c::__osm_pr_rcv_respond that the second setting of NO RECORDS status is redundant as it is weeded out earlier in that routine. if( num_rec == 0 ) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); goto Exit; } ... if( num_rec == 0 ) { p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; cl_memclr( p_resp_pr, sizeof(*p_resp_pr) ); } else { ... -- Hal -------------- next part -------------- An HTML attachment was scrubbed... URL: From eitan at mellanox.co.il Wed Jan 19 13:06:19 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Wed, 19 Jan 2005 23:06:19 +0200 Subject: [openib-general] OpenSM: Don't return NO RECORDS status in re sponse to SA GetTable Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC82@mtlex01.yok.mtl.com> Hi Hal, You wrote: " OpenSM: Don't return NO RECORDS status in response to SA GetTable" I did find the following section in the table describing MAD errors: No records match query. May be returned only by a SubnAdmGetResp(). Never returned for an RMPP response because an RMPP transaction with a payload length of zero is a valid transaction. However, isn't the SA supposed to return something in return to a request? Is it written somewhere? I thought that for every request a response is required - unless there is some access violation. Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -----Original Message----- From: Hal Rosenstock [mailto:halr at voltaire.com] Sent: Wednesday, January 19, 2005 6:03 PM To: openib-general at openib.org Subject: [openib-general] OpenSM: Don't return NO RECORDS status in response to SA GetTable OpenSM: Don't return NO RECORDS status in response to SA GetTable Index: osm_sa_vlarb_record.c =================================================================== --- osm_sa_vlarb_record.c (revision 1582) +++ osm_sa_vlarb_record.c (working copy) @@ -509,7 +509,7 @@ "osm_vlarb_rec_rcv_process: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); @@ -603,4 +603,3 @@ Exit: OSM_LOG_EXIT( p_rcv->p_log ); } - Index: osm_sa_lft_record.c =================================================================== --- osm_sa_lft_record.c (revision 1582) +++ osm_sa_lft_record.c (working copy) @@ -453,7 +453,8 @@ "osm_lftr_rcv_process: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method != IB_MAD_METHOD_GETTABLE) && + (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); Index: osm_sa_service_record.c =================================================================== --- osm_sa_service_record.c (revision 1582) +++ osm_sa_service_record.c (working copy) @@ -391,7 +391,6 @@ goto Exit; } - trim_num_rec = 0; #ifndef VENDOR_RMPP_SUPPORT trim_num_rec = (MAD_BLOCK_SIZE - IB_SA_MAD_HDR_SIZE) / sizeof(ib_service_record_t); @@ -468,7 +467,8 @@ p_resp_sr = (ib_service_record_t*)ib_sa_mad_get_payload_ptr( p_resp_sa_mad ); - if( num_rec == 0 ) + if( (p_resp_sa_mad->method != IB_MAD_METHOD_GETTABLE_RESP) && + (num_rec == 0)) { p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; cl_memclr( p_resp_sr, sizeof(*p_resp_sr) ); @@ -835,7 +835,6 @@ p_recvd_service_rec = (ib_service_record_t*)ib_sa_mad_get_payload_ptr( p_sa_mad ); - cl_qlist_init(&sr_match_item.sr_list); sr_match_item.p_service_rec = p_recvd_service_rec; sr_match_item.comp_mask = p_sa_mad->comp_mask; @@ -851,7 +850,8 @@ __get_matching_sr, &context); - if( cl_qlist_count( &sr_match_item.sr_list ) == 0 ) + if ((p_sa_mad->method == IB_MAD_METHOD_GET) && + (cl_qlist_count( &sr_match_item.sr_list ) == 0)) { cl_plock_release(p_rcv->p_lock); Index: osm_sa_portinfo_record.c =================================================================== --- osm_sa_portinfo_record.c (revision 1582) +++ osm_sa_portinfo_record.c (working copy) @@ -719,7 +719,7 @@ "osm_pir_rcv_process: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); Index: osm_sa_pkey_record.c =================================================================== --- osm_sa_pkey_record.c (revision 1582) +++ osm_sa_pkey_record.c (working copy) @@ -365,7 +365,6 @@ cl_qlist_init( &rec_list ); - context.p_rcvd_rec = p_rcvd_rec; context.p_list = &rec_list; context.comp_mask = p_rcvd_mad->comp_mask; @@ -457,7 +456,7 @@ "osm_pkey_rec_rcv_process: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); Index: osm_sa_slvl_record.c =================================================================== --- osm_sa_slvl_record.c (revision 1582) +++ osm_sa_slvl_record.c (working copy) @@ -485,7 +485,7 @@ "osm_slvl_rec_rcv_process: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); Index: osm_sa_node_record.c =================================================================== --- osm_sa_node_record.c (revision 1582) +++ osm_sa_node_record.c (working copy) @@ -557,7 +557,7 @@ "osm_nr_rcv_process: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); Index: osm_sa_link_record.c =================================================================== --- osm_sa_link_record.c (revision 1582) +++ osm_sa_link_record.c (working copy) @@ -130,7 +130,6 @@ OSM_LOG_EXIT( p_rcv->p_log ); } - /********************************************************************** **********************************************************************/ ib_api_status_t @@ -284,7 +283,6 @@ } - } else { @@ -386,8 +384,6 @@ OSM_LOG_EXIT( p_rcv->p_log ); } - - /********************************************************************** **********************************************************************/ static void @@ -524,8 +520,6 @@ OSM_LOG_EXIT( p_rcv->p_log ); } - - /********************************************************************** Returns the SA status to return to the client. **********************************************************************/ @@ -552,6 +546,8 @@ p_lr = (ib_link_record_t*)ib_sa_mad_get_payload_ptr( p_sa_mad ); comp_mask = p_sa_mad->comp_mask; + *pp_src_port = NULL; + *pp_dest_port = NULL; if( p_sa_mad->comp_mask & IB_LR_COMPMASK_FROM_LID ) { @@ -559,10 +555,11 @@ cl_ntoh16(p_lr->from_lid), (void**)pp_src_port ); - if( (status != CL_SUCCESS) || (*pp_src_port == NULL) ) + if( ( (status != CL_SUCCESS) || (*pp_src_port == NULL) ) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { /* - This 'error' is a the client's fault (bad gid) so + This 'error' is the client's fault (bad lid) so don't enter it as an error in our own log. Return an error response to the client. */ @@ -582,10 +579,11 @@ cl_ntoh16(p_lr->to_lid), (void**)pp_dest_port ); - if( (status != CL_SUCCESS) || (*pp_dest_port == NULL) ) + if( ( (status != CL_SUCCESS) || (*pp_dest_port == NULL) ) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { /* - This 'error' is a the client's fault (bad gid) so + This 'error' is the client's fault (bad lid) so don't enter it as an error in our own log. Return an error response to the client. */ @@ -604,7 +602,6 @@ return( sa_status ); } - /********************************************************************** **********************************************************************/ static void @@ -703,7 +700,6 @@ /* C15-0.1.5 - always return SM_Key = 0 (table 151 p 782) */ p_resp_sa_mad->sm_key = 0; - #ifndef VENDOR_RMPP_SUPPORT /* we support only one packet RMPP - so we will set the first and last flags for gettable */ @@ -720,7 +716,7 @@ p_resp_lr = (ib_link_record_t*)ib_sa_mad_get_payload_ptr( p_resp_sa_mad ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; cl_memclr( p_resp_lr, sizeof(*p_resp_lr) ); @@ -762,7 +758,6 @@ OSM_LOG_EXIT( p_rcv->p_log ); } - /********************************************************************** **********************************************************************/ void @@ -810,7 +805,6 @@ goto Exit; } - if( osm_log_is_active( p_rcv->p_log, OSM_LOG_DEBUG ) ) osm_dump_link_record( p_rcv->p_log, p_lr, OSM_LOG_DEBUG ); @@ -837,7 +831,8 @@ cl_plock_release( p_rcv->p_lock ); - if( cl_qlist_count( &lr_list ) == 0 ) + if( (cl_qlist_count( &lr_list ) == 0) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); Index: osm_sa_mcmember_record.c =================================================================== --- osm_sa_mcmember_record.c (revision 1582) +++ osm_sa_mcmember_record.c (working copy) @@ -1678,16 +1678,16 @@ "osm_mcmr_query_mgrp: " "Returning %u records.\n", num_rec ); - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); goto Exit; } - /* */ - /* Get a MAD to reply. Address of Mad is in the received mad_wrapper */ - /* */ + /* + * Get a MAD to reply. Address of Mad is in the received mad_wrapper + */ p_resp_madw = osm_mad_pool_get( p_rcv->p_mad_pool, p_madw->h_bind, num_rec * sizeof(ib_member_rec_t) + IB_SA_MAD_HDR_SIZE, Index: osm_sa_path_record.c =================================================================== --- osm_sa_path_record.c (revision 1582) +++ osm_sa_path_record.c (working copy) @@ -941,7 +941,8 @@ if( comp_mask & IB_PR_COMPMASK_PKEY ) { - if( p_pr->pkey != IB_DEFAULT_PKEY ) + if ( (p_pr->pkey != IB_DEFAULT_PKEY) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { sa_status = IB_SA_MAD_STATUS_NO_RECORDS; goto Exit; @@ -950,7 +951,8 @@ if( comp_mask & IB_PR_COMPMASK_SL ) { - if( p_pr->sl != OSM_DEFAULT_SL ) + if( (p_pr->sl != OSM_DEFAULT_SL) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { sa_status = IB_SA_MAD_STATUS_NO_RECORDS; goto Exit; @@ -982,15 +984,17 @@ } else { + *pp_src_port = 0; if( p_sa_mad->comp_mask & IB_PR_COMPMASK_SLID ) { status = cl_ptr_vector_at( &p_rcv->p_subn->port_lid_tbl, cl_ntoh16(p_pr->slid), (void**)pp_src_port ); - if( (status != CL_SUCCESS) || (*pp_src_port == NULL) ) + if( ( (status != CL_SUCCESS) || (*pp_src_port == NULL) ) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { /* - This 'error' is a the client's fault (bad lid) so + This 'error' is the client's fault (bad lid) so don't enter it as an error in our own log. Return an error response to the client. */ @@ -1002,15 +1006,7 @@ sa_status = IB_SA_MAD_STATUS_NO_RECORDS; goto Exit; } - } - else - { - /* - No source information specified. - */ - *pp_src_port = 0; - } } if( p_sa_mad->comp_mask & IB_PR_COMPMASK_DGID ) @@ -1023,7 +1019,7 @@ &p_rcv->p_subn->port_guid_tbl ) ) { /* - This 'error' is a the client's fault (bad gid) so + This 'error' is the client's fault (bad gid) so don't enter it as an error in our own log. Return an error response to the client. */ @@ -1038,15 +1034,17 @@ } else { + *pp_dest_port = 0; if( p_sa_mad->comp_mask & IB_PR_COMPMASK_DLID ) { status = cl_ptr_vector_at( &p_rcv->p_subn->port_lid_tbl, cl_ntoh16(p_pr->dlid), (void**)pp_dest_port ); - if( (status != CL_SUCCESS) || (*pp_dest_port == NULL) ) + if( ( (status != CL_SUCCESS) || (*pp_dest_port == NULL) ) && + (p_sa_mad->method == IB_MAD_METHOD_GET) ) { /* - This 'error' is a the client's fault (bad gid) so + This 'error' is the client's fault (bad lid) so don't enter it as an error in our own log. Return an error response to the client. */ @@ -1058,15 +1056,7 @@ sa_status = IB_SA_MAD_STATUS_NO_RECORDS; goto Exit; } - } - else - { - /* - No destination information specified. - */ - *pp_dest_port = 0; - } } Exit: @@ -1118,7 +1108,6 @@ OSM_LOG_EXIT( p_rcv->p_log ); } - /********************************************************************** **********************************************************************/ static void @@ -1193,7 +1182,6 @@ OSM_LOG_EXIT( p_rcv->p_log ); } - /********************************************************************** **********************************************************************/ static void @@ -1260,7 +1248,7 @@ "Generating response with %u records.\n", num_rec ); } - if( num_rec == 0 ) + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) { osm_sa_send_error( p_rcv->p_resp, p_madw, IB_SA_MAD_STATUS_NO_RECORDS ); @@ -1307,9 +1295,10 @@ p_resp_pr = (ib_path_rec_t*)ib_sa_mad_get_payload_ptr( p_resp_sa_mad ); - if( num_rec == 0 ) + if ( num_rec == 0 ) { - p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; + if (p_resp_sa_mad->method == IB_MAD_METHOD_GET_RESP) + p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; cl_memclr( p_resp_pr, sizeof(*p_resp_pr) ); } else _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From halr at voltaire.com Wed Jan 19 13:15:33 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 19 Jan 2005 16:15:33 -0500 Subject: [openib-general] OpenSM: Don't return NO RECORDS status in re sponse to SA GetTable In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEC82@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6047EEC82@mtlex01.yok.mtl.com> Message-ID: <1106169332.4648.586.camel@localhost.localdomain> On Wed, 2005-01-19 at 16:06, Eitan Zahavi wrote: > Hi Hal, > > You wrote: > " OpenSM: Don't return NO RECORDS status in response to SA GetTable" > > I did find the following section in the table describing MAD errors: > > No records match query. May be returned only by a SubnAdmGetResp(). > Never returned for an RMPP response because an > RMPP transaction with a payload length of zero is a valid transaction. > > However, isn't the SA supposed to return something in return to a > request? It does. It returns an RMPP'd SA GetTableResp with just the SA class header and no records. > Is it written somewhere? Just what you cited. > I thought that for every request a response is required - unless > there is some access violation. A response is given. It just has a good status and no records in the data. This is different from NO RECORDS status (for normal SA GetResp). That's what this patch does. -- Hal > > Eitan Zahavi > Design Technology Director > Mellanox Technologies LTD > Tel:+972-4-9097208 > Fax:+972-4-9593245 > P.O. Box 586 Yokneam 20692 ISRAEL > > > -----Original Message----- > From: Hal Rosenstock [mailto:halr at voltaire.com] > Sent: Wednesday, January 19, 2005 6:03 PM > To: openib-general at openib.org > Subject: [openib-general] OpenSM: Don't return NO RECORDS status in > response to SA GetTable > > OpenSM: Don't return NO RECORDS status in response to SA GetTable > > Index: osm_sa_vlarb_record.c > =================================================================== > --- osm_sa_vlarb_record.c (revision 1582) > +++ osm_sa_vlarb_record.c (working copy) > @@ -509,7 +509,7 @@ > "osm_vlarb_rec_rcv_process: " > "Returning %u records.\n", num_rec ); > > - if( num_rec == 0 ) > + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) > { > osm_sa_send_error( p_rcv->p_resp, p_madw, > IB_SA_MAD_STATUS_NO_RECORDS ); > @@ -603,4 +603,3 @@ > Exit: > OSM_LOG_EXIT( p_rcv->p_log ); > } > - > Index: osm_sa_lft_record.c > =================================================================== > --- osm_sa_lft_record.c (revision 1582) > +++ osm_sa_lft_record.c (working copy) > @@ -453,7 +453,8 @@ > "osm_lftr_rcv_process: " > "Returning %u records.\n", num_rec ); > > - if( num_rec == 0 ) > + if ((p_rcvd_mad->method != IB_MAD_METHOD_GETTABLE) && > + (num_rec == 0)) > { > osm_sa_send_error( p_rcv->p_resp, p_madw, > IB_SA_MAD_STATUS_NO_RECORDS ); > Index: osm_sa_service_record.c > =================================================================== > --- osm_sa_service_record.c (revision 1582) > +++ osm_sa_service_record.c (working copy) > @@ -391,7 +391,6 @@ > goto Exit; > } > > - > trim_num_rec = 0; > #ifndef VENDOR_RMPP_SUPPORT > trim_num_rec = (MAD_BLOCK_SIZE - IB_SA_MAD_HDR_SIZE) / > sizeof(ib_service_record_t); > @@ -468,7 +467,8 @@ > > p_resp_sr = (ib_service_record_t*)ib_sa_mad_get_payload_ptr( > p_resp_sa_mad ); > > - if( num_rec == 0 ) > + if( (p_resp_sa_mad->method != IB_MAD_METHOD_GETTABLE_RESP) && > + (num_rec == 0)) > { > p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; > cl_memclr( p_resp_sr, sizeof(*p_resp_sr) ); > @@ -835,7 +835,6 @@ > p_recvd_service_rec = > (ib_service_record_t*)ib_sa_mad_get_payload_ptr( p_sa_mad ); > > - > cl_qlist_init(&sr_match_item.sr_list); > sr_match_item.p_service_rec = p_recvd_service_rec; > sr_match_item.comp_mask = p_sa_mad->comp_mask; > @@ -851,7 +850,8 @@ > __get_matching_sr, > &context); > > - if( cl_qlist_count( &sr_match_item.sr_list ) == 0 ) > + if ((p_sa_mad->method == IB_MAD_METHOD_GET) && > + (cl_qlist_count( &sr_match_item.sr_list ) == 0)) > { > cl_plock_release(p_rcv->p_lock); > > Index: osm_sa_portinfo_record.c > =================================================================== > --- osm_sa_portinfo_record.c (revision 1582) > +++ osm_sa_portinfo_record.c (working copy) > @@ -719,7 +719,7 @@ > "osm_pir_rcv_process: " > "Returning %u records.\n", num_rec ); > > - if( num_rec == 0 ) > + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) > { > osm_sa_send_error( p_rcv->p_resp, p_madw, > IB_SA_MAD_STATUS_NO_RECORDS ); > Index: osm_sa_pkey_record.c > =================================================================== > --- osm_sa_pkey_record.c (revision 1582) > +++ osm_sa_pkey_record.c (working copy) > @@ -365,7 +365,6 @@ > > cl_qlist_init( &rec_list ); > > - > context.p_rcvd_rec = p_rcvd_rec; > context.p_list = &rec_list; > context.comp_mask = p_rcvd_mad->comp_mask; > @@ -457,7 +456,7 @@ > "osm_pkey_rec_rcv_process: " > "Returning %u records.\n", num_rec ); > > - if( num_rec == 0 ) > + if((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) > { > osm_sa_send_error( p_rcv->p_resp, p_madw, > IB_SA_MAD_STATUS_NO_RECORDS ); > Index: osm_sa_slvl_record.c > =================================================================== > --- osm_sa_slvl_record.c (revision 1582) > +++ osm_sa_slvl_record.c (working copy) > @@ -485,7 +485,7 @@ > "osm_slvl_rec_rcv_process: " > "Returning %u records.\n", num_rec ); > > - if( num_rec == 0 ) > + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) > { > osm_sa_send_error( p_rcv->p_resp, p_madw, > IB_SA_MAD_STATUS_NO_RECORDS ); > Index: osm_sa_node_record.c > =================================================================== > --- osm_sa_node_record.c (revision 1582) > +++ osm_sa_node_record.c (working copy) > @@ -557,7 +557,7 @@ > "osm_nr_rcv_process: " > "Returning %u records.\n", num_rec ); > > - if( num_rec == 0 ) > + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) > { > osm_sa_send_error( p_rcv->p_resp, p_madw, > IB_SA_MAD_STATUS_NO_RECORDS ); > Index: osm_sa_link_record.c > =================================================================== > --- osm_sa_link_record.c (revision 1582) > +++ osm_sa_link_record.c (working copy) > @@ -130,7 +130,6 @@ > OSM_LOG_EXIT( p_rcv->p_log ); > } > > - > /********************************************************************** > > **********************************************************************/ > ib_api_status_t > @@ -284,7 +283,6 @@ > > } > > - > } > else > { > @@ -386,8 +384,6 @@ > OSM_LOG_EXIT( p_rcv->p_log ); > } > > - > - > /********************************************************************** > > **********************************************************************/ > static void > @@ -524,8 +520,6 @@ > OSM_LOG_EXIT( p_rcv->p_log ); > } > > - > - > /********************************************************************** > Returns the SA status to return to the client. > **********************************************************************/ > @@ -552,6 +546,8 @@ > p_lr = (ib_link_record_t*)ib_sa_mad_get_payload_ptr( p_sa_mad ); > > comp_mask = p_sa_mad->comp_mask; > + *pp_src_port = NULL; > + *pp_dest_port = NULL; > > if( p_sa_mad->comp_mask & IB_LR_COMPMASK_FROM_LID ) > { > @@ -559,10 +555,11 @@ > cl_ntoh16(p_lr->from_lid), > (void**)pp_src_port ); > > - if( (status != CL_SUCCESS) || (*pp_src_port == NULL) ) > + if( ( (status != CL_SUCCESS) || (*pp_src_port == NULL) ) && > + (p_sa_mad->method == IB_MAD_METHOD_GET) ) > { > /* > - This 'error' is a the client's fault (bad gid) so > + This 'error' is the client's fault (bad lid) so > don't enter it as an error in our own log. > Return an error response to the client. > */ > @@ -582,10 +579,11 @@ > cl_ntoh16(p_lr->to_lid), > (void**)pp_dest_port ); > > - if( (status != CL_SUCCESS) || (*pp_dest_port == NULL) ) > + if( ( (status != CL_SUCCESS) || (*pp_dest_port == NULL) ) && > + (p_sa_mad->method == IB_MAD_METHOD_GET) ) > { > /* > - This 'error' is a the client's fault (bad gid) so > + This 'error' is the client's fault (bad lid) so > don't enter it as an error in our own log. > Return an error response to the client. > */ > @@ -604,7 +602,6 @@ > return( sa_status ); > } > > - > /********************************************************************** > > **********************************************************************/ > static void > @@ -703,7 +700,6 @@ > /* C15-0.1.5 - always return SM_Key = 0 (table 151 p 782) */ > p_resp_sa_mad->sm_key = 0; > > - > #ifndef VENDOR_RMPP_SUPPORT > /* we support only one packet RMPP - so we will set the first and > last flags for gettable */ > @@ -720,7 +716,7 @@ > > p_resp_lr = (ib_link_record_t*)ib_sa_mad_get_payload_ptr( > p_resp_sa_mad ); > > - if( num_rec == 0 ) > + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) > { > p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; > cl_memclr( p_resp_lr, sizeof(*p_resp_lr) ); > @@ -762,7 +758,6 @@ > OSM_LOG_EXIT( p_rcv->p_log ); > } > > - > /********************************************************************** > > **********************************************************************/ > void > @@ -810,7 +805,6 @@ > goto Exit; > } > > - > if( osm_log_is_active( p_rcv->p_log, OSM_LOG_DEBUG ) ) > osm_dump_link_record( p_rcv->p_log, p_lr, OSM_LOG_DEBUG ); > > @@ -837,7 +831,8 @@ > > cl_plock_release( p_rcv->p_lock ); > > - if( cl_qlist_count( &lr_list ) == 0 ) > + if( (cl_qlist_count( &lr_list ) == 0) && > + (p_sa_mad->method == IB_MAD_METHOD_GET) ) > { > osm_sa_send_error( p_rcv->p_resp, p_madw, > IB_SA_MAD_STATUS_NO_RECORDS ); > Index: osm_sa_mcmember_record.c > =================================================================== > --- osm_sa_mcmember_record.c (revision 1582) > +++ osm_sa_mcmember_record.c (working copy) > @@ -1678,16 +1678,16 @@ > "osm_mcmr_query_mgrp: " > "Returning %u records.\n", num_rec ); > > - if( num_rec == 0 ) > + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) > { > osm_sa_send_error( p_rcv->p_resp, p_madw, > IB_SA_MAD_STATUS_NO_RECORDS ); > goto Exit; > } > > - /* */ > - /* Get a MAD to reply. Address of Mad is in the received > mad_wrapper > */ > - /* */ > + /* > + * Get a MAD to reply. Address of Mad is in the received > mad_wrapper > + */ > p_resp_madw = osm_mad_pool_get( p_rcv->p_mad_pool, > p_madw->h_bind, > num_rec * sizeof(ib_member_rec_t) + > IB_SA_MAD_HDR_SIZE, > Index: osm_sa_path_record.c > =================================================================== > --- osm_sa_path_record.c (revision 1582) > +++ osm_sa_path_record.c (working copy) > @@ -941,7 +941,8 @@ > > if( comp_mask & IB_PR_COMPMASK_PKEY ) > { > - if( p_pr->pkey != IB_DEFAULT_PKEY ) > + if ( (p_pr->pkey != IB_DEFAULT_PKEY) && > + (p_sa_mad->method == IB_MAD_METHOD_GET) ) > { > sa_status = IB_SA_MAD_STATUS_NO_RECORDS; > goto Exit; > @@ -950,7 +951,8 @@ > > if( comp_mask & IB_PR_COMPMASK_SL ) > { > - if( p_pr->sl != OSM_DEFAULT_SL ) > + if( (p_pr->sl != OSM_DEFAULT_SL) && > + (p_sa_mad->method == IB_MAD_METHOD_GET) ) > { > sa_status = IB_SA_MAD_STATUS_NO_RECORDS; > goto Exit; > @@ -982,15 +984,17 @@ > } > else > { > + *pp_src_port = 0; > if( p_sa_mad->comp_mask & IB_PR_COMPMASK_SLID ) > { > status = cl_ptr_vector_at( &p_rcv->p_subn->port_lid_tbl, > cl_ntoh16(p_pr->slid), > (void**)pp_src_port ); > > - if( (status != CL_SUCCESS) || (*pp_src_port == NULL) ) > + if( ( (status != CL_SUCCESS) || (*pp_src_port == NULL) ) && > + (p_sa_mad->method == IB_MAD_METHOD_GET) ) > { > /* > - This 'error' is a the client's fault (bad lid) so > + This 'error' is the client's fault (bad lid) so > don't enter it as an error in our own log. > Return an error response to the client. > */ > @@ -1002,15 +1006,7 @@ > sa_status = IB_SA_MAD_STATUS_NO_RECORDS; > goto Exit; > } > - > } > - else > - { > - /* > - No source information specified. > - */ > - *pp_src_port = 0; > - } > } > > if( p_sa_mad->comp_mask & IB_PR_COMPMASK_DGID ) > @@ -1023,7 +1019,7 @@ > &p_rcv->p_subn->port_guid_tbl ) ) > { > /* > - This 'error' is a the client's fault (bad gid) so > + This 'error' is the client's fault (bad gid) so > don't enter it as an error in our own log. > Return an error response to the client. > */ > @@ -1038,15 +1034,17 @@ > } > else > { > + *pp_dest_port = 0; > if( p_sa_mad->comp_mask & IB_PR_COMPMASK_DLID ) > { > status = cl_ptr_vector_at( &p_rcv->p_subn->port_lid_tbl, > cl_ntoh16(p_pr->dlid), > (void**)pp_dest_port ); > > - if( (status != CL_SUCCESS) || (*pp_dest_port == NULL) ) > + if( ( (status != CL_SUCCESS) || (*pp_dest_port == NULL) ) && > + (p_sa_mad->method == IB_MAD_METHOD_GET) ) > { > /* > - This 'error' is a the client's fault (bad gid) so > + This 'error' is the client's fault (bad lid) so > don't enter it as an error in our own log. > Return an error response to the client. > */ > @@ -1058,15 +1056,7 @@ > sa_status = IB_SA_MAD_STATUS_NO_RECORDS; > goto Exit; > } > - > } > - else > - { > - /* > - No destination information specified. > - */ > - *pp_dest_port = 0; > - } > } > > Exit: > @@ -1118,7 +1108,6 @@ > OSM_LOG_EXIT( p_rcv->p_log ); > } > > - > /********************************************************************** > > **********************************************************************/ > static void > @@ -1193,7 +1182,6 @@ > OSM_LOG_EXIT( p_rcv->p_log ); > } > > - > /********************************************************************** > > **********************************************************************/ > static void > @@ -1260,7 +1248,7 @@ > "Generating response with %u records.\n", num_rec ); > } > > - if( num_rec == 0 ) > + if ((p_rcvd_mad->method == IB_MAD_METHOD_GET) && (num_rec == 0)) > { > osm_sa_send_error( p_rcv->p_resp, p_madw, > IB_SA_MAD_STATUS_NO_RECORDS ); > @@ -1307,9 +1295,10 @@ > > p_resp_pr = (ib_path_rec_t*)ib_sa_mad_get_payload_ptr( > p_resp_sa_mad > ); > > - if( num_rec == 0 ) > + if ( num_rec == 0 ) > { > - p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; > + if (p_resp_sa_mad->method == IB_MAD_METHOD_GET_RESP) > + p_resp_sa_mad->status = IB_SA_MAD_STATUS_NO_RECORDS; > cl_memclr( p_resp_pr, sizeof(*p_resp_pr) ); > } > else > > > > > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit > http://openib.org/mailman/listinfo/openib-general > From tduffy at sun.com Wed Jan 19 13:30:36 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 19 Jan 2005 13:30:36 -0800 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106075184.4665.244.camel@localhost.localdomain> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> Message-ID: <1106170236.20998.14.camel@duffman> On Tue, 2005-01-18 at 14:06 -0500, Hal Rosenstock wrote: > The OpenIB MAD layer is complaining about received MADs with base > versions it doesn't understand (other than base version 1). Perhaps are > some RMPP MADs sent to it with this not set to 1 ? Who is doing this? You think Solaris, or is it openSM? > > On the Solaris side: > > > > Jan 18 10:00:20 dongon.SFBay.Sun.COM ibmf: ibmf_i_rmpp_recvr_term_flow(): Received ACK while in recv_term state for single sided trans, msgp = 0x30003770580 > > That's weird. OpenIB wouldn't send any ACKs so I'm not sure what this > is. What version were you running with ? I found another issue with > certain SA records where the PayloadLength was miscalculated and would > confuse the receiver. This was fixed in rev 1560. This is happening on the latest version of Solaris 10 with a fixed ibmf (as of today fixed a hang when first packet segment value of 0 instead of 1 is sent to it), the latest OpenIB running kernel 2.6.10 and the latest openSM (1597). -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mlleinin at hpcn.ca.sandia.gov Wed Jan 19 14:37:57 2005 From: mlleinin at hpcn.ca.sandia.gov (Matt Leininger) Date: Wed, 19 Jan 2005 14:37:57 -0800 Subject: [openib-general] OpenSM License Message-ID: <1106174277.8678.1228.camel@localhost> It appears that the OpenSM license is either the GPL license or Intel BSD + patent licence. I thought we had agreed to change the Intel BSD + patent license to the standard BSD license. Why hasn't this been changed yet? Thanks, - Matt From davem at davemloft.net Wed Jan 19 14:47:11 2005 From: davem at davemloft.net (David S. Miller) Date: Wed, 19 Jan 2005 14:47:11 -0800 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <1104812294.1085.53.camel@jzny.localdomain> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> Message-ID: <20050119144711.3fdd3d93.davem@davemloft.net> On 03 Jan 2005 23:18:14 -0500 jamal wrote: > On Mon, 2005-01-03 at 12:12, Grant Grundler wrote: > > > Some workloads that Jamal cares about (routing) only need 2 cpus. > > What bothers me is more the complexity this has introduced more than > the workload. OTOH, 1-2% improvement posted by Roland is good > justification. I think I'm going to put in something like Eric's patch and fix up the other LLTX drivers as per his sungem patch. There is a part of me that does want to yank LLTX for non-loopback out of the tree. From mshefty at ichips.intel.com Wed Jan 19 14:53:26 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 19 Jan 2005 14:53:26 -0800 Subject: [openib-general] OpenSM License In-Reply-To: <1106174277.8678.1228.camel@localhost> References: <1106174277.8678.1228.camel@localhost> Message-ID: <41EEE4E6.8070506@ichips.intel.com> Matt Leininger wrote: > It appears that the OpenSM license is either the GPL license or Intel > BSD + patent licence. I thought we had agreed to change the Intel BSD + > patent license to the standard BSD license. Why hasn't this been > changed yet? Can you change the license like that on existing code? - Sean From mst at mellanox.co.il Wed Jan 19 14:53:51 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 20 Jan 2005 00:53:51 +0200 Subject: [openib-general] Re: patches from subversion In-Reply-To: <20050119181525.GB8754@esmail.cup.hp.com> References: <20050119012557.703212cf.mshefty@ichips.intel.com> <20050119150857.GA10707@mellanox.co.il> <20050119181525.GB8754@esmail.cup.hp.com> Message-ID: <20050119225351.GA31141@mellanox.co.il> Hello! Quoting r. Grant Grundler (iod00d at hp.com) "Re: patches from subversion": > SVN appears to be missing is the "-p" support - it generates > universal diffs by default. But complains about "-up" params. This is an understatement: /* We don't currently support any options (well, other than -u, since we default to unified diff output anyway), so if we received anything other than that it's an error. */ if (diff_cmd_baton->options) { for (i = 0; i < diff_cmd_baton->options->nelts; ++i) { const char *arg = ((const char **)(diff_cmd_baton->options->elts))[i]; if (strcmp(arg, "-u") == 0) continue; else return svn_error_createf(SVN_ERR_INVALID_DIFF_OPTION, NULL, _("'%s' is not supported"), arg); } } From shemminger at osdl.org Wed Jan 19 15:18:53 2005 From: shemminger at osdl.org (Stephen Hemminger) Date: Wed, 19 Jan 2005 15:18:53 -0800 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <20050119144711.3fdd3d93.davem@davemloft.net> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> Message-ID: <20050119151853.259de49a@dxpl.pdx.osdl.net> On Wed, 19 Jan 2005 14:47:11 -0800 "David S. Miller" wrote: > On 03 Jan 2005 23:18:14 -0500 > jamal wrote: > > > On Mon, 2005-01-03 at 12:12, Grant Grundler wrote: > > > > > Some workloads that Jamal cares about (routing) only need 2 cpus. > > > > What bothers me is more the complexity this has introduced more than > > the workload. OTOH, 1-2% improvement posted by Roland is good > > justification. > > I think I'm going to put in something like Eric's patch and fix > up the other LLTX drivers as per his sungem patch. > > There is a part of me that does want to yank LLTX for non-loopback > out of the tree. Wondering, why not just have the drivers have a way to lock dev->queue_lock in the interrupt handler, and change the xmit to do spin_lock_irqsave? Any driver that assumes it is being called with irq's enabled in transmit is probably already busted anyway. -- Stephen Hemminger From davem at davemloft.net Wed Jan 19 15:41:32 2005 From: davem at davemloft.net (David S. Miller) Date: Wed, 19 Jan 2005 15:41:32 -0800 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <20050119151853.259de49a@dxpl.pdx.osdl.net> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> Message-ID: <20050119154132.68f0bb4f.davem@davemloft.net> On Wed, 19 Jan 2005 15:18:53 -0800 Stephen Hemminger wrote: > Wondering, why not just have the drivers have a way to lock dev->queue_lock > in the interrupt handler, and change the xmit to do spin_lock_irqsave? > > Any driver that assumes it is being called with irq's enabled in transmit > is probably already busted anyway. Yes, that's an idea. Effectively, LLTX is working around the fact that dev->xmit_lock is BH disabling instead of IRQ disabling. And there is no fundamental reason for that. Usually we strive for BH disabling locks in order to decrease the amount of hard IRQ disabling time in the kernel. But here, as soon as we call into ->hard_start_xmit(), the driver typically turns hard IRQs off anyways. There are other things using this though, such as multicast list upload. If we change dev->xmit_lock to be an IRQ disabling lock, then drivers can use it in place of their private tx_lock. We would still need something special for loopback, which wants and needs no locking at all. Also, changing dev->xmit_lock to be IRQ disabling is not %100 trivial. We'd need to verify the side-effects this has on gems like the spin_unlock_wait(&dev->xmit_lock) in the Tulip winbond power management code. There is another fun case in the 6pack hamradio driver where it is doing IRQ disabling when taking dev->xmit_lock. Originally, dev->xmit_lock was added so that drivers that were SMP dumb could stay that way. Thus preserving the guarentee that there would be only one active call into the dev->hard_start_xmit method across the entire system. I don't think any of that is relevant any longer. All of our network drivers are pretty clean in this regard. From robert.j.woodruff at intel.com Wed Jan 19 15:47:19 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Wed, 19 Jan 2005 15:47:19 -0800 Subject: [openib-general] OpenSM License Message-ID: <1AC79F16F5C5284499BB9591B33D6F0003541759@orsmsx408> I'll need to talk with a lawyer, since this version of OpenSM is a Mellanox derivative of the original Intel code, I am not sure we can now modify the license. -----Original Message----- From: openib-general-bounces at openib.org [mailto:openib-general-bounces at openib.org] On Behalf Of Sean Hefty Sent: Wednesday, January 19, 2005 2:53 PM To: Matt Leininger Cc: openib-general at openib.org Subject: Re: [openib-general] OpenSM License Matt Leininger wrote: > It appears that the OpenSM license is either the GPL license or Intel > BSD + patent licence. I thought we had agreed to change the Intel BSD + > patent license to the standard BSD license. Why hasn't this been > changed yet? Can you change the license like that on existing code? - Sean _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general From bill at strahm.net Wed Jan 19 15:59:00 2005 From: bill at strahm.net (bill at strahm.net) Date: Wed, 19 Jan 2005 16:59:00 -0700 Subject: [openib-general] OpenSM License Message-ID: <20050119235900.11876.qmail@webmail04.mesa1.secureserver.net> You can do anything you want if you are the copyright holder Bill > -------- Original Message -------- > Subject: Re: [openib-general] OpenSM License > From: "Sean Hefty" > Date: Wed, January 19, 2005 2:53 pm > To: "Matt Leininger" > Cc: openib-general at openib.org > > Matt Leininger wrote: > > > It appears that the OpenSM license is either the GPL license or Intel > > BSD + patent licence. I thought we had agreed to change the Intel BSD + > > patent license to the standard BSD license. Why hasn't this been > > changed yet? > > Can you change the license like that on existing code? > > - Sean > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general From robert.j.woodruff at intel.com Wed Jan 19 16:02:23 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Wed, 19 Jan 2005 16:02:23 -0800 Subject: [openib-general] OpenSM License Message-ID: <1AC79F16F5C5284499BB9591B33D6F00035417A1@orsmsx408> Ok, I'll check with our legal guys on this and see what needs to be done. -----Original Message----- From: openib-general-bounces at openib.org [mailto:openib-general-bounces at openib.org] On Behalf Of bill at strahm.net Sent: Wednesday, January 19, 2005 3:59 PM To: Sean Hefty Cc: openib-general at openib.org Subject: RE: [openib-general] OpenSM License You can do anything you want if you are the copyright holder Bill > -------- Original Message -------- > Subject: Re: [openib-general] OpenSM License > From: "Sean Hefty" > Date: Wed, January 19, 2005 2:53 pm > To: "Matt Leininger" > Cc: openib-general at openib.org > > Matt Leininger wrote: > > > It appears that the OpenSM license is either the GPL license or Intel > > BSD + patent licence. I thought we had agreed to change the Intel BSD + > > patent license to the standard BSD license. Why hasn't this been > > changed yet? > > Can you change the license like that on existing code? > > - Sean > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general From halr at voltaire.com Wed Jan 19 16:15:44 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 19 Jan 2005 19:15:44 -0500 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106170236.20998.14.camel@duffman> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> <1106170236.20998.14.camel@duffman> Message-ID: <1106180143.4648.595.camel@localhost.localdomain> On Wed, 2005-01-19 at 16:30, Tom Duffy wrote: > On Tue, 2005-01-18 at 14:06 -0500, Hal Rosenstock wrote: > > The OpenIB MAD layer is complaining about received MADs with base > > versions it doesn't understand (other than base version 1). Perhaps are > > some RMPP MADs sent to it with this not set to 1 ? > > Who is doing this? You think Solaris, or is it openSM? Solaris as OpenIB was the receiving side. > > > On the Solaris side: > > > > > > Jan 18 10:00:20 dongon.SFBay.Sun.COM ibmf: ibmf_i_rmpp_recvr_term_flow(): Received ACK while in recv_term state for single sided trans, msgp = 0x30003770580 > > That's weird. OpenIB wouldn't send any ACKs so I'm not sure what this > > is. What version were you running with ? I found another issue with > > certain SA records where the PayloadLength was miscalculated and would > > confuse the receiver. This was fixed in rev 1560. > > This is happening on the latest version of Solaris 10 with a fixed ibmf > (as of today fixed a hang when first packet segment value of 0 instead > of 1 is sent to it), the latest OpenIB running kernel 2.6.10 and the > latest openSM (1597). Latest OpenIB uses Segment Number 1 now so that shouldn't matter. The older one didn't set this (so it was 0) so basically this was fixed on both side. The OpenIB side wouldn't send an ACK so this message must indicate something else. Any chance you can get an IB trace of what is going on ? Alternatively can you dump out the MAD where the unsupported base version is printed out ? It will take me a little bit before I am setup to try to recreate this. -- Hal > -tduffy From mst at mellanox.co.il Wed Jan 19 16:36:33 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 20 Jan 2005 02:36:33 +0200 Subject: [openib-general] Re: Re: mstflint - test3 In-Reply-To: <1106163666.20998.3.camel@duffman> References: <1106163666.20998.3.camel@duffman> Message-ID: <20050120003633.GB16674@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: Re: mstflint - test3": > On Wed, 2005-01-19 at 11:18 +0200, Michael S. Tsirkin wrote: > > I think I fixed this now. Pls try again. > > This is using an unpatched mtcr.h. Looks good. > > tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q > Image type: FailSafe > Chip rev.: A1 > GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 > 50d0000100c90200 > Board ID: Cougar C > > -tduffy Actually, no, now that I look into it hard enough, GUIDs are likely wrong - almost everyone assigns running numbers to GUIDs. Could you please dump the GUIDs that mthca reports? Try this for example: cat /sys/class/infiniband/mthca0/sys_image_guid If this does not match, we still have endian-ness trouble. MST From tduffy at sun.com Wed Jan 19 16:44:27 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 19 Jan 2005 16:44:27 -0800 Subject: [openib-general] Re: Re: mstflint - test3 In-Reply-To: <20050120003633.GB16674@mellanox.co.il> References: <1106163666.20998.3.camel@duffman> <20050120003633.GB16674@mellanox.co.il> Message-ID: <1106181867.20998.39.camel@duffman> On Thu, 2005-01-20 at 02:36 +0200, Michael S. Tsirkin wrote: > Hello! > Quoting r. Tom Duffy (tduffy at sun.com) "Re: Re: mstflint - test3": > > On Wed, 2005-01-19 at 11:18 +0200, Michael S. Tsirkin wrote: > > > I think I fixed this now. Pls try again. > > > > This is using an unpatched mtcr.h. Looks good. > > > > tat:~# ./mstflint -d /proc/bus/pci/0000\:81/00.0 q > > Image type: FailSafe > > Chip rev.: A1 > > GUIDs: d05f760901c90200 d15f760901c90200 d25f760901c90200 > > 50d0000100c90200 > > Board ID: Cougar C > > > > -tduffy > > Actually, no, now that I look into it hard enough, GUIDs are likely wrong - > almost everyone assigns running numbers to GUIDs. > Could you please dump the GUIDs that mthca reports? > > Try this for example: > > cat /sys/class/infiniband/mthca0/sys_image_guid > > If this does not match, we still have endian-ness trouble. For some reason, this is what they are... tat:~# cat /sys/class/infiniband/mthca0/sys_image_guid 50d0:0001:00c9:0200 tat:~# cat /sys/class/infiniband/mthca0/node_guid d05f:7609:01c9:0200 See also the attached picture from ibsmgui. -------------- next part -------------- A non-text attachment was scrubbed... Name: guid.jpg Type: image/jpeg Size: 17558 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From tduffy at sun.com Wed Jan 19 16:48:19 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 19 Jan 2005 16:48:19 -0800 Subject: [openib-general] Re: Re: mstflint - test3 In-Reply-To: <1106181867.20998.39.camel@duffman> References: <1106163666.20998.3.camel@duffman> <20050120003633.GB16674@mellanox.co.il> <1106181867.20998.39.camel@duffman> Message-ID: <1106182099.20998.42.camel@duffman> On Wed, 2005-01-19 at 16:44 -0800, Tom Duffy wrote: > For some reason, this is what they are... I think the reason must be cause I used mstflint to update the firmware on the card :-O -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From davem at davemloft.net Wed Jan 19 16:46:40 2005 From: davem at davemloft.net (David S. Miller) Date: Wed, 19 Jan 2005 16:46:40 -0800 Subject: [openib-general] [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050119151853.259de49a@dxpl.pdx.osdl.net> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> Message-ID: <20050119164640.6c67bdfa.davem@davemloft.net> Ok, here is what something like this might look like. In summary: 1) dev->xmit_lock is now IRQ disabling instead of BH disabling 2) Drivers can use dev->xmit_lock in place of their private driver_priv->tx_lock and this is effectively the same gain LLTX gave drivers sans the race condition which started this thread. 3) NETDEV_TX_LOCKED is gone 4) LLTX stays, but this means that the driver's TX routine is %100 lockless. It is only to be used by loopback and other queueless software devices such as tunnels. BTW, one next step would be to implement things as Alexey prescribes in net/core/dev.c, that is to make all software devices %100 lockless and use LLTX. Then all the locking code under his comment in dev_queue_xmit() for the queueless device case can be deleted. We can assert the LLTX flag being set in that code path in order to catch unconverted software devices. Also, this new semantic of LLTX means that it should never be seen set in qdisc_restart() any longer. So we could remove all of that LLTX complexity from that code and assert on it not being set. That would be quite a welcome cleanup. Comments? ===== Documentation/networking/netdevices.txt 1.5 vs edited ===== --- 1.5/Documentation/networking/netdevices.txt 2004-09-12 16:55:06 -07:00 +++ edited/Documentation/networking/netdevices.txt 2005-01-19 16:09:50 -08:00 @@ -45,10 +45,9 @@ Synchronization: dev->xmit_lock spinlock. When the driver sets NETIF_F_LLTX in dev->features this will be called without holding xmit_lock. In this case the driver - has to lock by itself when needed. It is recommended to use a try lock - for this and return -1 when the spin lock fails. - The locking there should also properly protect against - set_multicast_list + has to execute it's transmission routine in a completely lockless + manner. It is recommended only for queueless devices such + loopback and tunnels. Context: BHs disabled Notes: netif_queue_stopped() is guaranteed false Return codes: @@ -56,8 +55,6 @@ o NETDEV_TX_BUSY Cannot transmit packet, try later Usually a bug, means queue start/stop flow control is broken in the driver. Note: the driver must NOT put the skb in its DMA ring. - o NETDEV_TX_LOCKED Locking failed, please retry quickly. - Only valid when NETIF_F_LLTX is set. dev->tx_timeout: Synchronization: dev->xmit_lock spinlock. ===== drivers/infiniband/ulp/ipoib/ipoib.h 1.3 vs edited ===== --- 1.3/drivers/infiniband/ulp/ipoib/ipoib.h 2005-01-15 14:01:50 -08:00 +++ edited/drivers/infiniband/ulp/ipoib/ipoib.h 2005-01-19 15:50:47 -08:00 @@ -104,10 +104,10 @@ }; /* - * Device private locking: tx_lock protects members used in TX fast - * path (and we use LLTX so upper layers don't do extra locking). - * lock protects everything else. lock nests inside of tx_lock (ie - * tx_lock must be acquired first if needed). + * Device private locking: netdev->xmit_lock protects members used + * in TX fast path. + * lock protects everything else. lock nests inside of xmit_lock (ie + * xmit_lock must be acquired first if needed). */ struct ipoib_dev_priv { spinlock_t lock; @@ -150,7 +150,6 @@ struct ipoib_buf *rx_ring; - spinlock_t tx_lock; struct ipoib_buf *tx_ring; unsigned tx_head; unsigned tx_tail; ===== drivers/infiniband/ulp/ipoib/ipoib_ib.c 1.4 vs edited ===== --- 1.4/drivers/infiniband/ulp/ipoib/ipoib_ib.c 2005-01-15 14:01:50 -08:00 +++ edited/drivers/infiniband/ulp/ipoib/ipoib_ib.c 2005-01-19 15:51:36 -08:00 @@ -247,12 +247,12 @@ dev_kfree_skb_any(tx_req->skb); - spin_lock_irqsave(&priv->tx_lock, flags); + spin_lock_irqsave(&dev->xmit_lock, flags); ++priv->tx_tail; if (netif_queue_stopped(dev) && priv->tx_head - priv->tx_tail <= IPOIB_TX_RING_SIZE / 2) netif_wake_queue(dev); - spin_unlock_irqrestore(&priv->tx_lock, flags); + spin_unlock_irqrestore(&dev->xmit_lock, flags); if (wc->status != IB_WC_SUCCESS && wc->status != IB_WC_WR_FLUSH_ERR) ===== drivers/infiniband/ulp/ipoib/ipoib_main.c 1.3 vs edited ===== --- 1.3/drivers/infiniband/ulp/ipoib/ipoib_main.c 2005-01-15 14:01:48 -08:00 +++ edited/drivers/infiniband/ulp/ipoib/ipoib_main.c 2005-01-19 15:53:27 -08:00 @@ -411,7 +411,7 @@ /* * We can only be called from ipoib_start_xmit, so we're - * inside tx_lock -- no need to save/restore flags. + * inside dev->xmit_lock -- no need to save/restore flags. */ spin_lock(&priv->lock); @@ -483,7 +483,7 @@ /* * We can only be called from ipoib_start_xmit, so we're - * inside tx_lock -- no need to save/restore flags. + * inside dev->xmit_lock -- no need to save/restore flags. */ spin_lock(&priv->lock); @@ -526,27 +526,11 @@ spin_unlock(&priv->lock); } +/* Called with dev->xmit_lock held and IRQs disabled. */ static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev) { struct ipoib_dev_priv *priv = netdev_priv(dev); struct ipoib_neigh *neigh; - unsigned long flags; - - local_irq_save(flags); - if (!spin_trylock(&priv->tx_lock)) { - local_irq_restore(flags); - return NETDEV_TX_LOCKED; - } - - /* - * Check if our queue is stopped. Since we have the LLTX bit - * set, we can't rely on netif_stop_queue() preventing our - * xmit function from being called with a full queue. - */ - if (unlikely(netif_queue_stopped(dev))) { - spin_unlock_irqrestore(&priv->tx_lock, flags); - return NETDEV_TX_BUSY; - } if (skb->dst && skb->dst->neighbour) { if (unlikely(!*to_ipoib_neigh(skb->dst->neighbour))) { @@ -601,7 +585,6 @@ } out: - spin_unlock_irqrestore(&priv->tx_lock, flags); return NETDEV_TX_OK; } @@ -797,7 +780,7 @@ dev->addr_len = INFINIBAND_ALEN; dev->type = ARPHRD_INFINIBAND; dev->tx_queue_len = IPOIB_TX_RING_SIZE * 2; - dev->features = NETIF_F_VLAN_CHALLENGED | NETIF_F_LLTX; + dev->features = NETIF_F_VLAN_CHALLENGED; /* MTU will be reset when mcast join happens */ dev->mtu = IPOIB_PACKET_SIZE - IPOIB_ENCAP_LEN; @@ -812,7 +795,6 @@ priv->dev = dev; spin_lock_init(&priv->lock); - spin_lock_init(&priv->tx_lock); init_MUTEX(&priv->mcast_mutex); init_MUTEX(&priv->vlan_mutex); ===== drivers/net/sungem.c 1.72 vs edited ===== --- 1.72/drivers/net/sungem.c 2004-11-05 15:56:15 -08:00 +++ edited/drivers/net/sungem.c 2005-01-19 15:58:26 -08:00 @@ -835,9 +835,9 @@ } /* Run TX completion thread */ - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); gem_tx(dev, gp, gp->status); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irqrestore(&gp->lock, flags); @@ -932,12 +932,12 @@ readl(gp->regs + MAC_RXCFG)); spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); gp->reset_task_pending = 2; schedule_work(&gp->reset_task); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); } @@ -955,7 +955,6 @@ struct gem *gp = dev->priv; int entry; u64 ctrl; - unsigned long flags; ctrl = 0; if (skb->ip_summed == CHECKSUM_HW) { @@ -969,17 +968,9 @@ (csum_stuff_off << 21)); } - local_irq_save(flags); - if (!spin_trylock(&gp->tx_lock)) { - /* Tell upper layer to requeue */ - local_irq_restore(flags); - return NETDEV_TX_LOCKED; - } - /* This is a hard error, log it. */ if (TX_BUFFS_AVAIL(gp) <= (skb_shinfo(skb)->nr_frags + 1)) { netif_stop_queue(dev); - spin_unlock_irqrestore(&gp->tx_lock, flags); printk(KERN_ERR PFX "%s: BUG! Tx Ring full when queue awake!\n", dev->name); return NETDEV_TX_BUSY; @@ -1066,7 +1057,6 @@ dev->name, entry, skb->len); mb(); writel(gp->tx_new, gp->regs + TXDMA_KICK); - spin_unlock_irqrestore(&gp->tx_lock, flags); dev->trans_start = jiffies; @@ -1097,11 +1087,11 @@ } spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); dev->mtu = new_mtu; gp->reset_task_pending = 1; schedule_work(&gp->reset_task); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); flush_scheduled_work(); @@ -1111,7 +1101,7 @@ #define STOP_TRIES 32 -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_stop(struct gem *gp) { int limit; @@ -1137,7 +1127,7 @@ printk(KERN_ERR "%s: SW reset is ghetto.\n", gp->dev->name); } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_start_dma(struct gem *gp) { unsigned long val; @@ -1162,7 +1152,7 @@ } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ // XXX dbl check what that function should do when called on PCS PHY static void gem_begin_auto_negotiation(struct gem *gp, struct ethtool_cmd *ep) { @@ -1249,7 +1239,7 @@ /* A link-up condition has occurred, initialize and enable the * rest of the chip. * - * Must be invoked under gp->lock and gp->tx_lock. + * Must be invoked under gp->lock and dev->xmit_lock. */ static int gem_set_link_modes(struct gem *gp) { @@ -1356,7 +1346,7 @@ return 0; } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static int gem_mdio_link_not_up(struct gem *gp) { switch (gp->lstate) { @@ -1414,7 +1404,7 @@ netif_poll_disable(gp->dev); spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); if (gp->hw_running && gp->opened) { netif_stop_queue(gp->dev); @@ -1430,7 +1420,7 @@ } gp->reset_task_pending = 0; - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); netif_poll_enable(gp->dev); } @@ -1444,7 +1434,7 @@ return; spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); /* If the link of task is still pending, we just * reschedule the link timer @@ -1514,11 +1504,11 @@ restart: mod_timer(&gp->link_timer, jiffies + ((12 * HZ) / 10)); out_unlock: - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_clean_rings(struct gem *gp) { struct gem_init_block *gb = gp->init_block; @@ -1569,7 +1559,7 @@ } } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_init_rings(struct gem *gp) { struct gem_init_block *gb = gp->init_block; @@ -1619,7 +1609,7 @@ wmb(); } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_init_phy(struct gem *gp) { u32 mifcfg; @@ -1757,7 +1747,7 @@ } } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_init_dma(struct gem *gp) { u64 desc_dma = (u64) gp->gblock_dvma; @@ -1795,7 +1785,7 @@ gp->regs + RXDMA_BLANK); } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static u32 gem_setup_multicast(struct gem *gp) { @@ -1838,7 +1828,7 @@ return rxcfg; } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_init_mac(struct gem *gp) { unsigned char *e = &gp->dev->dev_addr[0]; @@ -1916,7 +1906,7 @@ writel(0xffffffff, gp->regs + MAC_MCMASK); } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_init_pause_thresholds(struct gem *gp) { u32 cfg; @@ -2052,7 +2042,7 @@ return 0; } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_init_hw(struct gem *gp, int restart_link) { /* On Apple's gmac, I initialize the PHY only after @@ -2150,11 +2140,11 @@ if (!gp->wake_on_lan) { spin_lock_irqsave(&gp->lock, flags); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); gem_stop(gp); writel(MAC_TXRST_CMD, gp->regs + MAC_TXRST); writel(MAC_RXRST_CMD, gp->regs + MAC_RXRST); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irqrestore(&gp->lock, flags); } @@ -2202,9 +2192,9 @@ unsigned long flags; spin_lock_irqsave(&gp->lock, flags); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); gem_stop(gp); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irqrestore(&gp->lock, flags); } } @@ -2265,9 +2255,9 @@ /* Reset the chip */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); gem_stop(gp); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); gp->hw_running = 1; @@ -2281,7 +2271,7 @@ printk(KERN_ERR "%s: failed to request irq !\n", gp->dev->name); spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); #ifdef CONFIG_PPC_PMAC if (!hw_was_up && gp->pdev->vendor == PCI_VENDOR_ID_APPLE) gem_apple_powerdown(gp); @@ -2290,14 +2280,14 @@ gp->pm_timer.expires = jiffies + 10*HZ; add_timer(&gp->pm_timer); up(&gp->pm_sem); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); return -EAGAIN; } spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); /* Allocate & setup ring buffers */ gem_init_rings(gp); @@ -2307,7 +2297,7 @@ gp->opened = 1; - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); up(&gp->pm_sem); @@ -2328,7 +2318,7 @@ /* Stop traffic, mark us closed */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); gp->opened = 0; @@ -2343,7 +2333,7 @@ /* Bye, the pm timer will finish the job */ free_irq(gp->pdev->irq, (void *) dev); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); /* Fire the PM timer that will shut us down in about 10 seconds */ @@ -2374,7 +2364,7 @@ /* If the driver is opened, we stop the DMA */ if (gp->opened) { spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); /* Stop traffic, mark us closed */ netif_device_detach(dev); @@ -2385,7 +2375,7 @@ /* Get rid of ring buffers */ gem_clean_rings(gp); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); if (gp->pdev->vendor == PCI_VENDOR_ID_APPLE) @@ -2419,14 +2409,14 @@ } #endif /* CONFIG_PPC_PMAC */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); gem_stop(gp); gp->hw_running = 1; gem_init_rings(gp); gem_init_hw(gp, 1); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); netif_device_attach(dev); @@ -2447,7 +2437,7 @@ struct net_device_stats *stats = &gp->net_stats; spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); if (gp->hw_running) { stats->rx_crc_errors += readl(gp->regs + MAC_FCSERR); @@ -2467,7 +2457,7 @@ writel(0, gp->regs + MAC_LCOLL); } - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); return &gp->net_stats; @@ -2483,7 +2473,7 @@ return; spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); netif_stop_queue(dev); @@ -2508,7 +2498,7 @@ netif_wake_queue(dev); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); } @@ -2540,7 +2530,7 @@ /* Return current PHY settings */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); cmd->autoneg = gp->want_autoneg; cmd->speed = gp->phy_mii.speed; cmd->duplex = gp->phy_mii.duplex; @@ -2552,7 +2542,7 @@ */ if (cmd->advertising == 0) cmd->advertising = cmd->supported; - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); } else { // XXX PCS ? cmd->supported = @@ -2592,9 +2582,9 @@ /* Apply settings and restart link process. */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); gem_begin_auto_negotiation(gp, cmd); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); return 0; @@ -2609,9 +2599,9 @@ /* Restart link process. */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); gem_begin_auto_negotiation(gp, NULL); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); return 0; @@ -2863,7 +2853,6 @@ gp->msg_enable = DEFAULT_MSG; spin_lock_init(&gp->lock); - spin_lock_init(&gp->tx_lock); init_MUTEX(&gp->pm_sem); init_timer(&gp->link_timer); @@ -2899,9 +2888,9 @@ gem_apple_powerup(gp); #endif spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); gem_stop(gp); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); /* Fill up the mii_phy structure (even if we won't use it) */ @@ -2967,11 +2956,11 @@ /* Detect & init PHY, start autoneg */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); gp->hw_running = 1; gem_init_phy(gp); gem_begin_auto_negotiation(gp, NULL); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); if (gp->phy_type == phy_mii_mdio0 || @@ -2982,7 +2971,7 @@ pci_set_drvdata(pdev, dev); /* GEM can do it all... */ - dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_LLTX; + dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; if (pci_using_dac) dev->features |= NETIF_F_HIGHDMA; ===== drivers/net/sungem.h 1.18 vs edited ===== --- 1.18/drivers/net/sungem.h 2004-09-15 08:16:05 -07:00 +++ edited/drivers/net/sungem.h 2005-01-19 15:54:08 -08:00 @@ -953,7 +953,6 @@ struct gem { spinlock_t lock; - spinlock_t tx_lock; void __iomem *regs; int rx_new, rx_old; int tx_new, tx_old; ===== drivers/net/tg3.c 1.227 vs edited ===== --- 1.227/drivers/net/tg3.c 2005-01-17 13:40:31 -08:00 +++ edited/drivers/net/tg3.c 2005-01-19 15:43:48 -08:00 @@ -2816,9 +2816,9 @@ /* run TX completion thread */ if (sblk->idx[0].tx_consumer != tp->tx_cons) { - spin_lock(&tp->tx_lock); + spin_lock(&netdev->xmit_lock); tg3_tx(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&netdev->xmit_lock); } spin_unlock_irqrestore(&tp->lock, flags); @@ -2939,7 +2939,7 @@ tg3_netif_stop(tp); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&tp->dev->xmit_lock); restart_timer = tp->tg3_flags2 & TG3_FLG2_RESTART_TIMER; tp->tg3_flags2 &= ~TG3_FLG2_RESTART_TIMER; @@ -2949,7 +2949,7 @@ tg3_netif_start(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&tp->dev->xmit_lock); spin_unlock_irq(&tp->lock); if (restart_timer) @@ -3048,6 +3048,7 @@ (base + len + 8 < base)); } +/* dev->xmit_lock is held and IRQs are disabled. */ static int tg3_start_xmit(struct sk_buff *skb, struct net_device *dev) { struct tg3 *tp = netdev_priv(dev); @@ -3055,39 +3056,12 @@ unsigned int i; u32 len, entry, base_flags, mss; int would_hit_hwbug; - unsigned long flags; len = skb_headlen(skb); - /* No BH disabling for tx_lock here. We are running in BH disabled - * context and TX reclaim runs via tp->poll inside of a software - * interrupt. Rejoice! - * - * Actually, things are not so simple. If we are to take a hw - * IRQ here, we can deadlock, consider: - * - * CPU1 CPU2 - * tg3_start_xmit - * take tp->tx_lock - * tg3_timer - * take tp->lock - * tg3_interrupt - * spin on tp->lock - * spin on tp->tx_lock - * - * So we really do need to disable interrupts when taking - * tx_lock here. - */ - local_irq_save(flags); - if (!spin_trylock(&tp->tx_lock)) { - local_irq_restore(flags); - return NETDEV_TX_LOCKED; - } - /* This is a hard error, log it. */ if (unlikely(TX_BUFFS_AVAIL(tp) <= (skb_shinfo(skb)->nr_frags + 1))) { netif_stop_queue(dev); - spin_unlock_irqrestore(&tp->tx_lock, flags); printk(KERN_ERR PFX "%s: BUG! Tx Ring full when queue awake!\n", dev->name); return NETDEV_TX_BUSY; @@ -3224,7 +3198,7 @@ entry, len, last_plus_one, &start, mss)) - goto out_unlock; + goto out; entry = start; } @@ -3236,9 +3210,8 @@ if (TX_BUFFS_AVAIL(tp) <= (MAX_SKB_FRAGS + 1)) netif_stop_queue(dev); -out_unlock: +out: mmiowb(); - spin_unlock_irqrestore(&tp->tx_lock, flags); dev->trans_start = jiffies; @@ -3273,7 +3246,7 @@ tg3_netif_stop(tp); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_halt(tp); @@ -3283,7 +3256,7 @@ tg3_netif_start(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); return 0; @@ -5574,7 +5547,7 @@ unsigned long flags; spin_lock_irqsave(&tp->lock, flags); - spin_lock(&tp->tx_lock); + spin_lock(&tp->dev->xmit_lock); /* All of this garbage is because when using non-tagged * IRQ status the mailbox/status_block protocol the chip @@ -5590,7 +5563,7 @@ if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) { tp->tg3_flags2 |= TG3_FLG2_RESTART_TIMER; - spin_unlock(&tp->tx_lock); + spin_unlock(&tp->dev->xmit_lock); spin_unlock_irqrestore(&tp->lock, flags); schedule_work(&tp->reset_task); return; @@ -5659,7 +5632,7 @@ tp->asf_counter = tp->asf_multiplier; } - spin_unlock(&tp->tx_lock); + spin_unlock(&tp->dev->xmit_lock); spin_unlock_irqrestore(&tp->lock, flags); tp->timer.expires = jiffies + tp->timer_offset; @@ -5672,12 +5645,12 @@ int err; spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_disable_ints(tp); tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE; - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); /* The placement of this call is tied @@ -5696,7 +5669,7 @@ } spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); err = tg3_init_hw(tp); if (err) { @@ -5716,7 +5689,7 @@ tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE; } - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); if (err) { @@ -5726,11 +5699,11 @@ } spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_enable_ints(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); netif_start_queue(dev); @@ -5978,7 +5951,7 @@ del_timer_sync(&tp->timer); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); #if 0 tg3_dump_state(tp); #endif @@ -5992,7 +5965,7 @@ TG3_FLAG_GOT_SERDES_FLOWCTL); netif_carrier_off(tp->dev); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); free_irq(dev->irq, dev); @@ -6296,9 +6269,9 @@ struct tg3 *tp = netdev_priv(dev); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); __tg3_set_rx_mode(dev); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); } @@ -6322,7 +6295,7 @@ memset(p, 0, TG3_REGDUMP_LEN); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); #define __GET_REG32(reg) (*(p)++ = tr32(reg)) #define GET_REG32_LOOP(base,len) \ @@ -6372,7 +6345,7 @@ #undef GET_REG32_LOOP #undef GET_REG32_1 - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); } @@ -6496,7 +6469,7 @@ } spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tp->link_config.autoneg = cmd->autoneg; if (cmd->autoneg == AUTONEG_ENABLE) { @@ -6510,7 +6483,7 @@ } tg3_setup_phy(tp, 1); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); return 0; @@ -6627,7 +6600,7 @@ tg3_netif_stop(tp); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tp->rx_pending = ering->rx_pending; @@ -6640,7 +6613,7 @@ tg3_halt(tp); tg3_init_hw(tp); tg3_netif_start(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); return 0; @@ -6661,7 +6634,7 @@ tg3_netif_stop(tp); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); if (epause->autoneg) tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG; else @@ -6677,7 +6650,7 @@ tg3_halt(tp); tg3_init_hw(tp); tg3_netif_start(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); return 0; @@ -6803,14 +6776,14 @@ struct tg3 *tp = netdev_priv(dev); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tp->vlgrp = grp; /* Update RX_MODE_KEEP_VLAN_TAG bit in RX_MODE register. */ __tg3_set_rx_mode(dev); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); } @@ -6819,10 +6792,10 @@ struct tg3 *tp = netdev_priv(dev); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); if (tp->vlgrp) tp->vlgrp->vlan_devices[vid] = NULL; - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); } #endif @@ -8241,7 +8214,6 @@ if (pci_using_dac) dev->features |= NETIF_F_HIGHDMA; - dev->features |= NETIF_F_LLTX; #if TG3_VLAN_TAG_USED dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX; dev->vlan_rx_register = tg3_vlan_rx_register; @@ -8283,7 +8255,6 @@ tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA; #endif spin_lock_init(&tp->lock); - spin_lock_init(&tp->tx_lock); spin_lock_init(&tp->indirect_lock); INIT_WORK(&tp->reset_task, tg3_reset_task, tp); @@ -8496,23 +8467,23 @@ del_timer_sync(&tp->timer); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_disable_ints(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); netif_device_detach(dev); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_halt(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); err = tg3_set_power_state(tp, state); if (err) { spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_init_hw(tp); @@ -8522,7 +8493,7 @@ netif_device_attach(dev); tg3_netif_start(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); } @@ -8547,7 +8518,7 @@ netif_device_attach(dev); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_init_hw(tp); @@ -8558,7 +8529,7 @@ tg3_netif_start(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); return 0; ===== drivers/net/tg3.h 1.52 vs edited ===== --- 1.52/drivers/net/tg3.h 2004-11-15 15:41:31 -08:00 +++ edited/drivers/net/tg3.h 2005-01-19 15:37:29 -08:00 @@ -1980,12 +1980,11 @@ * lock: Held during all operations except TX packet * processing. * - * tx_lock: Held during tg3_start_xmit{,_4gbug} and tg3_tx + * dev->xmit_lock: Held during tg3_start_xmit and tg3_tx * * If you want to shut up all asynchronous processing you must - * acquire both locks, 'lock' taken before 'tx_lock'. IRQs must - * be disabled to take 'lock' but only softirq disabling is - * necessary for acquisition of 'tx_lock'. + * acquire both locks, 'lock' taken before 'xmit_lock'. IRQs must + * be disabled to take either lock. */ spinlock_t lock; spinlock_t indirect_lock; @@ -2003,8 +2002,6 @@ u32 tx_prod; u32 tx_cons; u32 tx_pending; - - spinlock_t tx_lock; struct tg3_tx_buffer_desc *tx_ring; struct tx_ring_info *tx_buffers; ===== drivers/net/e1000/e1000.h 1.58 vs edited ===== --- 1.58/drivers/net/e1000/e1000.h 2004-10-25 18:13:57 -07:00 +++ edited/drivers/net/e1000/e1000.h 2005-01-19 15:45:31 -08:00 @@ -209,7 +209,6 @@ /* TX */ struct e1000_desc_ring tx_ring; - spinlock_t tx_lock; uint32_t txd_cmd; uint32_t tx_int_delay; uint32_t tx_abs_int_delay; ===== drivers/net/e1000/e1000_main.c 1.145 vs edited ===== --- 1.145/drivers/net/e1000/e1000_main.c 2005-01-10 21:03:21 -08:00 +++ edited/drivers/net/e1000/e1000_main.c 2005-01-19 15:46:15 -08:00 @@ -520,9 +520,6 @@ if(pci_using_dac) netdev->features |= NETIF_F_HIGHDMA; - /* hard_start_xmit is safe against parallel locking */ - netdev->features |= NETIF_F_LLTX; - /* before reading the EEPROM, reset the controller to * put the device in a known good starting state */ @@ -732,7 +729,6 @@ atomic_set(&adapter->irq_sem, 1); spin_lock_init(&adapter->stats_lock); - spin_lock_init(&adapter->tx_lock); return 0; } @@ -1308,7 +1304,7 @@ /* Check for Promiscuous and All Multicast modes */ - spin_lock_irqsave(&adapter->tx_lock, flags); + spin_lock_irqsave(&netdev->xmit_lock, flags); rctl = E1000_READ_REG(hw, RCTL); @@ -1359,7 +1355,7 @@ if(hw->mac_type == e1000_82542_rev2_0) e1000_leave_82542_rst(adapter); - spin_unlock_irqrestore(&adapter->tx_lock, flags); + spin_unlock_irqrestore(&netdev->xmit_lock, flags); } /* Need to wait a few seconds after link up to get diagnostic information from @@ -1786,6 +1782,8 @@ } #define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 ) + +/* Called with dev->xmit_lock held and interrupts disabled. */ static int e1000_xmit_frame(struct sk_buff *skb, struct net_device *netdev) { @@ -1794,7 +1792,6 @@ unsigned int max_txd_pwr = E1000_MAX_TXD_PWR; unsigned int tx_flags = 0; unsigned int len = skb->len; - unsigned long flags; unsigned int nr_frags = 0; unsigned int mss = 0; int count = 0; @@ -1838,18 +1835,10 @@ if(adapter->pcix_82544) count += nr_frags; - local_irq_save(flags); - if (!spin_trylock(&adapter->tx_lock)) { - /* Collision - tell upper layer to requeue */ - local_irq_restore(flags); - return NETDEV_TX_LOCKED; - } - /* need: count + 2 desc gap to keep tail from touching * head, otherwise try next time */ if(unlikely(E1000_DESC_UNUSED(&adapter->tx_ring) < count + 2)) { netif_stop_queue(netdev); - spin_unlock_irqrestore(&adapter->tx_lock, flags); return NETDEV_TX_BUSY; } @@ -1857,7 +1846,6 @@ if(unlikely(e1000_82547_fifo_workaround(adapter, skb))) { netif_stop_queue(netdev); mod_timer(&adapter->tx_fifo_stall_timer, jiffies); - spin_unlock_irqrestore(&adapter->tx_lock, flags); return NETDEV_TX_BUSY; } } @@ -1884,7 +1872,6 @@ if(unlikely(E1000_DESC_UNUSED(&adapter->tx_ring) < MAX_SKB_FRAGS + 2)) netif_stop_queue(netdev); - spin_unlock_irqrestore(&adapter->tx_lock, flags); return NETDEV_TX_OK; } @@ -2234,13 +2221,13 @@ tx_ring->next_to_clean = i; - spin_lock(&adapter->tx_lock); + spin_lock(&netdev->xmit_lock); if(unlikely(cleaned && netif_queue_stopped(netdev) && netif_carrier_ok(netdev))) netif_wake_queue(netdev); - spin_unlock(&adapter->tx_lock); + spin_unlock(&netdev->xmit_lock); return cleaned; } ===== include/linux/netdevice.h 1.96 vs edited ===== --- 1.96/include/linux/netdevice.h 2005-01-17 13:13:31 -08:00 +++ edited/include/linux/netdevice.h 2005-01-19 16:07:45 -08:00 @@ -76,7 +76,6 @@ /* Driver transmit return codes */ #define NETDEV_TX_OK 0 /* driver took care of packet */ #define NETDEV_TX_BUSY 1 /* driver tx path was busy*/ -#define NETDEV_TX_LOCKED -1 /* driver tx lock was already taken */ /* * Compute the worst case header length according to the protocols @@ -415,7 +414,7 @@ #define NETIF_F_HW_VLAN_FILTER 512 /* Receive filtering on VLAN */ #define NETIF_F_VLAN_CHALLENGED 1024 /* Device cannot handle VLAN packets */ #define NETIF_F_TSO 2048 /* Can offload TCP/IP segmentation */ -#define NETIF_F_LLTX 4096 /* LockLess TX */ +#define NETIF_F_LLTX 4096 /* Do not grab xmit_lock during ->hard_start_xmit */ /* Called after device is detached from network. */ void (*uninit)(struct net_device *dev); @@ -894,9 +893,11 @@ static inline void netif_tx_disable(struct net_device *dev) { - spin_lock_bh(&dev->xmit_lock); + unsigned long flags; + + spin_lock_irqsave(&dev->xmit_lock, flags); netif_stop_queue(dev); - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irqrestore(&dev->xmit_lock, flags); } /* These functions live elsewhere (drivers/net/net_init.c, but related) */ ===== net/atm/clip.c 1.43 vs edited ===== --- 1.43/net/atm/clip.c 2004-10-01 14:50:07 -07:00 +++ edited/net/atm/clip.c 2005-01-19 16:04:55 -08:00 @@ -97,7 +97,7 @@ printk(KERN_CRIT "!clip_vcc->entry (clip_vcc %p)\n",clip_vcc); return; } - spin_lock_bh(&entry->neigh->dev->xmit_lock); /* block clip_start_xmit() */ + spin_lock_irq(&entry->neigh->dev->xmit_lock); /* block clip_start_xmit() */ entry->neigh->used = jiffies; for (walk = &entry->vccs; *walk; walk = &(*walk)->next) if (*walk == clip_vcc) { @@ -121,7 +121,7 @@ printk(KERN_CRIT "ATMARP: unlink_clip_vcc failed (entry %p, vcc " "0x%p)\n",entry,clip_vcc); out: - spin_unlock_bh(&entry->neigh->dev->xmit_lock); + spin_unlock_irq(&entry->neigh->dev->xmit_lock); } /* The neighbour entry n->lock is held. */ ===== net/core/dev.c 1.181 vs edited ===== --- 1.181/net/core/dev.c 2005-01-13 20:41:04 -08:00 +++ edited/net/core/dev.c 2005-01-19 16:00:08 -08:00 @@ -1190,7 +1190,7 @@ #define HARD_TX_LOCK(dev, cpu) { \ if ((dev->features & NETIF_F_LLTX) == 0) { \ - spin_lock(&dev->xmit_lock); \ + spin_lock_irq(&dev->xmit_lock); \ dev->xmit_lock_owner = cpu; \ } \ } @@ -1198,7 +1198,7 @@ #define HARD_TX_UNLOCK(dev) { \ if ((dev->features & NETIF_F_LLTX) == 0) { \ dev->xmit_lock_owner = -1; \ - spin_unlock(&dev->xmit_lock); \ + spin_unlock_irq(&dev->xmit_lock); \ } \ } ===== net/core/dev_mcast.c 1.4 vs edited ===== --- 1.4/net/core/dev_mcast.c 2004-10-20 01:37:15 -07:00 +++ edited/net/core/dev_mcast.c 2005-01-19 16:05:35 -08:00 @@ -93,9 +93,9 @@ void dev_mc_upload(struct net_device *dev) { - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); __dev_mc_upload(dev); - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); } /* @@ -107,7 +107,7 @@ int err = 0; struct dev_mc_list *dmi, **dmip; - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); for (dmip = &dev->mc_list; (dmi = *dmip) != NULL; dmip = &dmi->next) { /* @@ -139,13 +139,13 @@ */ __dev_mc_upload(dev); - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); return 0; } } err = -ENOENT; done: - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); return err; } @@ -160,7 +160,7 @@ dmi1 = (struct dev_mc_list *)kmalloc(sizeof(*dmi), GFP_ATOMIC); - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); for (dmi = dev->mc_list; dmi != NULL; dmi = dmi->next) { if (memcmp(dmi->dmi_addr, addr, dmi->dmi_addrlen) == 0 && dmi->dmi_addrlen == alen) { @@ -176,7 +176,7 @@ } if ((dmi = dmi1) == NULL) { - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); return -ENOMEM; } memcpy(dmi->dmi_addr, addr, alen); @@ -189,11 +189,11 @@ __dev_mc_upload(dev); - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); return 0; done: - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); if (dmi1) kfree(dmi1); return err; @@ -205,7 +205,7 @@ void dev_mc_discard(struct net_device *dev) { - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); while (dev->mc_list != NULL) { struct dev_mc_list *tmp = dev->mc_list; @@ -216,7 +216,7 @@ } dev->mc_count = 0; - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); } #ifdef CONFIG_PROC_FS @@ -251,7 +251,7 @@ struct dev_mc_list *m; struct net_device *dev = v; - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); for (m = dev->mc_list; m; m = m->next) { int i; @@ -263,7 +263,7 @@ seq_putc(seq, '\n'); } - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); return 0; } ===== net/core/netpoll.c 1.24 vs edited ===== --- 1.24/net/core/netpoll.c 2005-01-13 20:41:04 -08:00 +++ edited/net/core/netpoll.c 2005-01-19 16:05:56 -08:00 @@ -188,7 +188,7 @@ return; } - spin_lock(&np->dev->xmit_lock); + spin_lock_irq(&np->dev->xmit_lock); np->dev->xmit_lock_owner = smp_processor_id(); /* @@ -197,7 +197,7 @@ */ if (netif_queue_stopped(np->dev)) { np->dev->xmit_lock_owner = -1; - spin_unlock(&np->dev->xmit_lock); + spin_unlock_irq(&np->dev->xmit_lock); netpoll_poll(np); goto repeat; @@ -205,7 +205,7 @@ status = np->dev->hard_start_xmit(skb, np->dev); np->dev->xmit_lock_owner = -1; - spin_unlock(&np->dev->xmit_lock); + spin_unlock_irq(&np->dev->xmit_lock); /* transmit busy */ if(status) { ===== net/core/pktgen.c 1.21 vs edited ===== --- 1.21/net/core/pktgen.c 2005-01-10 11:32:10 -08:00 +++ edited/net/core/pktgen.c 2005-01-19 16:07:58 -08:00 @@ -2664,12 +2664,11 @@ } } - spin_lock_bh(&odev->xmit_lock); + spin_lock_irq(&odev->xmit_lock); if (!netif_queue_stopped(odev)) { u64 now; atomic_inc(&(pkt_dev->skb->users)); -retry_now: ret = odev->hard_start_xmit(pkt_dev->skb, odev); if (likely(ret == NETDEV_TX_OK)) { pkt_dev->last_ok = 1; @@ -2677,10 +2676,6 @@ pkt_dev->seq_num++; pkt_dev->tx_bytes += pkt_dev->cur_pkt_size; - } else if (ret == NETDEV_TX_LOCKED - && (odev->features & NETIF_F_LLTX)) { - cpu_relax(); - goto retry_now; } else { /* Retry it next time */ atomic_dec(&(pkt_dev->skb->users)); @@ -2716,7 +2711,7 @@ pkt_dev->next_tx_ns = 0; } - spin_unlock_bh(&odev->xmit_lock); + spin_unlock_irq(&odev->xmit_lock); /* If pkt_dev->count is zero, then run forever */ if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) { ===== net/sched/sch_generic.c 1.33 vs edited ===== --- 1.33/net/sched/sch_generic.c 2005-01-13 20:41:07 -08:00 +++ edited/net/sched/sch_generic.c 2005-01-19 16:10:49 -08:00 @@ -99,16 +99,11 @@ if ((skb = q->dequeue(q)) != NULL) { unsigned nolock = (dev->features & NETIF_F_LLTX); /* - * When the driver has LLTX set it does its own locking - * in start_xmit. No need to add additional overhead by - * locking again. These checks are worth it because - * even uncongested locks can be quite expensive. - * The driver can do trylock like here too, in case - * of lock congestion it should return -1 and the packet - * will be requeued. + * When the driver has LLTX set it does not require any + * locking in start_xmit. */ if (!nolock) { - if (!spin_trylock(&dev->xmit_lock)) { + if (!spin_trylock_irq(&dev->xmit_lock)) { collision: /* So, someone grabbed the driver. */ @@ -143,22 +138,18 @@ if (ret == NETDEV_TX_OK) { if (!nolock) { dev->xmit_lock_owner = -1; - spin_unlock(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); } spin_lock(&dev->queue_lock); return -1; } - if (ret == NETDEV_TX_LOCKED && nolock) { - spin_lock(&dev->queue_lock); - goto collision; - } } /* NETDEV_TX_BUSY - we need to requeue */ /* Release the driver */ if (!nolock) { dev->xmit_lock_owner = -1; - spin_unlock(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); } spin_lock(&dev->queue_lock); q = dev->qdisc; @@ -186,7 +177,7 @@ { struct net_device *dev = (struct net_device *)arg; - spin_lock(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); if (dev->qdisc != &noop_qdisc) { if (netif_device_present(dev) && netif_running(dev) && @@ -200,7 +191,7 @@ dev_hold(dev); } } - spin_unlock(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); dev_put(dev); } @@ -224,17 +215,17 @@ static void dev_watchdog_up(struct net_device *dev) { - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); __netdev_watchdog_up(dev); - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); } static void dev_watchdog_down(struct net_device *dev) { - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); if (del_timer(&dev->watchdog_timer)) __dev_put(dev); - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); } /* "NOOP" scheduler: the best scheduler, recommended for all interfaces ===== net/sched/sch_teql.c 1.16 vs edited ===== --- 1.16/net/sched/sch_teql.c 2004-10-21 22:21:24 -07:00 +++ edited/net/sched/sch_teql.c 2005-01-19 16:06:11 -08:00 @@ -301,12 +301,12 @@ switch (teql_resolve(skb, skb_res, slave)) { case 0: - if (spin_trylock(&slave->xmit_lock)) { + if (spin_trylock_irq(&slave->xmit_lock)) { slave->xmit_lock_owner = smp_processor_id(); if (!netif_queue_stopped(slave) && slave->hard_start_xmit(skb, slave) == 0) { slave->xmit_lock_owner = -1; - spin_unlock(&slave->xmit_lock); + spin_unlock_irq(&slave->xmit_lock); master->slaves = NEXT_SLAVE(q); netif_wake_queue(dev); master->stats.tx_packets++; @@ -314,7 +314,7 @@ return 0; } slave->xmit_lock_owner = -1; - spin_unlock(&slave->xmit_lock); + spin_unlock_irq(&slave->xmit_lock); } if (netif_queue_stopped(dev)) busy = 1; From mst at mellanox.co.il Wed Jan 19 16:54:44 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 20 Jan 2005 02:54:44 +0200 Subject: [openib-general] Re: Re: mstflint - test3 In-Reply-To: <1106182099.20998.42.camel@duffman> References: <1106182099.20998.42.camel@duffman> Message-ID: <20050120005444.GA32105@mellanox.co.il> Hello! Quoting r. Tom Duffy (tduffy at sun.com) "Re: [openib-general] Re: Re: mstflint - test3": > On Wed, 2005-01-19 at 16:44 -0800, Tom Duffy wrote: > > For some reason, this is what they are... > > I think the reason must be cause I used mstflint to update the firmware > on the card :-O > > -tduffy When we still had a bug? Maybe. Oh, then I think you shall manually put them back, flint will let you override guids from the command line. I think you want all bytes to be reversed so that the lsb is incremented. mst From robert.j.woodruff at intel.com Wed Jan 19 17:15:59 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Wed, 19 Jan 2005 17:15:59 -0800 Subject: [openib-general] OpenSM License Message-ID: <1AC79F16F5C5284499BB9591B33D6F0003541912@orsmsx408> I checked with my legal person and he said it was not a big deal to change the license. He suggested a quick conference call between Intel, Mellanox and Voltaire legal representatives could straighten this out. Eitan/Shaharf, Can you provide contact information on your side and I will try to set up a conference call to try to discuss this. woody -----Original Message----- From: openib-general-bounces at openib.org [mailto:openib-general-bounces at openib.org] On Behalf Of Woodruff, Robert J Sent: Wednesday, January 19, 2005 4:02 PM To: bill at strahm.net; Sean Hefty Cc: openib-general at openib.org Subject: RE: [openib-general] OpenSM License Ok, I'll check with our legal guys on this and see what needs to be done. -----Original Message----- From: openib-general-bounces at openib.org [mailto:openib-general-bounces at openib.org] On Behalf Of bill at strahm.net Sent: Wednesday, January 19, 2005 3:59 PM To: Sean Hefty Cc: openib-general at openib.org Subject: RE: [openib-general] OpenSM License You can do anything you want if you are the copyright holder Bill > -------- Original Message -------- > Subject: Re: [openib-general] OpenSM License > From: "Sean Hefty" > Date: Wed, January 19, 2005 2:53 pm > To: "Matt Leininger" > Cc: openib-general at openib.org > > Matt Leininger wrote: > > > It appears that the OpenSM license is either the GPL license or Intel > > BSD + patent licence. I thought we had agreed to change the Intel BSD + > > patent license to the standard BSD license. Why hasn't this been > > changed yet? > > Can you change the license like that on existing code? > > - Sean > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general From mst at mellanox.co.il Wed Jan 19 17:18:55 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 20 Jan 2005 03:18:55 +0200 Subject: [openib-general] ipoib_send locking Message-ID: <20050120011855.GA32321@mellanox.co.il> Hi, Roland! Is it true that some lock is being held when you call ipoib_send? It *is* needed, since you do things like ++priv->tx_head. MST From mst at mellanox.co.il Wed Jan 19 17:38:04 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Thu, 20 Jan 2005 03:38:04 +0200 Subject: [openib-general] open-ib footer (was Re: OpenSM License) Message-ID: <20050120013804.GB32321@mellanox.co.il> > > [... snip ...] > > _______________________________________________ > > openib-general mailing list > > openib-general at openib.org > > http://openib.org/mailman/listinfo/openib-general > > > > To unsubscribe, please visit > http://openib.org/mailman/listinfo/openib-general > > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit > http://openib.org/mailman/listinfo/openib-general > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit > http://openib.org/mailman/listinfo/openib-general > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general > Dear list maintainers: Please look at an example correspondence above - this is a bit too much, dont you find? This happends of course because people dont have the time to edit out the list information that it automatically tacked onto each message that goes through this list. Everyone here subscribed on his own accord, and there is a confirmation step involved, too. Is it *really* necessary to tack list information on to each message? The subject already includes [openib-general] - is that not a prominent enough placement? I know *I* would appreciate it very much if mail body would arrive without this addition, and I am sure no one will feel any loss for it. Thanks in advance, I appreciate your hard work. MST From tduffy at sun.com Wed Jan 19 17:44:20 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 19 Jan 2005 17:44:20 -0800 Subject: [openib-general] open-ib footer (was Re: OpenSM License) In-Reply-To: <20050120013804.GB32321@mellanox.co.il> References: <20050120013804.GB32321@mellanox.co.il> Message-ID: <1106185460.20998.57.camel@duffman> On Thu, 2005-01-20 at 03:38 +0200, Michael S. Tsirkin wrote: > I know *I* would appreciate it very much if mail body would arrive without > this addition, and I am sure no one will feel any loss for it. You know what would fix this? Not top posting. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From libor at topspin.com Wed Jan 19 18:03:38 2005 From: libor at topspin.com (Libor Michalek) Date: Wed, 19 Jan 2005 18:03:38 -0800 Subject: [openib-general] open-ib footer (was Re: OpenSM License) In-Reply-To: <1106185460.20998.57.camel@duffman>; from tduffy@sun.com on Wed, Jan 19, 2005 at 05:44:20PM -0800 References: <20050120013804.GB32321@mellanox.co.il> <1106185460.20998.57.camel@duffman> Message-ID: <20050119180338.A564@topspin.com> Because it reverses the logical flow of conversation. > Why is top posting frowned upon? > > >> the most annoying thing on usenet and in email? >> >> >>> What is top posting? >>> >>> >>>> You know what would fix this? >>>> Not top posting. >>>> >>>> >>>>> I know *I* would appreciate it very much if mail body would arrive >>>>> without this addition, and I am sure no one will feel any loss for it. >>>>> Sorry, couldn't resist, but I do agree with Tom. -Libor From mlleinin at hpcn.ca.sandia.gov Wed Jan 19 19:26:33 2005 From: mlleinin at hpcn.ca.sandia.gov (Matt Leininger) Date: Wed, 19 Jan 2005 19:26:33 -0800 Subject: [openib-general] OpenSM License In-Reply-To: <41EEE4E6.8070506@ichips.intel.com> References: <1106174277.8678.1228.camel@localhost> <41EEE4E6.8070506@ichips.intel.com> Message-ID: <1106191593.2787.1255.camel@localhost> On Wed, 2005-01-19 at 14:53 -0800, Sean Hefty wrote: > Matt Leininger wrote: > > > It appears that the OpenSM license is either the GPL license or Intel > > BSD + patent licence. I thought we had agreed to change the Intel BSD + > > patent license to the standard BSD license. Why hasn't this been > > changed yet? > > Can you change the license like that on existing code? > Intel said they would. :) - Matt From ak at suse.de Wed Jan 19 19:14:23 2005 From: ak at suse.de (Andi Kleen) Date: Thu, 20 Jan 2005 04:14:23 +0100 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050119164640.6c67bdfa.davem@davemloft.net> References: <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> Message-ID: <20050120031423.GC30088@wotan.suse.de> On Wed, Jan 19, 2005 at 04:46:40PM -0800, David S. Miller wrote: > Ok, here is what something like this might look like. > > In summary: > > 1) dev->xmit_lock is now IRQ disabling instead of BH disabling > 2) Drivers can use dev->xmit_lock in place of their private > driver_priv->tx_lock and this is effectively the same gain > LLTX gave drivers sans the race condition which started this > thread. > 3) NETDEV_TX_LOCKED is gone > 4) LLTX stays, but this means that the driver's TX routine is > %100 lockless. It is only to be used by loopback and other > queueless software devices such as tunnels. Looks good to me and much cleaner than what I initially did. Thanks. -Andi From shemminger at osdl.org Wed Jan 19 16:46:14 2005 From: shemminger at osdl.org (Stephen Hemminger) Date: Wed, 19 Jan 2005 16:46:14 -0800 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <41EEF52C.8000905@pobox.com> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119154132.68f0bb4f.davem@davemloft.net> <41EEF52C.8000905@pobox.com> Message-ID: <20050119164614.6f74daf3@dxpl.pdx.osdl.net> On Wed, 19 Jan 2005 19:02:52 -0500 Jeff Garzik wrote: > David S. Miller wrote: > > Usually we strive for BH disabling locks in order to decrease the > > amount of hard IRQ disabling time in the kernel. But here, as soon > > as we call into ->hard_start_xmit(), the driver typically turns hard > > IRQs off anyways. > [...] > > Also, changing dev->xmit_lock to be IRQ disabling is not %100 trivial. > > > Agreed on both counts... But in the end it would be safer than the current LLTX usage in drivers which seems like it opening up problems. -- Stephen Hemminger From davem at davemloft.net Wed Jan 19 16:47:21 2005 From: davem at davemloft.net (David S. Miller) Date: Wed, 19 Jan 2005 16:47:21 -0800 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <20050119164614.6f74daf3@dxpl.pdx.osdl.net> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119154132.68f0bb4f.davem@davemloft.net> <41EEF52C.8000905@pobox.com> <20050119164614.6f74daf3@dxpl.pdx.osdl.net> Message-ID: <20050119164721.34745a81.davem@davemloft.net> On Wed, 19 Jan 2005 16:46:14 -0800 Stephen Hemminger wrote: > But in the end it would be safer than the current LLTX usage in drivers > which seems like it opening up problems. Agreed, see my prototype patch in a posting I just made. From davem at davemloft.net Wed Jan 19 16:52:47 2005 From: davem at davemloft.net (David S. Miller) Date: Wed, 19 Jan 2005 16:52:47 -0800 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <20050120004753.GB2330@electric-eye.fr.zoreil.com> References: <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119154132.68f0bb4f.davem@davemloft.net> <20050120004753.GB2330@electric-eye.fr.zoreil.com> Message-ID: <20050119165247.5d4cec51.davem@davemloft.net> On Thu, 20 Jan 2005 01:47:53 +0100 Francois Romieu wrote: > David S. Miller : > [...] > > Originally, dev->xmit_lock was added so that drivers that were SMP dumb > > could stay that way. Thus preserving the guarentee that there would be > > only one active call into the dev->hard_start_xmit method across the > > entire system. I don't think any of that is relevant any longer. All > > of our network drivers are pretty clean in this regard. > > (nit) > > Almost all. I used the fact that dev->hard_start_xmit was issued in > a bh disabled context to exchange spinlock_irqsave for ordered ops > on ring indexes so as to sync hard_start_xmit and the irq handler in > the r8169 driver. It is a bit sick but Jon Mason reported it made a > noticeable difference to avoid the irqsave on its 4 way ppc64 and > nobody complained about it. Hmmm... ok then. Unfortunately, my prototype patch I just posted will make IRQs get disabled in the ->hard_start_xmit() path. BTW, in your close() routine you do this: /* Give a racing hard_start_xmit a few cycles to complete. */ set_current_state(TASK_UNINTERRUPTIBLE); schedule_timeout(1); This is no guarentee of progress. You might instead want to do a synchronize_kernel() or similar, which does in fact guarentee a quiescent state. Or if my patch goes in use spin_unlock_wait(&netdev->xmit_lock) ;-) From jgarzik at pobox.com Wed Jan 19 16:02:52 2005 From: jgarzik at pobox.com (Jeff Garzik) Date: Wed, 19 Jan 2005 19:02:52 -0500 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <20050119154132.68f0bb4f.davem@davemloft.net> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119154132.68f0bb4f.davem@davemloft.net> Message-ID: <41EEF52C.8000905@pobox.com> David S. Miller wrote: > Usually we strive for BH disabling locks in order to decrease the > amount of hard IRQ disabling time in the kernel. But here, as soon > as we call into ->hard_start_xmit(), the driver typically turns hard > IRQs off anyways. [...] > Also, changing dev->xmit_lock to be IRQ disabling is not %100 trivial. Agreed on both counts... From romieu at fr.zoreil.com Wed Jan 19 16:47:53 2005 From: romieu at fr.zoreil.com (Francois Romieu) Date: Thu, 20 Jan 2005 01:47:53 +0100 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <20050119154132.68f0bb4f.davem@davemloft.net> References: <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119154132.68f0bb4f.davem@davemloft.net> Message-ID: <20050120004753.GB2330@electric-eye.fr.zoreil.com> David S. Miller : [...] > Originally, dev->xmit_lock was added so that drivers that were SMP dumb > could stay that way. Thus preserving the guarentee that there would be > only one active call into the dev->hard_start_xmit method across the > entire system. I don't think any of that is relevant any longer. All > of our network drivers are pretty clean in this regard. (nit) Almost all. I used the fact that dev->hard_start_xmit was issued in a bh disabled context to exchange spinlock_irqsave for ordered ops on ring indexes so as to sync hard_start_xmit and the irq handler in the r8169 driver. It is a bit sick but Jon Mason reported it made a noticeable difference to avoid the irqsave on its 4 way ppc64 and nobody complained about it. -- Ueimor From romieu at fr.zoreil.com Wed Jan 19 17:17:30 2005 From: romieu at fr.zoreil.com (Francois Romieu) Date: Thu, 20 Jan 2005 02:17:30 +0100 Subject: [openib-general] Re: LLTX and netif_stop_queue In-Reply-To: <20050119165247.5d4cec51.davem@davemloft.net> References: <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119154132.68f0bb4f.davem@davemloft.net> <20050120004753.GB2330@electric-eye.fr.zoreil.com> <20050119165247.5d4cec51.davem@davemloft.net> Message-ID: <20050120011729.GA6775@electric-eye.fr.zoreil.com> David S. Miller : [...] > Hmmm... ok then. Unfortunately, my prototype patch I just posted > will make IRQs get disabled in the ->hard_start_xmit() path. I'm completely fine with the prototype patch. It will allow to cut some code in the driver and the r8169 has room for improvement anyway. Point taken for the close() routine. -- Ueimor From roland at topspin.com Wed Jan 19 19:43:42 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 19 Jan 2005 19:43:42 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050119164640.6c67bdfa.davem@davemloft.net> (David S. Miller's message of "Wed, 19 Jan 2005 16:46:40 -0800") References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> Message-ID: <52r7kgu5n5.fsf@topspin.com> Looks reasonable to me. I'll try the IPoIB changes out to make sure it still works. Thanks, Roland From roland at topspin.com Wed Jan 19 19:44:34 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 19 Jan 2005 19:44:34 -0800 Subject: [openib-general] ipoib_send locking In-Reply-To: <20050120011855.GA32321@mellanox.co.il> (Michael S. Tsirkin's message of "Thu, 20 Jan 2005 03:18:55 +0200") References: <20050120011855.GA32321@mellanox.co.il> Message-ID: <52mzv4u5lp.fsf@topspin.com> Michael> Hi, Roland! Is it true that some lock is being held when Michael> you call ipoib_send? It *is* needed, since you do things Michael> like ++priv->tx_head. Yes, the tx_lock will always be held. - Roland From mlleinin at hpcn.ca.sandia.gov Wed Jan 19 19:48:33 2005 From: mlleinin at hpcn.ca.sandia.gov (Matt Leininger) Date: Wed, 19 Jan 2005 19:48:33 -0800 Subject: [openib-general] patches from subversion In-Reply-To: <20050119181525.GB8754@esmail.cup.hp.com> References: <20050119012557.703212cf.mshefty@ichips.intel.com> <20050119150857.GA10707@mellanox.co.il> <20050119181525.GB8754@esmail.cup.hp.com> Message-ID: <1106192913.2603.1260.camel@localhost> On Wed, 2005-01-19 at 10:15 -0800, Grant Grundler wrote: > Please add MST's suggestions and mine to the FAQ as part of "how to use SVN" > and not a requirement to submit patches. > Added to the OpenIB FAQ. Check www.openib.org/docs/openib_faq.txt to make sure I've captured all the suggestions. Thanks, - Matt From jjengla at sandia.gov Wed Jan 19 19:52:45 2005 From: jjengla at sandia.gov (Josh England) Date: Wed, 19 Jan 2005 19:52:45 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050118161747.GA24070@mellanox.co.il> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <20050104211513.GG8522@mellanox.co.il> <1104874366.1352.70.camel@localhost> <20050118161747.GA24070@mellanox.co.il> Message-ID: <1106193165.27087.4.camel@localhost> Michael, I ran with hardly any options, I think it was just option to -f m, though I can't remember. The system is down right now for an upgrade so I can't verify. -JE On Tue, 2005-01-18 at 18:17 +0200, Michael S. Tsirkin wrote: > Hi, Josh, Roland! > Quoting r. Josh England (jjengla at sandia.gov) "Re: [openib-general] ip over ib throughtput": > > On Tue, 2005-01-04 at 23:15 +0200, Michael S. Tsirkin wrote: > > > Quoting r. Josh England (jjengla at sandia.gov) "Re: [openib-general] ip over ib throughtput": > > > > I'm seeing about 364 MB/s between 2 PCIe Xeon 3.2GHz boxes using > > > > netperf-2.3pl1. > > > > > > > > -JE > > > > > > With IP over IB on gen2? Are these x86_64? > > > > Yeah...gen2, 2.6.10, x86_64, PCIe .... and actually now its up to 420 > > MB/s with MSI-X enabled. > > > > -JE > > I wander what flags / compilation options do you give netperf? > I see numbers up to 310 consistently with MSI-X, although my system is > approximately the same as yours. > > MST > From hadi at cyberus.ca Wed Jan 19 20:01:47 2005 From: hadi at cyberus.ca (jamal) Date: 19 Jan 2005 23:01:47 -0500 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050119164640.6c67bdfa.davem@davemloft.net> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> Message-ID: <1106193707.1048.4.camel@jzny.localdomain> One thing i didnt quiet follow Dave in some of the drivers, example in the e1000: ----- /* Called with dev->xmit_lock held and interrupts disabled. */ static int e1000_xmit_frame(struct sk_buff *skb, struct net_device *netdev) --- Who calls that with dev->xmit_lock held and interrupts disabled? Shouldnt the spin_unlock(&netdev->xmit_lock); be right at the top of that routine now? cheers, jamal From davem at davemloft.net Wed Jan 19 21:18:35 2005 From: davem at davemloft.net (David S. Miller) Date: Wed, 19 Jan 2005 21:18:35 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <1106193707.1048.4.camel@jzny.localdomain> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <1106193707.1048.4.camel@jzny.localdomain> Message-ID: <20050119211835.67bfdf12.davem@davemloft.net> On 19 Jan 2005 23:01:47 -0500 jamal wrote: > ----- > /* Called with dev->xmit_lock held and interrupts disabled. */ > static int > e1000_xmit_frame(struct sk_buff *skb, struct net_device *netdev) > --- > > Who calls that with dev->xmit_lock held and interrupts disabled? qdisc_restart() and dev_queue_xmit(), via netdev->hard_start_xmit(). > Shouldnt the spin_unlock(&netdev->xmit_lock); be right at the top of > that routine now? Nope, the idea now is that netdev->xmit_lock replaces the driver private tx_lock From iod00d at hp.com Wed Jan 19 22:22:16 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 19 Jan 2005 22:22:16 -0800 Subject: [openib-general] Re: patches from subversion In-Reply-To: <20050119225351.GA31141@mellanox.co.il> References: <20050119012557.703212cf.mshefty@ichips.intel.com> <20050119150857.GA10707@mellanox.co.il> <20050119181525.GB8754@esmail.cup.hp.com> <20050119225351.GA31141@mellanox.co.il> Message-ID: <20050120062216.GE11410@esmail.cup.hp.com> On Thu, Jan 20, 2005 at 12:53:51AM +0200, Michael S. Tsirkin wrote: > Hello! > Quoting r. Grant Grundler (iod00d at hp.com) "Re: patches from subversion": > > SVN appears to be missing is the "-p" support - it generates > > universal diffs by default. But complains about "-up" params. > > This is an understatement: geez...major understatement. > /* We don't currently support any options (well, other than -u, since we > default to unified diff output anyway), so if we received anything > other than that it's an error. */ This completely disagrees with mail one of the SVN developers posted: http://subversion.tigris.org/servlets/ReadMsg?list=users&msgNo=414 | We can't go and support all diff programs out there. We currently | use diff compatible cmdline arguments. If you want to use a different | tool you need a wrapper to extract the arguments and pass those to | 'exam-diff'. I was scrounging through email since the regular documentation is less than clear in how to specify and use "-x". In any case, "-x -up" when specified with the real GNU diff seems to work fine. No need for an additional wrapper. grant From iod00d at hp.com Wed Jan 19 22:32:36 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 19 Jan 2005 22:32:36 -0800 Subject: [openib-general] patches from subversion In-Reply-To: <1106192913.2603.1260.camel@localhost> References: <20050119012557.703212cf.mshefty@ichips.intel.com> <20050119150857.GA10707@mellanox.co.il> <20050119181525.GB8754@esmail.cup.hp.com> <1106192913.2603.1260.camel@localhost> Message-ID: <20050120063236.GF11410@esmail.cup.hp.com> On Wed, Jan 19, 2005 at 07:48:33PM -0800, Matt Leininger wrote: > Added to the OpenIB FAQ. Check www.openib.org/docs/openib_faq.txt to > make sure I've captured all the suggestions. Thanks! | It is preferred that patches are generated with the diff -up option. | How are a few ways to do this. s/How/Here | | 2) svn diff --diff-cmd "/usr/bin/diff" -x -up FILENAME | | 3) svn diff --diff-cmd mydiff Can you replace it with the following? | It is preferred that patches are generated with the diff -up option. | Here is a sample command line: | svn diff --diff-cmd "/usr/bin/diff" -x -up FILENAME | | or using a "mydiff" wrapper: | svn diff --diff-cmd mydiff | (or modify ~/.subversion/config: diff-cmd = ~/bin/mydiff) | | where "~/bin/mydiff contains: | #!/usr/bin/perl | exec ("diff", "-up", at ARGV); thanks! grant From eitan at mellanox.co.il Wed Jan 19 22:32:52 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Thu, 20 Jan 2005 08:32:52 +0200 Subject: [openib-general] OpenSM: Don't return NO RECORDS status in re sponse to SA GetTable Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC84@mtlex01.yok.mtl.com> Fine. Hal: A response is given. It just has a good status and no records in the data. This is different from NO RECORDS status (for normal SA GetResp). That's what this patch does. -------------- next part -------------- An HTML attachment was scrubbed... URL: From davem at davemloft.net Wed Jan 19 23:05:26 2005 From: davem at davemloft.net (David S. Miller) Date: Wed, 19 Jan 2005 23:05:26 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <52r7kgu5n5.fsf@topspin.com> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> Message-ID: <20050119230526.393a5184.davem@davemloft.net> On Wed, 19 Jan 2005 19:43:42 -0800 Roland Dreier wrote: > Looks reasonable to me. I'll try the IPoIB changes out to make sure > it still works. Great. I actually tested my patch out, and there was a deadlock added to the tg3 and sungem drivers which is fixed in this updated version. Basically, since the multicast code now takes dev->xmit_lock the ->set_multicast_list() routines should not grab it anymore. To prevent ABBA deadlock, I had to remove the acquisition of the usual priv->lock in tg3 and sungem multicast list settings. Grabbing priv->lock was overkill and this new scheme of just holding dev->xmit_lock is OK, because: 1) Messing with the RX mode and multicast hash is safe even in parallel with RX packet processing. 2) All code paths that want to shut up all chip programming code paths still take both dev->xmit_lock and priv->lock thus still able to block out ->set_multicast_list() processing. So I'm going to check this in and push upstream. Let me know if folks find any other errors. Thanks. ===== Documentation/networking/netdevices.txt 1.5 vs edited ===== --- 1.5/Documentation/networking/netdevices.txt 2004-09-12 16:55:06 -07:00 +++ edited/Documentation/networking/netdevices.txt 2005-01-19 16:09:50 -08:00 @@ -45,10 +45,9 @@ Synchronization: dev->xmit_lock spinlock. When the driver sets NETIF_F_LLTX in dev->features this will be called without holding xmit_lock. In this case the driver - has to lock by itself when needed. It is recommended to use a try lock - for this and return -1 when the spin lock fails. - The locking there should also properly protect against - set_multicast_list + has to execute it's transmission routine in a completely lockless + manner. It is recommended only for queueless devices such + loopback and tunnels. Context: BHs disabled Notes: netif_queue_stopped() is guaranteed false Return codes: @@ -56,8 +55,6 @@ o NETDEV_TX_BUSY Cannot transmit packet, try later Usually a bug, means queue start/stop flow control is broken in the driver. Note: the driver must NOT put the skb in its DMA ring. - o NETDEV_TX_LOCKED Locking failed, please retry quickly. - Only valid when NETIF_F_LLTX is set. dev->tx_timeout: Synchronization: dev->xmit_lock spinlock. ===== drivers/infiniband/ulp/ipoib/ipoib.h 1.3 vs edited ===== --- 1.3/drivers/infiniband/ulp/ipoib/ipoib.h 2005-01-15 14:01:50 -08:00 +++ edited/drivers/infiniband/ulp/ipoib/ipoib.h 2005-01-19 15:50:47 -08:00 @@ -104,10 +104,10 @@ }; /* - * Device private locking: tx_lock protects members used in TX fast - * path (and we use LLTX so upper layers don't do extra locking). - * lock protects everything else. lock nests inside of tx_lock (ie - * tx_lock must be acquired first if needed). + * Device private locking: netdev->xmit_lock protects members used + * in TX fast path. + * lock protects everything else. lock nests inside of xmit_lock (ie + * xmit_lock must be acquired first if needed). */ struct ipoib_dev_priv { spinlock_t lock; @@ -150,7 +150,6 @@ struct ipoib_buf *rx_ring; - spinlock_t tx_lock; struct ipoib_buf *tx_ring; unsigned tx_head; unsigned tx_tail; ===== drivers/infiniband/ulp/ipoib/ipoib_ib.c 1.4 vs edited ===== --- 1.4/drivers/infiniband/ulp/ipoib/ipoib_ib.c 2005-01-15 14:01:50 -08:00 +++ edited/drivers/infiniband/ulp/ipoib/ipoib_ib.c 2005-01-19 15:51:36 -08:00 @@ -247,12 +247,12 @@ dev_kfree_skb_any(tx_req->skb); - spin_lock_irqsave(&priv->tx_lock, flags); + spin_lock_irqsave(&dev->xmit_lock, flags); ++priv->tx_tail; if (netif_queue_stopped(dev) && priv->tx_head - priv->tx_tail <= IPOIB_TX_RING_SIZE / 2) netif_wake_queue(dev); - spin_unlock_irqrestore(&priv->tx_lock, flags); + spin_unlock_irqrestore(&dev->xmit_lock, flags); if (wc->status != IB_WC_SUCCESS && wc->status != IB_WC_WR_FLUSH_ERR) ===== drivers/infiniband/ulp/ipoib/ipoib_main.c 1.3 vs edited ===== --- 1.3/drivers/infiniband/ulp/ipoib/ipoib_main.c 2005-01-15 14:01:48 -08:00 +++ edited/drivers/infiniband/ulp/ipoib/ipoib_main.c 2005-01-19 15:53:27 -08:00 @@ -411,7 +411,7 @@ /* * We can only be called from ipoib_start_xmit, so we're - * inside tx_lock -- no need to save/restore flags. + * inside dev->xmit_lock -- no need to save/restore flags. */ spin_lock(&priv->lock); @@ -483,7 +483,7 @@ /* * We can only be called from ipoib_start_xmit, so we're - * inside tx_lock -- no need to save/restore flags. + * inside dev->xmit_lock -- no need to save/restore flags. */ spin_lock(&priv->lock); @@ -526,27 +526,11 @@ spin_unlock(&priv->lock); } +/* Called with dev->xmit_lock held and IRQs disabled. */ static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev) { struct ipoib_dev_priv *priv = netdev_priv(dev); struct ipoib_neigh *neigh; - unsigned long flags; - - local_irq_save(flags); - if (!spin_trylock(&priv->tx_lock)) { - local_irq_restore(flags); - return NETDEV_TX_LOCKED; - } - - /* - * Check if our queue is stopped. Since we have the LLTX bit - * set, we can't rely on netif_stop_queue() preventing our - * xmit function from being called with a full queue. - */ - if (unlikely(netif_queue_stopped(dev))) { - spin_unlock_irqrestore(&priv->tx_lock, flags); - return NETDEV_TX_BUSY; - } if (skb->dst && skb->dst->neighbour) { if (unlikely(!*to_ipoib_neigh(skb->dst->neighbour))) { @@ -601,7 +585,6 @@ } out: - spin_unlock_irqrestore(&priv->tx_lock, flags); return NETDEV_TX_OK; } @@ -797,7 +780,7 @@ dev->addr_len = INFINIBAND_ALEN; dev->type = ARPHRD_INFINIBAND; dev->tx_queue_len = IPOIB_TX_RING_SIZE * 2; - dev->features = NETIF_F_VLAN_CHALLENGED | NETIF_F_LLTX; + dev->features = NETIF_F_VLAN_CHALLENGED; /* MTU will be reset when mcast join happens */ dev->mtu = IPOIB_PACKET_SIZE - IPOIB_ENCAP_LEN; @@ -812,7 +795,6 @@ priv->dev = dev; spin_lock_init(&priv->lock); - spin_lock_init(&priv->tx_lock); init_MUTEX(&priv->mcast_mutex); init_MUTEX(&priv->vlan_mutex); ===== drivers/net/sungem.c 1.72 vs edited ===== --- 1.72/drivers/net/sungem.c 2004-11-05 15:56:15 -08:00 +++ edited/drivers/net/sungem.c 2005-01-19 22:29:14 -08:00 @@ -835,9 +835,9 @@ } /* Run TX completion thread */ - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); gem_tx(dev, gp, gp->status); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irqrestore(&gp->lock, flags); @@ -932,12 +932,12 @@ readl(gp->regs + MAC_RXCFG)); spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); gp->reset_task_pending = 2; schedule_work(&gp->reset_task); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); } @@ -955,7 +955,6 @@ struct gem *gp = dev->priv; int entry; u64 ctrl; - unsigned long flags; ctrl = 0; if (skb->ip_summed == CHECKSUM_HW) { @@ -969,17 +968,9 @@ (csum_stuff_off << 21)); } - local_irq_save(flags); - if (!spin_trylock(&gp->tx_lock)) { - /* Tell upper layer to requeue */ - local_irq_restore(flags); - return NETDEV_TX_LOCKED; - } - /* This is a hard error, log it. */ if (TX_BUFFS_AVAIL(gp) <= (skb_shinfo(skb)->nr_frags + 1)) { netif_stop_queue(dev); - spin_unlock_irqrestore(&gp->tx_lock, flags); printk(KERN_ERR PFX "%s: BUG! Tx Ring full when queue awake!\n", dev->name); return NETDEV_TX_BUSY; @@ -1066,7 +1057,6 @@ dev->name, entry, skb->len); mb(); writel(gp->tx_new, gp->regs + TXDMA_KICK); - spin_unlock_irqrestore(&gp->tx_lock, flags); dev->trans_start = jiffies; @@ -1097,11 +1087,11 @@ } spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); dev->mtu = new_mtu; gp->reset_task_pending = 1; schedule_work(&gp->reset_task); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); flush_scheduled_work(); @@ -1111,7 +1101,7 @@ #define STOP_TRIES 32 -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_stop(struct gem *gp) { int limit; @@ -1137,7 +1127,7 @@ printk(KERN_ERR "%s: SW reset is ghetto.\n", gp->dev->name); } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_start_dma(struct gem *gp) { unsigned long val; @@ -1162,7 +1152,7 @@ } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ // XXX dbl check what that function should do when called on PCS PHY static void gem_begin_auto_negotiation(struct gem *gp, struct ethtool_cmd *ep) { @@ -1249,7 +1239,7 @@ /* A link-up condition has occurred, initialize and enable the * rest of the chip. * - * Must be invoked under gp->lock and gp->tx_lock. + * Must be invoked under gp->lock and dev->xmit_lock. */ static int gem_set_link_modes(struct gem *gp) { @@ -1356,7 +1346,7 @@ return 0; } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static int gem_mdio_link_not_up(struct gem *gp) { switch (gp->lstate) { @@ -1414,7 +1404,7 @@ netif_poll_disable(gp->dev); spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); if (gp->hw_running && gp->opened) { netif_stop_queue(gp->dev); @@ -1430,7 +1420,7 @@ } gp->reset_task_pending = 0; - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); netif_poll_enable(gp->dev); } @@ -1444,7 +1434,7 @@ return; spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); /* If the link of task is still pending, we just * reschedule the link timer @@ -1514,11 +1504,11 @@ restart: mod_timer(&gp->link_timer, jiffies + ((12 * HZ) / 10)); out_unlock: - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_clean_rings(struct gem *gp) { struct gem_init_block *gb = gp->init_block; @@ -1569,7 +1559,7 @@ } } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_init_rings(struct gem *gp) { struct gem_init_block *gb = gp->init_block; @@ -1619,7 +1609,7 @@ wmb(); } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_init_phy(struct gem *gp) { u32 mifcfg; @@ -1757,7 +1747,7 @@ } } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_init_dma(struct gem *gp) { u64 desc_dma = (u64) gp->gblock_dvma; @@ -1795,7 +1785,7 @@ gp->regs + RXDMA_BLANK); } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under dev->xmit_lock. */ static u32 gem_setup_multicast(struct gem *gp) { @@ -1838,7 +1828,7 @@ return rxcfg; } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_init_mac(struct gem *gp) { unsigned char *e = &gp->dev->dev_addr[0]; @@ -1916,7 +1906,7 @@ writel(0xffffffff, gp->regs + MAC_MCMASK); } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_init_pause_thresholds(struct gem *gp) { u32 cfg; @@ -2052,7 +2042,7 @@ return 0; } -/* Must be invoked under gp->lock and gp->tx_lock. */ +/* Must be invoked under gp->lock and dev->xmit_lock. */ static void gem_init_hw(struct gem *gp, int restart_link) { /* On Apple's gmac, I initialize the PHY only after @@ -2150,11 +2140,11 @@ if (!gp->wake_on_lan) { spin_lock_irqsave(&gp->lock, flags); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); gem_stop(gp); writel(MAC_TXRST_CMD, gp->regs + MAC_TXRST); writel(MAC_RXRST_CMD, gp->regs + MAC_RXRST); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irqrestore(&gp->lock, flags); } @@ -2202,9 +2192,9 @@ unsigned long flags; spin_lock_irqsave(&gp->lock, flags); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); gem_stop(gp); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irqrestore(&gp->lock, flags); } } @@ -2265,9 +2255,9 @@ /* Reset the chip */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); gem_stop(gp); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); gp->hw_running = 1; @@ -2281,7 +2271,7 @@ printk(KERN_ERR "%s: failed to request irq !\n", gp->dev->name); spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); #ifdef CONFIG_PPC_PMAC if (!hw_was_up && gp->pdev->vendor == PCI_VENDOR_ID_APPLE) gem_apple_powerdown(gp); @@ -2290,14 +2280,14 @@ gp->pm_timer.expires = jiffies + 10*HZ; add_timer(&gp->pm_timer); up(&gp->pm_sem); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); return -EAGAIN; } spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); /* Allocate & setup ring buffers */ gem_init_rings(gp); @@ -2307,7 +2297,7 @@ gp->opened = 1; - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); up(&gp->pm_sem); @@ -2328,7 +2318,7 @@ /* Stop traffic, mark us closed */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); gp->opened = 0; @@ -2343,7 +2333,7 @@ /* Bye, the pm timer will finish the job */ free_irq(gp->pdev->irq, (void *) dev); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); /* Fire the PM timer that will shut us down in about 10 seconds */ @@ -2374,7 +2364,7 @@ /* If the driver is opened, we stop the DMA */ if (gp->opened) { spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); /* Stop traffic, mark us closed */ netif_device_detach(dev); @@ -2385,7 +2375,7 @@ /* Get rid of ring buffers */ gem_clean_rings(gp); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); if (gp->pdev->vendor == PCI_VENDOR_ID_APPLE) @@ -2419,14 +2409,14 @@ } #endif /* CONFIG_PPC_PMAC */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&gp->dev->xmit_lock); gem_stop(gp); gp->hw_running = 1; gem_init_rings(gp); gem_init_hw(gp, 1); - spin_unlock(&gp->tx_lock); + spin_unlock(&gp->dev->xmit_lock); spin_unlock_irq(&gp->lock); netif_device_attach(dev); @@ -2447,7 +2437,7 @@ struct net_device_stats *stats = &gp->net_stats; spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); if (gp->hw_running) { stats->rx_crc_errors += readl(gp->regs + MAC_FCSERR); @@ -2467,12 +2457,13 @@ writel(0, gp->regs + MAC_LCOLL); } - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); return &gp->net_stats; } +/* Called with dev->xmit_lock held and IRQs disabled. */ static void gem_set_multicast(struct net_device *dev) { struct gem *gp = dev->priv; @@ -2482,9 +2473,6 @@ if (!gp->hw_running) return; - spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); - netif_stop_queue(dev); rxcfg = readl(gp->regs + MAC_RXCFG); @@ -2507,9 +2495,6 @@ writel(rxcfg, gp->regs + MAC_RXCFG); netif_wake_queue(dev); - - spin_unlock(&gp->tx_lock); - spin_unlock_irq(&gp->lock); } static void gem_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) @@ -2540,7 +2525,7 @@ /* Return current PHY settings */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); cmd->autoneg = gp->want_autoneg; cmd->speed = gp->phy_mii.speed; cmd->duplex = gp->phy_mii.duplex; @@ -2552,7 +2537,7 @@ */ if (cmd->advertising == 0) cmd->advertising = cmd->supported; - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); } else { // XXX PCS ? cmd->supported = @@ -2592,9 +2577,9 @@ /* Apply settings and restart link process. */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); gem_begin_auto_negotiation(gp, cmd); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); return 0; @@ -2609,9 +2594,9 @@ /* Restart link process. */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); gem_begin_auto_negotiation(gp, NULL); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); return 0; @@ -2863,7 +2848,6 @@ gp->msg_enable = DEFAULT_MSG; spin_lock_init(&gp->lock); - spin_lock_init(&gp->tx_lock); init_MUTEX(&gp->pm_sem); init_timer(&gp->link_timer); @@ -2899,9 +2883,9 @@ gem_apple_powerup(gp); #endif spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); gem_stop(gp); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); /* Fill up the mii_phy structure (even if we won't use it) */ @@ -2967,11 +2951,11 @@ /* Detect & init PHY, start autoneg */ spin_lock_irq(&gp->lock); - spin_lock(&gp->tx_lock); + spin_lock(&dev->xmit_lock); gp->hw_running = 1; gem_init_phy(gp); gem_begin_auto_negotiation(gp, NULL); - spin_unlock(&gp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&gp->lock); if (gp->phy_type == phy_mii_mdio0 || @@ -2982,7 +2966,7 @@ pci_set_drvdata(pdev, dev); /* GEM can do it all... */ - dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_LLTX; + dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; if (pci_using_dac) dev->features |= NETIF_F_HIGHDMA; ===== drivers/net/sungem.h 1.18 vs edited ===== --- 1.18/drivers/net/sungem.h 2004-09-15 08:16:05 -07:00 +++ edited/drivers/net/sungem.h 2005-01-19 15:54:08 -08:00 @@ -953,7 +953,6 @@ struct gem { spinlock_t lock; - spinlock_t tx_lock; void __iomem *regs; int rx_new, rx_old; int tx_new, tx_old; ===== drivers/net/tg3.c 1.227 vs edited ===== --- 1.227/drivers/net/tg3.c 2005-01-17 13:40:31 -08:00 +++ edited/drivers/net/tg3.c 2005-01-19 16:41:08 -08:00 @@ -2816,9 +2816,9 @@ /* run TX completion thread */ if (sblk->idx[0].tx_consumer != tp->tx_cons) { - spin_lock(&tp->tx_lock); + spin_lock(&netdev->xmit_lock); tg3_tx(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&netdev->xmit_lock); } spin_unlock_irqrestore(&tp->lock, flags); @@ -2939,7 +2939,7 @@ tg3_netif_stop(tp); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&tp->dev->xmit_lock); restart_timer = tp->tg3_flags2 & TG3_FLG2_RESTART_TIMER; tp->tg3_flags2 &= ~TG3_FLG2_RESTART_TIMER; @@ -2949,7 +2949,7 @@ tg3_netif_start(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&tp->dev->xmit_lock); spin_unlock_irq(&tp->lock); if (restart_timer) @@ -3048,6 +3048,7 @@ (base + len + 8 < base)); } +/* dev->xmit_lock is held and IRQs are disabled. */ static int tg3_start_xmit(struct sk_buff *skb, struct net_device *dev) { struct tg3 *tp = netdev_priv(dev); @@ -3055,39 +3056,12 @@ unsigned int i; u32 len, entry, base_flags, mss; int would_hit_hwbug; - unsigned long flags; len = skb_headlen(skb); - /* No BH disabling for tx_lock here. We are running in BH disabled - * context and TX reclaim runs via tp->poll inside of a software - * interrupt. Rejoice! - * - * Actually, things are not so simple. If we are to take a hw - * IRQ here, we can deadlock, consider: - * - * CPU1 CPU2 - * tg3_start_xmit - * take tp->tx_lock - * tg3_timer - * take tp->lock - * tg3_interrupt - * spin on tp->lock - * spin on tp->tx_lock - * - * So we really do need to disable interrupts when taking - * tx_lock here. - */ - local_irq_save(flags); - if (!spin_trylock(&tp->tx_lock)) { - local_irq_restore(flags); - return NETDEV_TX_LOCKED; - } - /* This is a hard error, log it. */ if (unlikely(TX_BUFFS_AVAIL(tp) <= (skb_shinfo(skb)->nr_frags + 1))) { netif_stop_queue(dev); - spin_unlock_irqrestore(&tp->tx_lock, flags); printk(KERN_ERR PFX "%s: BUG! Tx Ring full when queue awake!\n", dev->name); return NETDEV_TX_BUSY; @@ -3224,7 +3198,7 @@ entry, len, last_plus_one, &start, mss)) - goto out_unlock; + goto out; entry = start; } @@ -3236,9 +3210,8 @@ if (TX_BUFFS_AVAIL(tp) <= (MAX_SKB_FRAGS + 1)) netif_stop_queue(dev); -out_unlock: +out: mmiowb(); - spin_unlock_irqrestore(&tp->tx_lock, flags); dev->trans_start = jiffies; @@ -3273,7 +3246,7 @@ tg3_netif_stop(tp); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_halt(tp); @@ -3283,7 +3256,7 @@ tg3_netif_start(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); return 0; @@ -5574,7 +5547,7 @@ unsigned long flags; spin_lock_irqsave(&tp->lock, flags); - spin_lock(&tp->tx_lock); + spin_lock(&tp->dev->xmit_lock); /* All of this garbage is because when using non-tagged * IRQ status the mailbox/status_block protocol the chip @@ -5590,7 +5563,7 @@ if (!(tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) { tp->tg3_flags2 |= TG3_FLG2_RESTART_TIMER; - spin_unlock(&tp->tx_lock); + spin_unlock(&tp->dev->xmit_lock); spin_unlock_irqrestore(&tp->lock, flags); schedule_work(&tp->reset_task); return; @@ -5659,7 +5632,7 @@ tp->asf_counter = tp->asf_multiplier; } - spin_unlock(&tp->tx_lock); + spin_unlock(&tp->dev->xmit_lock); spin_unlock_irqrestore(&tp->lock, flags); tp->timer.expires = jiffies + tp->timer_offset; @@ -5672,12 +5645,12 @@ int err; spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_disable_ints(tp); tp->tg3_flags &= ~TG3_FLAG_INIT_COMPLETE; - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); /* The placement of this call is tied @@ -5696,7 +5669,7 @@ } spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); err = tg3_init_hw(tp); if (err) { @@ -5716,7 +5689,7 @@ tp->tg3_flags |= TG3_FLAG_INIT_COMPLETE; } - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); if (err) { @@ -5726,11 +5699,11 @@ } spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_enable_ints(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); netif_start_queue(dev); @@ -5978,7 +5951,7 @@ del_timer_sync(&tp->timer); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); #if 0 tg3_dump_state(tp); #endif @@ -5992,7 +5965,7 @@ TG3_FLAG_GOT_SERDES_FLOWCTL); netif_carrier_off(tp->dev); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); free_irq(dev->irq, dev); @@ -6291,15 +6264,10 @@ } } +/* Called with dev->xmit_lock held and IRQs disabled. */ static void tg3_set_rx_mode(struct net_device *dev) { - struct tg3 *tp = netdev_priv(dev); - - spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); __tg3_set_rx_mode(dev); - spin_unlock(&tp->tx_lock); - spin_unlock_irq(&tp->lock); } #define TG3_REGDUMP_LEN (32 * 1024) @@ -6322,7 +6290,7 @@ memset(p, 0, TG3_REGDUMP_LEN); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); #define __GET_REG32(reg) (*(p)++ = tr32(reg)) #define GET_REG32_LOOP(base,len) \ @@ -6372,7 +6340,7 @@ #undef GET_REG32_LOOP #undef GET_REG32_1 - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); } @@ -6496,7 +6464,7 @@ } spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tp->link_config.autoneg = cmd->autoneg; if (cmd->autoneg == AUTONEG_ENABLE) { @@ -6510,7 +6478,7 @@ } tg3_setup_phy(tp, 1); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); return 0; @@ -6627,7 +6595,7 @@ tg3_netif_stop(tp); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tp->rx_pending = ering->rx_pending; @@ -6640,7 +6608,7 @@ tg3_halt(tp); tg3_init_hw(tp); tg3_netif_start(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); return 0; @@ -6661,7 +6629,7 @@ tg3_netif_stop(tp); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); if (epause->autoneg) tp->tg3_flags |= TG3_FLAG_PAUSE_AUTONEG; else @@ -6677,7 +6645,7 @@ tg3_halt(tp); tg3_init_hw(tp); tg3_netif_start(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); return 0; @@ -6803,14 +6771,14 @@ struct tg3 *tp = netdev_priv(dev); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tp->vlgrp = grp; /* Update RX_MODE_KEEP_VLAN_TAG bit in RX_MODE register. */ __tg3_set_rx_mode(dev); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); } @@ -6819,10 +6787,10 @@ struct tg3 *tp = netdev_priv(dev); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); if (tp->vlgrp) tp->vlgrp->vlan_devices[vid] = NULL; - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); } #endif @@ -8241,7 +8209,6 @@ if (pci_using_dac) dev->features |= NETIF_F_HIGHDMA; - dev->features |= NETIF_F_LLTX; #if TG3_VLAN_TAG_USED dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX; dev->vlan_rx_register = tg3_vlan_rx_register; @@ -8283,7 +8250,6 @@ tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA; #endif spin_lock_init(&tp->lock); - spin_lock_init(&tp->tx_lock); spin_lock_init(&tp->indirect_lock); INIT_WORK(&tp->reset_task, tg3_reset_task, tp); @@ -8496,23 +8462,23 @@ del_timer_sync(&tp->timer); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_disable_ints(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); netif_device_detach(dev); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_halt(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); err = tg3_set_power_state(tp, state); if (err) { spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_init_hw(tp); @@ -8522,7 +8488,7 @@ netif_device_attach(dev); tg3_netif_start(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); } @@ -8547,7 +8513,7 @@ netif_device_attach(dev); spin_lock_irq(&tp->lock); - spin_lock(&tp->tx_lock); + spin_lock(&dev->xmit_lock); tg3_init_hw(tp); @@ -8558,7 +8524,7 @@ tg3_netif_start(tp); - spin_unlock(&tp->tx_lock); + spin_unlock(&dev->xmit_lock); spin_unlock_irq(&tp->lock); return 0; ===== drivers/net/tg3.h 1.52 vs edited ===== --- 1.52/drivers/net/tg3.h 2004-11-15 15:41:31 -08:00 +++ edited/drivers/net/tg3.h 2005-01-19 15:37:29 -08:00 @@ -1980,12 +1980,11 @@ * lock: Held during all operations except TX packet * processing. * - * tx_lock: Held during tg3_start_xmit{,_4gbug} and tg3_tx + * dev->xmit_lock: Held during tg3_start_xmit and tg3_tx * * If you want to shut up all asynchronous processing you must - * acquire both locks, 'lock' taken before 'tx_lock'. IRQs must - * be disabled to take 'lock' but only softirq disabling is - * necessary for acquisition of 'tx_lock'. + * acquire both locks, 'lock' taken before 'xmit_lock'. IRQs must + * be disabled to take either lock. */ spinlock_t lock; spinlock_t indirect_lock; @@ -2003,8 +2002,6 @@ u32 tx_prod; u32 tx_cons; u32 tx_pending; - - spinlock_t tx_lock; struct tg3_tx_buffer_desc *tx_ring; struct tx_ring_info *tx_buffers; ===== drivers/net/e1000/e1000.h 1.58 vs edited ===== --- 1.58/drivers/net/e1000/e1000.h 2004-10-25 18:13:57 -07:00 +++ edited/drivers/net/e1000/e1000.h 2005-01-19 15:45:31 -08:00 @@ -209,7 +209,6 @@ /* TX */ struct e1000_desc_ring tx_ring; - spinlock_t tx_lock; uint32_t txd_cmd; uint32_t tx_int_delay; uint32_t tx_abs_int_delay; ===== drivers/net/e1000/e1000_main.c 1.145 vs edited ===== --- 1.145/drivers/net/e1000/e1000_main.c 2005-01-10 21:03:21 -08:00 +++ edited/drivers/net/e1000/e1000_main.c 2005-01-19 16:37:55 -08:00 @@ -291,7 +291,9 @@ e1000_phy_reset(&adapter->hw); } + spin_lock_irq(&netdev->xmit_lock); e1000_set_multi(netdev); + spin_unlock_irq(&netdev->xmit_lock); e1000_restore_vlan(adapter); @@ -520,9 +522,6 @@ if(pci_using_dac) netdev->features |= NETIF_F_HIGHDMA; - /* hard_start_xmit is safe against parallel locking */ - netdev->features |= NETIF_F_LLTX; - /* before reading the EEPROM, reset the controller to * put the device in a known good starting state */ @@ -732,7 +731,6 @@ atomic_set(&adapter->irq_sem, 1); spin_lock_init(&adapter->stats_lock); - spin_lock_init(&adapter->tx_lock); return 0; } @@ -1293,6 +1291,8 @@ * list or the network interface flags are updated. This routine is * responsible for configuring the hardware for proper multicast, * promiscuous mode, and all-multi behavior. + * + * Called with netdev->xmit_lock held and IRQs disabled. **/ static void @@ -1304,12 +1304,9 @@ uint32_t rctl; uint32_t hash_value; int i; - unsigned long flags; /* Check for Promiscuous and All Multicast modes */ - spin_lock_irqsave(&adapter->tx_lock, flags); - rctl = E1000_READ_REG(hw, RCTL); if(netdev->flags & IFF_PROMISC) { @@ -1358,8 +1355,6 @@ if(hw->mac_type == e1000_82542_rev2_0) e1000_leave_82542_rst(adapter); - - spin_unlock_irqrestore(&adapter->tx_lock, flags); } /* Need to wait a few seconds after link up to get diagnostic information from @@ -1786,6 +1781,8 @@ } #define TXD_USE_COUNT(S, X) (((S) >> (X)) + 1 ) + +/* Called with dev->xmit_lock held and interrupts disabled. */ static int e1000_xmit_frame(struct sk_buff *skb, struct net_device *netdev) { @@ -1794,7 +1791,6 @@ unsigned int max_txd_pwr = E1000_MAX_TXD_PWR; unsigned int tx_flags = 0; unsigned int len = skb->len; - unsigned long flags; unsigned int nr_frags = 0; unsigned int mss = 0; int count = 0; @@ -1838,18 +1834,10 @@ if(adapter->pcix_82544) count += nr_frags; - local_irq_save(flags); - if (!spin_trylock(&adapter->tx_lock)) { - /* Collision - tell upper layer to requeue */ - local_irq_restore(flags); - return NETDEV_TX_LOCKED; - } - /* need: count + 2 desc gap to keep tail from touching * head, otherwise try next time */ if(unlikely(E1000_DESC_UNUSED(&adapter->tx_ring) < count + 2)) { netif_stop_queue(netdev); - spin_unlock_irqrestore(&adapter->tx_lock, flags); return NETDEV_TX_BUSY; } @@ -1857,7 +1845,6 @@ if(unlikely(e1000_82547_fifo_workaround(adapter, skb))) { netif_stop_queue(netdev); mod_timer(&adapter->tx_fifo_stall_timer, jiffies); - spin_unlock_irqrestore(&adapter->tx_lock, flags); return NETDEV_TX_BUSY; } } @@ -1884,7 +1871,6 @@ if(unlikely(E1000_DESC_UNUSED(&adapter->tx_ring) < MAX_SKB_FRAGS + 2)) netif_stop_queue(netdev); - spin_unlock_irqrestore(&adapter->tx_lock, flags); return NETDEV_TX_OK; } @@ -2234,13 +2220,13 @@ tx_ring->next_to_clean = i; - spin_lock(&adapter->tx_lock); + spin_lock(&netdev->xmit_lock); if(unlikely(cleaned && netif_queue_stopped(netdev) && netif_carrier_ok(netdev))) netif_wake_queue(netdev); - spin_unlock(&adapter->tx_lock); + spin_unlock(&netdev->xmit_lock); return cleaned; } @@ -2819,7 +2805,10 @@ if(wufc) { e1000_setup_rctl(adapter); + + spin_lock_irq(&netdev->xmit_lock); e1000_set_multi(netdev); + spin_unlock_irq(&netdev->xmit_lock); /* turn on all-multi mode if wake on multicast is enabled */ if(adapter->wol & E1000_WUFC_MC) { ===== include/linux/netdevice.h 1.96 vs edited ===== --- 1.96/include/linux/netdevice.h 2005-01-17 13:13:31 -08:00 +++ edited/include/linux/netdevice.h 2005-01-19 16:07:45 -08:00 @@ -76,7 +76,6 @@ /* Driver transmit return codes */ #define NETDEV_TX_OK 0 /* driver took care of packet */ #define NETDEV_TX_BUSY 1 /* driver tx path was busy*/ -#define NETDEV_TX_LOCKED -1 /* driver tx lock was already taken */ /* * Compute the worst case header length according to the protocols @@ -415,7 +414,7 @@ #define NETIF_F_HW_VLAN_FILTER 512 /* Receive filtering on VLAN */ #define NETIF_F_VLAN_CHALLENGED 1024 /* Device cannot handle VLAN packets */ #define NETIF_F_TSO 2048 /* Can offload TCP/IP segmentation */ -#define NETIF_F_LLTX 4096 /* LockLess TX */ +#define NETIF_F_LLTX 4096 /* Do not grab xmit_lock during ->hard_start_xmit */ /* Called after device is detached from network. */ void (*uninit)(struct net_device *dev); @@ -894,9 +893,11 @@ static inline void netif_tx_disable(struct net_device *dev) { - spin_lock_bh(&dev->xmit_lock); + unsigned long flags; + + spin_lock_irqsave(&dev->xmit_lock, flags); netif_stop_queue(dev); - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irqrestore(&dev->xmit_lock, flags); } /* These functions live elsewhere (drivers/net/net_init.c, but related) */ ===== net/atm/clip.c 1.43 vs edited ===== --- 1.43/net/atm/clip.c 2004-10-01 14:50:07 -07:00 +++ edited/net/atm/clip.c 2005-01-19 16:04:55 -08:00 @@ -97,7 +97,7 @@ printk(KERN_CRIT "!clip_vcc->entry (clip_vcc %p)\n",clip_vcc); return; } - spin_lock_bh(&entry->neigh->dev->xmit_lock); /* block clip_start_xmit() */ + spin_lock_irq(&entry->neigh->dev->xmit_lock); /* block clip_start_xmit() */ entry->neigh->used = jiffies; for (walk = &entry->vccs; *walk; walk = &(*walk)->next) if (*walk == clip_vcc) { @@ -121,7 +121,7 @@ printk(KERN_CRIT "ATMARP: unlink_clip_vcc failed (entry %p, vcc " "0x%p)\n",entry,clip_vcc); out: - spin_unlock_bh(&entry->neigh->dev->xmit_lock); + spin_unlock_irq(&entry->neigh->dev->xmit_lock); } /* The neighbour entry n->lock is held. */ ===== net/core/dev.c 1.181 vs edited ===== --- 1.181/net/core/dev.c 2005-01-13 20:41:04 -08:00 +++ edited/net/core/dev.c 2005-01-19 16:00:08 -08:00 @@ -1190,7 +1190,7 @@ #define HARD_TX_LOCK(dev, cpu) { \ if ((dev->features & NETIF_F_LLTX) == 0) { \ - spin_lock(&dev->xmit_lock); \ + spin_lock_irq(&dev->xmit_lock); \ dev->xmit_lock_owner = cpu; \ } \ } @@ -1198,7 +1198,7 @@ #define HARD_TX_UNLOCK(dev) { \ if ((dev->features & NETIF_F_LLTX) == 0) { \ dev->xmit_lock_owner = -1; \ - spin_unlock(&dev->xmit_lock); \ + spin_unlock_irq(&dev->xmit_lock); \ } \ } ===== net/core/dev_mcast.c 1.4 vs edited ===== --- 1.4/net/core/dev_mcast.c 2004-10-20 01:37:15 -07:00 +++ edited/net/core/dev_mcast.c 2005-01-19 16:05:35 -08:00 @@ -93,9 +93,9 @@ void dev_mc_upload(struct net_device *dev) { - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); __dev_mc_upload(dev); - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); } /* @@ -107,7 +107,7 @@ int err = 0; struct dev_mc_list *dmi, **dmip; - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); for (dmip = &dev->mc_list; (dmi = *dmip) != NULL; dmip = &dmi->next) { /* @@ -139,13 +139,13 @@ */ __dev_mc_upload(dev); - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); return 0; } } err = -ENOENT; done: - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); return err; } @@ -160,7 +160,7 @@ dmi1 = (struct dev_mc_list *)kmalloc(sizeof(*dmi), GFP_ATOMIC); - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); for (dmi = dev->mc_list; dmi != NULL; dmi = dmi->next) { if (memcmp(dmi->dmi_addr, addr, dmi->dmi_addrlen) == 0 && dmi->dmi_addrlen == alen) { @@ -176,7 +176,7 @@ } if ((dmi = dmi1) == NULL) { - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); return -ENOMEM; } memcpy(dmi->dmi_addr, addr, alen); @@ -189,11 +189,11 @@ __dev_mc_upload(dev); - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); return 0; done: - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); if (dmi1) kfree(dmi1); return err; @@ -205,7 +205,7 @@ void dev_mc_discard(struct net_device *dev) { - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); while (dev->mc_list != NULL) { struct dev_mc_list *tmp = dev->mc_list; @@ -216,7 +216,7 @@ } dev->mc_count = 0; - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); } #ifdef CONFIG_PROC_FS @@ -251,7 +251,7 @@ struct dev_mc_list *m; struct net_device *dev = v; - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); for (m = dev->mc_list; m; m = m->next) { int i; @@ -263,7 +263,7 @@ seq_putc(seq, '\n'); } - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); return 0; } ===== net/core/netpoll.c 1.24 vs edited ===== --- 1.24/net/core/netpoll.c 2005-01-13 20:41:04 -08:00 +++ edited/net/core/netpoll.c 2005-01-19 16:05:56 -08:00 @@ -188,7 +188,7 @@ return; } - spin_lock(&np->dev->xmit_lock); + spin_lock_irq(&np->dev->xmit_lock); np->dev->xmit_lock_owner = smp_processor_id(); /* @@ -197,7 +197,7 @@ */ if (netif_queue_stopped(np->dev)) { np->dev->xmit_lock_owner = -1; - spin_unlock(&np->dev->xmit_lock); + spin_unlock_irq(&np->dev->xmit_lock); netpoll_poll(np); goto repeat; @@ -205,7 +205,7 @@ status = np->dev->hard_start_xmit(skb, np->dev); np->dev->xmit_lock_owner = -1; - spin_unlock(&np->dev->xmit_lock); + spin_unlock_irq(&np->dev->xmit_lock); /* transmit busy */ if(status) { ===== net/core/pktgen.c 1.21 vs edited ===== --- 1.21/net/core/pktgen.c 2005-01-10 11:32:10 -08:00 +++ edited/net/core/pktgen.c 2005-01-19 16:07:58 -08:00 @@ -2664,12 +2664,11 @@ } } - spin_lock_bh(&odev->xmit_lock); + spin_lock_irq(&odev->xmit_lock); if (!netif_queue_stopped(odev)) { u64 now; atomic_inc(&(pkt_dev->skb->users)); -retry_now: ret = odev->hard_start_xmit(pkt_dev->skb, odev); if (likely(ret == NETDEV_TX_OK)) { pkt_dev->last_ok = 1; @@ -2677,10 +2676,6 @@ pkt_dev->seq_num++; pkt_dev->tx_bytes += pkt_dev->cur_pkt_size; - } else if (ret == NETDEV_TX_LOCKED - && (odev->features & NETIF_F_LLTX)) { - cpu_relax(); - goto retry_now; } else { /* Retry it next time */ atomic_dec(&(pkt_dev->skb->users)); @@ -2716,7 +2711,7 @@ pkt_dev->next_tx_ns = 0; } - spin_unlock_bh(&odev->xmit_lock); + spin_unlock_irq(&odev->xmit_lock); /* If pkt_dev->count is zero, then run forever */ if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) { ===== net/sched/sch_generic.c 1.33 vs edited ===== --- 1.33/net/sched/sch_generic.c 2005-01-13 20:41:07 -08:00 +++ edited/net/sched/sch_generic.c 2005-01-19 16:25:02 -08:00 @@ -99,17 +99,11 @@ if ((skb = q->dequeue(q)) != NULL) { unsigned nolock = (dev->features & NETIF_F_LLTX); /* - * When the driver has LLTX set it does its own locking - * in start_xmit. No need to add additional overhead by - * locking again. These checks are worth it because - * even uncongested locks can be quite expensive. - * The driver can do trylock like here too, in case - * of lock congestion it should return -1 and the packet - * will be requeued. + * When the driver has LLTX set it does not require any + * locking in start_xmit. */ if (!nolock) { - if (!spin_trylock(&dev->xmit_lock)) { - collision: + if (!spin_trylock_irq(&dev->xmit_lock)) { /* So, someone grabbed the driver. */ /* It may be transient configuration error, @@ -143,22 +137,18 @@ if (ret == NETDEV_TX_OK) { if (!nolock) { dev->xmit_lock_owner = -1; - spin_unlock(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); } spin_lock(&dev->queue_lock); return -1; } - if (ret == NETDEV_TX_LOCKED && nolock) { - spin_lock(&dev->queue_lock); - goto collision; - } } /* NETDEV_TX_BUSY - we need to requeue */ /* Release the driver */ if (!nolock) { dev->xmit_lock_owner = -1; - spin_unlock(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); } spin_lock(&dev->queue_lock); q = dev->qdisc; @@ -186,7 +176,7 @@ { struct net_device *dev = (struct net_device *)arg; - spin_lock(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); if (dev->qdisc != &noop_qdisc) { if (netif_device_present(dev) && netif_running(dev) && @@ -200,7 +190,7 @@ dev_hold(dev); } } - spin_unlock(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); dev_put(dev); } @@ -224,17 +214,17 @@ static void dev_watchdog_up(struct net_device *dev) { - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); __netdev_watchdog_up(dev); - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); } static void dev_watchdog_down(struct net_device *dev) { - spin_lock_bh(&dev->xmit_lock); + spin_lock_irq(&dev->xmit_lock); if (del_timer(&dev->watchdog_timer)) __dev_put(dev); - spin_unlock_bh(&dev->xmit_lock); + spin_unlock_irq(&dev->xmit_lock); } /* "NOOP" scheduler: the best scheduler, recommended for all interfaces ===== net/sched/sch_teql.c 1.16 vs edited ===== --- 1.16/net/sched/sch_teql.c 2004-10-21 22:21:24 -07:00 +++ edited/net/sched/sch_teql.c 2005-01-19 16:06:11 -08:00 @@ -301,12 +301,12 @@ switch (teql_resolve(skb, skb_res, slave)) { case 0: - if (spin_trylock(&slave->xmit_lock)) { + if (spin_trylock_irq(&slave->xmit_lock)) { slave->xmit_lock_owner = smp_processor_id(); if (!netif_queue_stopped(slave) && slave->hard_start_xmit(skb, slave) == 0) { slave->xmit_lock_owner = -1; - spin_unlock(&slave->xmit_lock); + spin_unlock_irq(&slave->xmit_lock); master->slaves = NEXT_SLAVE(q); netif_wake_queue(dev); master->stats.tx_packets++; @@ -314,7 +314,7 @@ return 0; } slave->xmit_lock_owner = -1; - spin_unlock(&slave->xmit_lock); + spin_unlock_irq(&slave->xmit_lock); } if (netif_queue_stopped(dev)) busy = 1; From mshefty at ichips.intel.com Thu Jan 20 00:29:25 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 00:29:25 -0800 Subject: [openib-general] [PATCH] CM: add cleanup for missing connection endpoint states Message-ID: <20050120002925.34ff5537.mshefty@ichips.intel.com> This patch adds cleanup code for missing connection endpoint states when destroying a connection identifier. As part of the fix, insertion/deletion issues when tracking connections by their remote communication ID have been addressed. It also forces state transitions to IDLE/TIMEWAIT when rejecting a connection or when sending a DREQ/DREP fail. signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1592) +++ core/cm.c (working copy) @@ -60,7 +60,6 @@ static struct ib_cm { spinlock_t lock; - /* todo: (high priority) walk through table insertion/removal paths */ struct rb_root service_table; struct rb_root remote_qp_table; struct rb_root remote_id_table; @@ -109,6 +108,7 @@ union ib_gid remote_port_gid; int timeout_ms; u8 max_cm_retries; + u8 passive; }; struct cm_recv_work { @@ -360,21 +360,18 @@ return NULL; } -static struct cm_id_private * cm_acquire_id_by_remote_id(u64 remote_ca_guid, - u32 remote_id) +static void cm_remove_remote_id(struct cm_id_private *cm_id_priv) { - struct cm_id_private *cm_id_priv; unsigned long flags; + cm_id_priv->passive = 0; spin_lock_irqsave(&cm.lock, flags); - cm_id_priv = cm_find_id_by_remote_id(remote_ca_guid, remote_id); - if (cm_id_priv) - atomic_inc(&cm_id_priv->refcount); + rb_erase(&cm_id_priv->remote_id_node, &cm.remote_id_table); spin_unlock_irqrestore(&cm.lock, flags); - - return cm_id_priv; } +/* +todo: add test for stale connections static struct cm_id_private * cm_insert_remote_qpn(struct cm_id_private *cm_id_priv) { @@ -436,21 +433,7 @@ } return NULL; } - -static struct cm_id_private * cm_acquire_id_by_remote_qpn(union ib_gid *port_gid, - u32 remote_qpn) -{ - struct cm_id_private *cm_id_priv; - unsigned long flags; - - spin_lock_irqsave(&cm.lock, flags); - cm_id_priv = cm_find_id_by_remote_qpn(port_gid, remote_qpn); - if (cm_id_priv) - atomic_inc(&cm_id_priv->refcount); - spin_unlock_irqrestore(&cm.lock, flags); - - return cm_id_priv; -} +*/ static struct cm_id_private * cm_insert_remote_sidr(struct cm_id_private *cm_id_priv) @@ -528,19 +511,18 @@ int ib_destroy_cm_id(struct ib_cm_id *cm_id) { struct cm_id_private *cm_id_priv; - unsigned long flags, flags2; + unsigned long flags; cm_id_priv = container_of(cm_id, struct cm_id_private, id); - +retest: spin_lock_irqsave(&cm_id_priv->lock, flags); - /* todo: enter timewait state */ switch (cm_id->state) { case IB_CM_LISTEN: - spin_lock_irqsave(&cm.lock, flags2); - rb_erase(&cm_id_priv->service_node, &cm.service_table); - spin_unlock_irqrestore(&cm.lock, flags2); cm_id->state = IB_CM_IDLE; spin_unlock_irqrestore(&cm_id_priv->lock, flags); + spin_lock_irqsave(&cm.lock, flags); + rb_erase(&cm_id_priv->service_node, &cm.service_table); + spin_unlock_irqrestore(&cm.lock, flags); break; case IB_CM_SIDR_REQ_SENT: cm_id->state = IB_CM_IDLE; @@ -552,7 +534,35 @@ spin_unlock_irqrestore(&cm_id_priv->lock, flags); cm_reject_sidr_req(cm_id_priv, IB_SIDR_REJECT); break; + case IB_CM_REQ_SENT: + case IB_CM_MRA_REQ_RCVD: + case IB_CM_REQ_RCVD: + case IB_CM_MRA_REQ_SENT: + case IB_CM_REP_RCVD: + case IB_CM_MRA_REP_SENT: + case IB_CM_REP_SENT: + case IB_CM_MRA_REP_RCVD: + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + ib_send_cm_rej(cm_id, IB_CM_REJ_TIMEOUT, + &cm_id_priv->port->ca_guid, + sizeof &cm_id_priv->port->ca_guid, NULL, 0); + break; + case IB_CM_ESTABLISHED: + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + ib_send_cm_dreq(cm_id, NULL, 0); + goto retest; + case IB_CM_DREQ_SENT: + cm_id->state = IB_CM_TIMEWAIT; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + if (cm_id_priv->passive) + cm_remove_remote_id(cm_id_priv); + break; + case IB_CM_DREQ_RCVD: + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + ib_send_cm_drep(cm_id, NULL, 0); + break; default: + spin_unlock_irqrestore(&cm_id_priv->lock, flags); break; } @@ -585,6 +595,8 @@ cm_id->service_id = service_id; cm_id->service_mask = service_mask ? service_mask : ~0ULL; + /* todo: simplify - no need to check state above, so just insert + and see if something was already there */ spin_lock_irqsave(&cm.lock, flags); if (cm_find_service(service_id)) { /* No one else is able to change the cm_id_priv state. */ @@ -760,6 +772,7 @@ cm_id_priv->msg = msg; if (param->peer_to_peer) { + /* todo: locking is out of order - fix me */ spin_lock_irqsave(&cm.lock, flags2); cm_insert_service(cm_id_priv); spin_unlock_irqrestore(&cm.lock, flags2); @@ -839,6 +852,7 @@ req_msg = (struct cm_req_msg *)recv_work->mad_recv_wc->recv_buf.mad; cm_id_priv->remote_ca_guid = req_msg->local_ca_guid; cm_id_priv->id.remote_id = req_msg->local_comm_id; + cm_id_priv->passive = 1; spin_lock_irqsave(&cm.lock, flags); /* Check for duplicate REQ. */ @@ -856,7 +870,8 @@ goto out; /* No match. */ } spin_lock_irqsave(&cur_cm_id_priv->lock, flags2); - if (cur_cm_id_priv->id.state == IB_CM_LISTEN) { + switch (cur_cm_id_priv->id.state) { + case IB_CM_LISTEN: atomic_inc(&cur_cm_id_priv->refcount); spin_unlock_irqrestore(&cur_cm_id_priv->lock, flags2); cm_insert_remote_id(cm_id_priv); @@ -867,7 +882,8 @@ cm_id_priv->id.service_id = req_msg->service_id; cm_id_priv->id.service_mask = ~0ULL; cm_id_priv->id.state = IB_CM_REQ_RCVD; - } else { + break; + case IB_CM_REQ_SENT: /* Process peer requests. */ if (cm_is_active_peer(recv_work->port->ca_guid, req_msg->local_ca_guid, @@ -889,6 +905,11 @@ (unsigned long) cur_cm_id_priv->msg); ib_destroy_cm_id(&cm_id_priv->id); cm_id_priv = cur_cm_id_priv; + break; + default: + spin_unlock_irqrestore(&cm.lock, flags); + /* todo: reject with no match */ + goto out; /* No match. */ } cm_id_priv->port = recv_work->port; cm_id_priv->timeout_ms = cm_convert_to_ms( @@ -1236,38 +1257,41 @@ struct cm_msg *msg; struct ib_send_wr *bad_send_wr; unsigned long flags; - int ret; + int msg_ret, ret; if (private_data && private_data_len > IB_CM_DREQ_PRIVATE_DATA_SIZE) return -EINVAL; cm_id_priv = container_of(cm_id, struct cm_id_private, id); - ret = cm_alloc_msg(cm_id_priv, &msg); - if (ret) - goto out; - - cm_format_dreq((struct cm_dreq_msg *)&msg->mad, cm_id_priv, - private_data, private_data_len); - msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; + msg_ret = cm_alloc_msg(cm_id_priv, &msg); + if (!msg_ret) { + cm_format_dreq((struct cm_dreq_msg *)&msg->mad, cm_id_priv, + private_data, private_data_len); + msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; + } spin_lock_irqsave(&cm_id_priv->lock, flags); - if (cm_id->state == IB_CM_ESTABLISHED) - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, - &msg->send_wr, &bad_send_wr); - else - ret = -EINVAL; - - if (ret) { + if (cm_id->state != IB_CM_ESTABLISHED) { spin_unlock_irqrestore(&cm_id_priv->lock, flags); - cm_free_msg(cm_id_priv->msg); + ret = -EINVAL; goto out; } - - cm_id->state = IB_CM_DREQ_SENT; - msg->sent_state = IB_CM_DREQ_SENT; - cm_id_priv->msg = msg; + ret = msg_ret ? msg_ret : + ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + if (!ret) { + cm_id->state = IB_CM_DREQ_SENT; + cm_id_priv->msg = msg; + msg->sent_state = IB_CM_DREQ_SENT; + } else + cm_id->state = IB_CM_TIMEWAIT; spin_unlock_irqrestore(&cm_id_priv->lock, flags); + + if (ret && cm_id_priv->passive) + cm_remove_remote_id(cm_id_priv); out: + if (!msg_ret && ret) + cm_free_msg(cm_id_priv->msg); return ret; } EXPORT_SYMBOL(ib_send_cm_dreq); @@ -1329,35 +1353,35 @@ struct cm_msg *msg; struct ib_send_wr *bad_send_wr; unsigned long flags; - int ret; + int msg_ret, ret; if (private_data && private_data_len > IB_CM_DREP_PRIVATE_DATA_SIZE) return -EINVAL; cm_id_priv = container_of(cm_id, struct cm_id_private, id); - ret = cm_alloc_msg(cm_id_priv, &msg); - if (ret) - goto out; - - cm_format_drep((struct cm_drep_msg *)&msg->mad, cm_id_priv, - private_data, private_data_len); + msg_ret = cm_alloc_msg(cm_id_priv, &msg); + if (!msg_ret) + cm_format_drep((struct cm_drep_msg *)&msg->mad, cm_id_priv, + private_data, private_data_len); spin_lock_irqsave(&cm_id_priv->lock, flags); - if (cm_id->state == IB_CM_DREQ_RCVD) - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, - &msg->send_wr, &bad_send_wr); - else - ret = -EINVAL; - - if (ret) { + if (cm_id->state != IB_CM_DREQ_RCVD) { spin_unlock_irqrestore(&cm_id_priv->lock, flags); - cm_free_msg(cm_id_priv->msg); + ret = -EINVAL; goto out; } + ret = msg_ret ? msg_ret : + ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); cm_id->state = IB_CM_TIMEWAIT; spin_unlock_irqrestore(&cm_id_priv->lock, flags); + + if (cm_id_priv->passive) + cm_remove_remote_id(cm_id_priv); out: + if (!msg_ret && ret) + cm_free_msg(cm_id_priv->msg); return ret; } EXPORT_SYMBOL(ib_send_cm_drep); @@ -1382,6 +1406,9 @@ cm_id_priv->id.state = IB_CM_TIMEWAIT; spin_unlock_irqrestore(&cm_id_priv->lock, flags); + if (cm_id_priv->passive) + cm_remove_remote_id(cm_id_priv); + ib_cancel_mad(recv_work->port->mad_agent, (unsigned long) cm_id_priv->msg); @@ -1444,43 +1471,49 @@ struct cm_msg *msg; struct ib_send_wr *bad_send_wr; unsigned long flags; - int ret; + int msg_ret, ret; if ((private_data && private_data_len > IB_CM_REJ_PRIVATE_DATA_SIZE) || (ari && ari_length > IB_CM_REJ_ARI_LENGTH)) return -EINVAL; cm_id_priv = container_of(cm_id, struct cm_id_private, id); - ret = cm_alloc_msg(cm_id_priv, &msg); - if (ret) - goto out; - - cm_format_rej((struct cm_rej_msg *)&msg->mad, cm_id_priv, reason, - ari, ari_length, private_data, private_data_len); + msg_ret = cm_alloc_msg(cm_id_priv, &msg); + if (!msg_ret) + cm_format_rej((struct cm_rej_msg *) &msg->mad, cm_id_priv, + reason, ari, ari_length, private_data, + private_data_len); spin_lock_irqsave(&cm_id_priv->lock, flags); switch (cm_id->state) { + case IB_CM_REQ_SENT: + case IB_CM_MRA_REQ_RCVD: case IB_CM_REQ_RCVD: case IB_CM_MRA_REQ_SENT: case IB_CM_REP_RCVD: case IB_CM_MRA_REP_SENT: - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, - &msg->send_wr, &bad_send_wr); + cm_id->state = IB_CM_IDLE; break; - default: - ret = -EINVAL; + case IB_CM_REP_SENT: + case IB_CM_MRA_REP_RCVD: + cm_id->state = IB_CM_TIMEWAIT; break; - } - - if (ret) { + default: spin_unlock_irqrestore(&cm_id_priv->lock, flags); - cm_free_msg(cm_id_priv->msg); + ret = -EINVAL; goto out; } - - cm_id->state = IB_CM_IDLE; spin_unlock_irqrestore(&cm_id_priv->lock, flags); + + if (cm_id_priv->passive) + cm_remove_remote_id(cm_id_priv); + + ret = msg_ret ? msg_ret : + ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); out: + if (!msg_ret && ret) + cm_free_msg(cm_id_priv->msg); return ret; } EXPORT_SYMBOL(ib_send_cm_rej); @@ -1797,7 +1830,6 @@ cm_free_msg(cm_id_priv->msg); goto out; } - cm_id->lap_state = IB_CM_LAP_IDLE; spin_unlock_irqrestore(&cm_id_priv->lock, flags); out: @@ -2125,6 +2157,8 @@ goto discard; } spin_unlock_irqrestore(&cm_id_priv->lock, flags); + if (cm_id_priv->passive) + cm_remove_remote_id(cm_id_priv); cm_event.param.send_status = wc_status; cm_id_priv->id.cm_handler(&cm_id_priv->id, &cm_event); cm_free_msg(msg); @@ -2151,17 +2185,15 @@ cm_free_msg(msg); return; } + spin_unlock_irqrestore(&cm_id_priv->lock, flags); if (msg->retry++ < cm_id_priv->max_cm_retries) { ret = ib_post_send_mad(cm_id_priv->port->mad_agent, &msg->send_wr, &bad_send_wr); - spin_unlock_irqrestore(&cm_id_priv->lock, flags); if (ret) cm_process_send_error(msg, IB_WC_GENERAL_ERR); - } else { - spin_unlock_irqrestore(&cm_id_priv->lock, flags); + } else cm_process_send_error(msg, IB_WC_RESP_TIMEOUT_ERR); - } } static void cm_send_handler(struct ib_mad_agent *mad_agent, From mlleinin at hpcn.ca.sandia.gov Thu Jan 20 00:07:36 2005 From: mlleinin at hpcn.ca.sandia.gov (Matt Leininger) Date: Thu, 20 Jan 2005 00:07:36 -0800 Subject: [openib-general] patches from subversion In-Reply-To: <20050120063236.GF11410@esmail.cup.hp.com> References: <20050119012557.703212cf.mshefty@ichips.intel.com> <20050119150857.GA10707@mellanox.co.il> <20050119181525.GB8754@esmail.cup.hp.com> <1106192913.2603.1260.camel@localhost> <20050120063236.GF11410@esmail.cup.hp.com> Message-ID: <1106208457.2787.1279.camel@localhost> On Wed, 2005-01-19 at 22:32 -0800, Grant Grundler wrote: > On Wed, Jan 19, 2005 at 07:48:33PM -0800, Matt Leininger wrote: > > Added to the OpenIB FAQ. Check www.openib.org/docs/openib_faq.txt to > > make sure I've captured all the suggestions. > > Thanks! > > | It is preferred that patches are generated with the diff -up option. > | How are a few ways to do this. > > s/How/Here > > | > | 2) svn diff --diff-cmd "/usr/bin/diff" -x -up FILENAME > | > | 3) svn diff --diff-cmd mydiff > > Can you replace it with the following? > > | It is preferred that patches are generated with the diff -up option. > | Here is a sample command line: > | svn diff --diff-cmd "/usr/bin/diff" -x -up FILENAME > | > | or using a "mydiff" wrapper: > | svn diff --diff-cmd mydiff > | (or modify ~/.subversion/config: diff-cmd = ~/bin/mydiff) > | > | where "~/bin/mydiff contains: > | #!/usr/bin/perl > | exec ("diff", "-up", at ARGV); > Done. - Matt From davem at davemloft.net Wed Jan 19 23:05:43 2005 From: davem at davemloft.net (David S. Miller) Date: Wed, 19 Jan 2005 23:05:43 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050120031423.GC30088@wotan.suse.de> References: <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <20050120031423.GC30088@wotan.suse.de> Message-ID: <20050119230543.22a04473.davem@davemloft.net> On Thu, 20 Jan 2005 04:14:23 +0100 Andi Kleen wrote: > Looks good to me and much cleaner than what I initially did. > Thanks. Thanks for the review Andi. From halr at voltaire.com Thu Jan 20 05:05:53 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 20 Jan 2005 08:05:53 -0500 Subject: [openib-general] RE: OpenSM: Some more osm_sa_path_record.c questions In-Reply-To: <506C3D7B14CDD411A52C00025558DED6047EEC7D@mtlex01.yok.mtl.com> References: <506C3D7B14CDD411A52C00025558DED6047EEC7D@mtlex01.yok.mtl.com> Message-ID: <1106226353.4648.714.camel@localhost.localdomain> Hi Eitan, On Wed, 2005-01-19 at 16:01, Eitan Zahavi wrote: > You had 2 questions: > 1. Why are non default PKey and SL invalid when they are requested in > the component mask of the SA request for PathRecord ? > [EZ] The reason for that is that OpenSM does not support pruning of > paths based on the PKeys or SL fields. So if a query requiring the > paths to follow a specific SL or PKey is received - an empty response > is provided. By pruning (in this context), do you mean that the SA reports all paths regardless of SL and PKey (even when these components are qualifiers) ? > As always a patch fixing this will be appreciated. > > 2. Are component masks SGID and SLID, and DGID and DLID mutually > exclusive ? > > [EZ] The code you quote is only use for limiting the "world" by the > given DGID/DLID or SGID/SLID. Based on the limit found (either a > "pair", "half world" or "full world") the search is done in a more > efficient manner. After limiting the search to a smaller set than all > ports to all other ports, the paths are filtered by the provided > comp_mask. So in your case where both SGID and SLID masks are given - > later the paths will be filtered. > > Were you able to exercise this bug? Or are you only reading through? I was reading through the code but could easily come up with test case(s). -- Hal From eitan at mellanox.co.il Thu Jan 20 06:31:47 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Thu, 20 Jan 2005 16:31:47 +0200 Subject: [openib-general] RE: OpenSM: Some more osm_sa_path_record.c questions Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC8E@mtlex01.yok.mtl.com> Hal wrote: By pruning (in this context), do you mean that the SA reports all paths regardless of SL and PKey (even when these components are qualifiers) ? [EZ] exactly that. So if you provide the mask for these components and the value is not the default value - OpenSM will not provide you any Path records... -------------- next part -------------- An HTML attachment was scrubbed... URL: From shemminger at osdl.org Thu Jan 20 08:56:11 2005 From: shemminger at osdl.org (Stephen Hemminger) Date: Thu, 20 Jan 2005 08:56:11 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050119230526.393a5184.davem@davemloft.net> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> Message-ID: <20050120085611.33f9485e@dxpl.pdx.osdl.net> You might want to enforce that LLTX devices like tunnels need to have no transmit queue (tx_queue_len == 0)? I can run a test on 8 way with e1000 if it would help. From bunk at stusta.de Thu Jan 20 09:02:36 2005 From: bunk at stusta.de (Adrian Bunk) Date: Thu, 20 Jan 2005 18:02:36 +0100 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <52vf9ud0b8.fsf@topspin.com> References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118180505.GA24404@mellanox.co.il> <52zmz6d2vw.fsf@topspin.com> <20050118181640.GB24404@mellanox.co.il> <52vf9ud0b8.fsf@topspin.com> Message-ID: <20050120170236.GB3174@stusta.de> On Tue, Jan 18, 2005 at 11:06:19AM -0800, Roland Dreier wrote: > Michael> By the way, I was looking at using RCU to reduce locking, > Michael> also for thing like poll_cq. What do you say to that? > > Unless it's a dramatic speedup, we should avoid RCU because it seems > RCU can only be used with GPL code, not dual GPL/BSD. "dual GPL/BSD" means you can choose whether you want to use the code under the GPL or under a BSD licence. Therefore, it's simply GPL code. And even in the other case, the 3-clause BSD licence is compatible with the GPL. > - Roland cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed From greg at kroah.com Thu Jan 20 09:11:19 2005 From: greg at kroah.com (Greg KH) Date: Thu, 20 Jan 2005 09:11:19 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <20050120170236.GB3174@stusta.de> References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118180505.GA24404@mellanox.co.il> <52zmz6d2vw.fsf@topspin.com> <20050118181640.GB24404@mellanox.co.il> <52vf9ud0b8.fsf@topspin.com> <20050120170236.GB3174@stusta.de> Message-ID: <20050120171118.GA9538@kroah.com> On Thu, Jan 20, 2005 at 06:02:36PM +0100, Adrian Bunk wrote: > On Tue, Jan 18, 2005 at 11:06:19AM -0800, Roland Dreier wrote: > > Michael> By the way, I was looking at using RCU to reduce locking, > > Michael> also for thing like poll_cq. What do you say to that? > > > > Unless it's a dramatic speedup, we should avoid RCU because it seems > > RCU can only be used with GPL code, not dual GPL/BSD. > > "dual GPL/BSD" means you can choose whether you want to use the code > under the GPL or under a BSD licence. > > Therefore, it's simply GPL code. Sure, but then no one can then take that code and use it under the BSD license in the future, due to the dependancy on the RCU code, which is _only_ allowed to be used under the GPL. That's the main reason the openib people object to this, it has nothing to do with the in-kernel code at all. Personally, I think it's a stupid thing to try to license this code in a dual way, as any port someone is going to have to do to get this code to work in another os will be almost a complete rewrite in the end anyway... thanks, greg k-h From iod00d at hp.com Thu Jan 20 09:19:23 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 20 Jan 2005 09:19:23 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <20050120170236.GB3174@stusta.de> References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118180505.GA24404@mellanox.co.il> <52zmz6d2vw.fsf@topspin.com> <20050118181640.GB24404@mellanox.co.il> <52vf9ud0b8.fsf@topspin.com> <20050120170236.GB3174@stusta.de> Message-ID: <20050120171923.GI13299@esmail.cup.hp.com> On Thu, Jan 20, 2005 at 06:02:36PM +0100, Adrian Bunk wrote: > On Tue, Jan 18, 2005 at 11:06:19AM -0800, Roland Dreier wrote: > > Michael> By the way, I was looking at using RCU to reduce locking, > > Michael> also for thing like poll_cq. What do you say to that? > > > > Unless it's a dramatic speedup, we should avoid RCU because it seems > > RCU can only be used with GPL code, not dual GPL/BSD. > > "dual GPL/BSD" means you can choose whether you want to use the code > under the GPL or under a BSD licence. > > Therefore, it's simply GPL code. Adrian, I think you overlooked the fact that include/linux/rcupdate.h is published under the GPL. Not "dual GPL/BSD". Someone can't take code that uses linux's RCU and ship it under a BSD license. There are "consumers" of openib.org that want to do that. ergo we can't use RCU unless they are willing to give that up. > And even in the other case, the 3-clause BSD licence is compatible with > the GPL. Sorry - I'm no lawyer. I've never heard of "3-clause BSD" and that's probably a good thing. I fail to see the point of something that's compatible with GPL since one could just use GPL in that case. grant From tommy.christensen at tpack.net Thu Jan 20 05:51:25 2005 From: tommy.christensen at tpack.net (Tommy Christensen) Date: Thu, 20 Jan 2005 14:51:25 +0100 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050119230526.393a5184.davem@davemloft.net> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> Message-ID: <1106229084.5812.40.camel@tsc-6.cph.tpack.net> On Thu, 2005-01-20 at 08:05, David S. Miller wrote: > So I'm going to check this in and push upstream. Let me know > if folks find any other errors. Hi Dave Sorry to be the one with bad news. I am in favour of this idea, but there are still issues that need to be sorted out. > ===== drivers/net/sungem.c 1.72 vs edited ===== > --- 1.72/drivers/net/sungem.c 2004-11-05 15:56:15 -08:00 > +++ edited/drivers/net/sungem.c 2005-01-19 22:29:14 -08:00 > @@ -932,12 +932,12 @@ > readl(gp->regs + MAC_RXCFG)); > > spin_lock_irq(&gp->lock); > - spin_lock(&gp->tx_lock); > + spin_lock(&dev->xmit_lock); > > gp->reset_task_pending = 2; > schedule_work(&gp->reset_task); > > - spin_unlock(&gp->tx_lock); > + spin_unlock(&dev->xmit_lock); > spin_unlock_irq(&gp->lock); > } > ->tx_timeout() can't take dev->xmit_lock, since dev_watchdog already has it held. A lot more serious is the fact that ->tx_timeout() and ->hard_start_xmit() are no longer allowed to do this: spin_lock_irq() ... spin_unlock_irq() since that would leave us with irq's enabled while still holding the xmit_lock. This would have to be fixed for non-LLTX drivers as well. -Tommy From mshefty at ichips.intel.com Thu Jan 20 10:02:24 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 10:02:24 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <20050120171118.GA9538@kroah.com> References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118180505.GA24404@mellanox.co.il> <52zmz6d2vw.fsf@topspin.com> <20050118181640.GB24404@mellanox.co.il> <52vf9ud0b8.fsf@topspin.com> <20050120170236.GB3174@stusta.de> <20050120171118.GA9538@kroah.com> Message-ID: <41EFF230.8070101@ichips.intel.com> Greg KH wrote: > Personally, I think it's a stupid thing to try to license this code in a > dual way, as any port someone is going to have to do to get this code to > work in another os will be almost a complete rewrite in the end > anyway... I think that companies want to be able to make derivative works without needing to make the derivative open source, versus porting it to another OS. - Sean From mshefty at ichips.intel.com Thu Jan 20 10:20:58 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 10:20:58 -0800 Subject: [openib-general] RFC on CM error handling Message-ID: <41EFF68A.9070707@ichips.intel.com> I'm looking for comments on how to handle errors in the CM with respect to state transitions. If an error occurs while trying to drive the state of a connection endpoint, should the state transition still occur? Right now, I force the state to idle or timewait if the user makes a call to reject a connection, and that call fails. I also force the state to timewait if a call to disconnect fails. Comments? Should other error cases be handled similarly? E.g. if a call to send a reply fails, should the state remain the same (which would let the user reject the connection), should the state transition into the idle state, should a reject be automatically attempted, or ... ? - Sean From greg at kroah.com Thu Jan 20 10:21:20 2005 From: greg at kroah.com (Greg KH) Date: Thu, 20 Jan 2005 10:21:20 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <41EFF230.8070101@ichips.intel.com> References: <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118180505.GA24404@mellanox.co.il> <52zmz6d2vw.fsf@topspin.com> <20050118181640.GB24404@mellanox.co.il> <52vf9ud0b8.fsf@topspin.com> <20050120170236.GB3174@stusta.de> <20050120171118.GA9538@kroah.com> <41EFF230.8070101@ichips.intel.com> Message-ID: <20050120182116.GB10069@kroah.com> On Thu, Jan 20, 2005 at 10:02:24AM -0800, Sean Hefty wrote: > Greg KH wrote: > > >Personally, I think it's a stupid thing to try to license this code in a > >dual way, as any port someone is going to have to do to get this code to > >work in another os will be almost a complete rewrite in the end > >anyway... > > I think that companies want to be able to make derivative works without > needing to make the derivative open source, versus porting it to > another OS. And then run that derivitave work on a Linux GPL kernel? Hah, good luck with your lawyers if you try to do that. And good luck trying to work around symbols that the openib code is using that are marked EXPORT_SYMBOL_GPL(). Why do people try to do such stupid things, haven't the IB members learned from the past... Remind me to _never_ send in an openib kernel patch if this is the reason why the license is what it is. bleah. greg k-h From mshefty at ichips.intel.com Thu Jan 20 10:27:49 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 10:27:49 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <20050120182116.GB10069@kroah.com> References: <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118180505.GA24404@mellanox.co.il> <52zmz6d2vw.fsf@topspin.com> <20050118181640.GB24404@mellanox.co.il> <52vf9ud0b8.fsf@topspin.com> <20050120170236.GB3174@stusta.de> <20050120171118.GA9538@kroah.com> <41EFF230.8070101@ichips.intel.com> <20050120182116.GB10069@kroah.com> Message-ID: <41EFF825.20502@ichips.intel.com> Greg KH wrote: >>>Personally, I think it's a stupid thing to try to license this code in a >>>dual way, as any port someone is going to have to do to get this code to >>>work in another os will be almost a complete rewrite in the end >>>anyway... >> >>I think that companies want to be able to make derivative works without >>needing to make the derivative open source, versus porting it to >>another OS. > > And then run that derivitave work on a Linux GPL kernel? Hah, good luck > with your lawyers if you try to do that. And good luck trying to work > around symbols that the openib code is using that are marked > EXPORT_SYMBOL_GPL(). > > Why do people try to do such stupid things, haven't the IB members > learned from the past... I'm not criticizing or defending this, just guessing the reason for the dual license. From libor at topspin.com Thu Jan 20 10:44:08 2005 From: libor at topspin.com (Libor Michalek) Date: Thu, 20 Jan 2005 10:44:08 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <41EFF68A.9070707@ichips.intel.com>; from mshefty@ichips.intel.com on Thu, Jan 20, 2005 at 10:20:58AM -0800 References: <41EFF68A.9070707@ichips.intel.com> Message-ID: <20050120104408.A29075@topspin.com> On Thu, Jan 20, 2005 at 10:20:58AM -0800, Sean Hefty wrote: > I'm looking for comments on how to handle errors in the CM with respect > to state transitions. If an error occurs while trying to drive the > state of a connection endpoint, should the state transition still occur? > > Right now, I force the state to idle or timewait if the user makes a > call to reject a connection, and that call fails. I also force the > state to timewait if a call to disconnect fails. > > Comments? Should other error cases be handled similarly? E.g. if a > call to send a reply fails, should the state remain the same (which > would let the user reject the connection), should the state transition > into the idle state, should a reject be automatically attempted, or ... ? What sort of failure did you have in mind, synchronous or async? I would think that if a call that is going to change-state, like send_rep fails, the reject is going to fail as well. If it's an async failure then it is reported as a transition into idle, right? Another question, should I expect a REJ to be generated if the REQ or REP handler returns an error? From the code it doesn't look like that behaviour currently exists. -Libor From tduffy at sun.com Thu Jan 20 10:45:45 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 20 Jan 2005 10:45:45 -0800 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106180143.4648.595.camel@localhost.localdomain> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> <1106170236.20998.14.camel@duffman> <1106180143.4648.595.camel@localhost.localdomain> Message-ID: <1106246745.18269.8.camel@duffman> On Wed, 2005-01-19 at 19:15 -0500, Hal Rosenstock wrote: > The OpenIB side wouldn't send an ACK so this message must indicate > something else. Any chance you can get an IB trace of what is going on ? > Alternatively can you dump out the MAD where the unsupported base > version is printed out ? It will take me a little bit before I am setup > to try to recreate this. Here is the analysis of what is going on (from Solaris's perspective). Sandip Barua wrote: > Based on the trace output I obtained this morning, > I am seeing a number of the following transactions: > > 1) IBMF makes a request (non-RMPP send) > 2) openIB responds with one RMPP MAD which is marked as both > the first and the last packet of the RMPP transaction > 3) IBMF sends an ACK > > At this point, the transaction should be complete, but MADs continue > to arrive. In one case an ACK arrives which is an > illegal packet to receive while in receiver terminate loop, so, ibmf > returns an ABORT. In the remaining cases, DATA packets are being > received after the transaction is complete, so, ibmf drops them and > returns ACKs if in the receiver termination loop. > > From the IBMF side, the following packets are being sent, > o request data packet (non-rmpp, will not have base version set) > o ACK packet on completion of the transaction > o ABORT packet on receiving an ACK > > Based on my review of the code, and the occurrence of certain > messages, it looks to me like the base version should be set on all > outgoing ACK and ABORT packets. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From halr at voltaire.com Thu Jan 20 11:14:51 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 20 Jan 2005 14:14:51 -0500 Subject: [openib-general] RFC on CM error handling In-Reply-To: <41EFF68A.9070707@ichips.intel.com> References: <41EFF68A.9070707@ichips.intel.com> Message-ID: <1106248491.4648.906.camel@localhost.localdomain> On Thu, 2005-01-20 at 13:20, Sean Hefty wrote: > I'm looking for comments on how to handle errors in the CM with respect > to state transitions. If an error occurs while trying to drive the > state of a connection endpoint, should the state transition still occur? > > Right now, I force the state to idle or timewait if the user makes a > call to reject a connection, and that call fails. I also force the > state to timewait if a call to disconnect fails. > > Comments? Should other error cases be handled similarly? E.g. if a > call to send a reply fails, should the state remain the same (which > would let the user reject the connection), should the state transition > into the idle state, should a reject be automatically attempted, or ... ? Does changing the CEP to TIMEOUT or IDLE, do anything to the QP state ? Is that up to the CM client ? I'm not sure the CM state should move at all in these cases. What is the CM client to do in these cases ? If it was a temporary error, might it be able to send the proper CM message later ? -- Hal From mshefty at ichips.intel.com Thu Jan 20 11:21:49 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 11:21:49 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <20050120104408.A29075@topspin.com> References: <41EFF68A.9070707@ichips.intel.com> <20050120104408.A29075@topspin.com> Message-ID: <41F004CD.90704@ichips.intel.com> Libor Michalek wrote: > What sort of failure did you have in mind, synchronous or async? I > would think that if a call that is going to change-state, like send_rep > fails, the reject is going to fail as well. If it's an async failure > then it is reported as a transition into idle, right? I was referring to synchronous errors. And, you're right, if a call like send_rep fails, then the reject is likely to fail as well. The difference is that reject will force the state to idle/timewait. > Another question, should I expect a REJ to be generated if the REQ or > REP handler returns an error? From the code it doesn't look like that > behaviour currently exists. This is part of the reason why I brought this up. Currently, the code will not generate a reject on a failure sending a REP or RTU. But the communication identifier state doesn't change. This allows the user to reject the connection. Note that if the user simply destroys the communication identifier at this point, the CM will reject the connection. - Sean From mshefty at ichips.intel.com Thu Jan 20 11:25:47 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 11:25:47 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <1106248491.4648.906.camel@localhost.localdomain> References: <41EFF68A.9070707@ichips.intel.com> <1106248491.4648.906.camel@localhost.localdomain> Message-ID: <41F005BB.9030208@ichips.intel.com> Hal Rosenstock wrote: > Does changing the CEP to TIMEOUT or IDLE, do anything to the QP state ? > Is that up to the CM client ? The CM does nothing to the QP state. However, changing the CEP to timewait would eventually prevent the QP from being used in a connection for the duration of the timewait. (The code to do this is not there now.) > I'm not sure the CM state should move at all in these cases. What is the > CM client to do in these cases ? If it was a temporary error, might it > be able to send the proper CM message later ? The user might be able to send the proper CM message later, since the error could be related to low resources. - Sean From jgarzik at pobox.com Thu Jan 20 11:16:56 2005 From: jgarzik at pobox.com (Jeff Garzik) Date: Thu, 20 Jan 2005 14:16:56 -0500 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050119230526.393a5184.davem@davemloft.net> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> Message-ID: <41F003A8.3050806@pobox.com> Reminder: double-check that the locking rules in Documentation/networking/netdevices.txt still apply; update the text file where you changed things. From 3d at sinate.com Thu Jan 20 11:44:31 2005 From: 3d at sinate.com (Sinate) Date: Thu, 20 Jan 2005 19:44:31 +0000 Subject: [openib-general] How can I tell that I really using SDP? Message-ID: <41F00A1F.1050508@sinate.com> I am using sockets over IB. My vendor (Infinico) asures me that SDP will be used, but how can I check this for myself? Thanks. From halr at voltaire.com Thu Jan 20 11:41:08 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 20 Jan 2005 14:41:08 -0500 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106246745.18269.8.camel@duffman> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> <1106170236.20998.14.camel@duffman> <1106180143.4648.595.camel@localhost.localdomain> <1106246745.18269.8.camel@duffman> Message-ID: <1106250068.4648.971.camel@localhost.localdomain> On Thu, 2005-01-20 at 13:45, Tom Duffy wrote: > On Wed, 2005-01-19 at 19:15 -0500, Hal Rosenstock wrote: > > The OpenIB side wouldn't send an ACK so this message must indicate > > something else. Any chance you can get an IB trace of what is going on ? > > Alternatively can you dump out the MAD where the unsupported base > > version is printed out ? It will take me a little bit before I am setup > > to try to recreate this. > > Here is the analysis of what is going on (from Solaris's perspective). > > Sandip Barua wrote: > > Based on the trace output I obtained this morning, > > I am seeing a number of the following transactions: > > > > 1) IBMF makes a request (non-RMPP send) This is the SA GetTable request. > > 2) openIB responds with one RMPP MAD which is marked as both > > the first and the last packet of the RMPP transaction This is the SA GetTableResp. > > 3) IBMF sends an ACK Not 100% sure what the OpenIB side would do with this. The ACK is an SA packet which should have the MAD header properly filled in. Can you insert some code to dump the first 32 bytes of the MAD when the base version is unsupported (in the if clause at line 1463) and send me the output ? Also, is there anything in the OSM logs ? > > At this point, the transaction should be complete, Agreed. > but MADs continue > > to arrive. In one case an ACK arrives which is an > > illegal packet to receive while in receiver terminate loop, OpenIB doesn't generate ACKs so this is a mystery to me. > so, ibmf > > returns an ABORT. Yes, if the receiver is terminating, receiving an ACK with IsDS 0 should cause an ABORT to be sent. > In the remaining cases, DATA packets are being > > received after the transaction is complete, This is also a mystery to me. I don't know what these additional DATA packets from OpenIB would be. > so, ibmf drops them and > > returns ACKs if in the receiver termination loop. Looks to me like these should also be ABORTed with BadT in the receiver termination loop. > > From the IBMF side, the following packets are being sent, > > o request data packet (non-rmpp, will not have base version set) Do you mean RMPP version (since RMPP is not active) ? Doesn't base version always need setting ? > > o ACK packet on completion of the transaction > > o ABORT packet on receiving an ACK > > > > Based on my review of the code, and the occurrence of certain > > messages, it looks to me like the base version should be set on all > > outgoing ACK and ABORT packets. Thanks for the detailed analysis. -- Hal From halr at voltaire.com Thu Jan 20 11:49:52 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 20 Jan 2005 14:49:52 -0500 Subject: [openib-general] OpenIB OpenSM License Message-ID: <1106250592.4648.998.camel@localhost.localdomain> Hi, Is this acceptable to Intel as the license which will be placed on the OpenSM files ? Does Mellanox want a copyright line too on this ? Thanks. -- Hal /* * Copyright (c) 2004, 2005 Voltaire, Inc. All rights reserved. * Copyright (c) 1996-2003 Intel Corporation. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * $Id: */ From mshefty at ichips.intel.com Thu Jan 20 13:10:44 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 13:10:44 -0800 Subject: [openib-general] [PATCH] CM: fix locking order sending a REQ Message-ID: <20050120131044.27797674.mshefty@ichips.intel.com> Patch for re-order locking semantics when sending a REQ. signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1605) +++ core/cm.c (working copy) @@ -703,17 +703,25 @@ struct ib_cm_req_param *param) { struct cm_id_private *cm_id_priv; - struct cm_msg *msg; struct ib_send_wr *bad_send_wr; struct ib_sa_path_rec *path; - unsigned long flags, flags2; + unsigned long flags; int ret; ret = cm_validate_req_param(param); if (ret) - goto out; + return ret; + /* Verify that we're not in timewait. */ cm_id_priv = container_of(cm_id, struct cm_id_private, id); + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id->state != IB_CM_IDLE) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + ret = -EINVAL; + goto out; + } + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_id_priv->port = cm_find_port(param->qp->device, ¶m->primary_path->sgid); if (!cm_id_priv->port) { @@ -737,35 +745,41 @@ path = param->primary_path; cm_set_ah_attr(&cm_id_priv->ah_attr, cm_id_priv->port->port_num, path->dlid, path->sl, path->slid & 0x7F); - ret = cm_alloc_msg(cm_id_priv, &msg); + ret = cm_alloc_msg(cm_id_priv, &cm_id_priv->msg); if (ret) goto out; - cm_format_req((struct cm_req_msg *)&msg->mad, cm_id_priv, param); - msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; + cm_format_req((struct cm_req_msg *)&cm_id_priv->msg->mad, + cm_id_priv, param); + cm_id_priv->msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; + cm_id_priv->msg->sent_state = IB_CM_REQ_SENT; + + /* + * Received REQs won't match until we're in REQ_SENT state. This + * simplifies error recovery if the send fails. + */ + if (param->peer_to_peer) { + spin_lock_irqsave(&cm.lock, flags); + cm_insert_service(cm_id_priv); + spin_unlock_irqrestore(&cm.lock, flags); + } spin_lock_irqsave(&cm_id_priv->lock, flags); - if (cm_id->state == IB_CM_IDLE) - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, - &msg->send_wr, &bad_send_wr); - else - ret = -EINVAL; + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &cm_id_priv->msg->send_wr, &bad_send_wr); if (ret) { spin_unlock_irqrestore(&cm_id_priv->lock, flags); + if (param->peer_to_peer) { + spin_lock_irqsave(&cm.lock, flags); + rb_erase(&cm_id_priv->service_node, &cm.service_table); + spin_unlock_irqrestore(&cm.lock, flags); + } cm_free_msg(cm_id_priv->msg); goto out; } + BUG_ON(cm_id->state != IB_CM_IDLE); cm_id->state = IB_CM_REQ_SENT; - msg->sent_state = IB_CM_REQ_SENT; - cm_id_priv->msg = msg; - - if (param->peer_to_peer) { - /* todo: locking is out of order - fix me */ - spin_lock_irqsave(&cm.lock, flags2); - cm_insert_service(cm_id_priv); - spin_unlock_irqrestore(&cm.lock, flags2); - } spin_unlock_irqrestore(&cm_id_priv->lock, flags); out: return ret; From tduffy at sun.com Thu Jan 20 12:36:25 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 20 Jan 2005 12:36:25 -0800 Subject: [openib-general] How can I tell that I really using SDP? In-Reply-To: <41F00A1F.1050508@sinate.com> References: <41F00A1F.1050508@sinate.com> Message-ID: <1106253385.18269.27.camel@duffman> On Thu, 2005-01-20 at 19:44 +0000, Sinate wrote: > I am using sockets over IB. My vendor (Infinico) asures me that SDP will > be used, but how can I check this for myself? Take a look at the IP statistics. They should not be updated when packets are transmitted using SDP. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From libor at topspin.com Thu Jan 20 13:02:12 2005 From: libor at topspin.com (Libor Michalek) Date: Thu, 20 Jan 2005 13:02:12 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <41F004CD.90704@ichips.intel.com>; from mshefty@ichips.intel.com on Thu, Jan 20, 2005 at 11:21:49AM -0800 References: <41EFF68A.9070707@ichips.intel.com> <20050120104408.A29075@topspin.com> <41F004CD.90704@ichips.intel.com> Message-ID: <20050120130212.A29210@topspin.com> On Thu, Jan 20, 2005 at 11:21:49AM -0800, Sean Hefty wrote: > Libor Michalek wrote: > > > What sort of failure did you have in mind, synchronous or async? I > > would think that if a call that is going to change-state, like send_rep > > fails, the reject is going to fail as well. If it's an async failure > > then it is reported as a transition into idle, right? > > I was referring to synchronous errors. And, you're right, if a call > like send_rep fails, then the reject is likely to fail as well. The > difference is that reject will force the state to idle/timewait. I suppose it makes sense to allow the consumer to make the REJ request or wait and retry the REP. > > Another question, should I expect a REJ to be generated if the REQ or > > REP handler returns an error? From the code it doesn't look like that > > behaviour currently exists. > > This is part of the reason why I brought this up. Currently, the code > will not generate a reject on a failure sending a REP or RTU. But the > communication identifier state doesn't change. This allows the user to > reject the connection. Note that if the user simply destroys the > communication identifier at this point, the CM will reject the connection. Actually, I was thinking about returning an error from the REP/REQ handler, this I believe is suppose to destroy the communication identifier, which I presume will generate a REJ? This is at least the behaviour I would like to see. In this case, since the communication identifier is destroyed there wouldn't be any other state transitions. Yet another issue. Saving the info from the incomming CM message, specifically REQ and REP, for later QP transitions is something that's going to be duplicated quite a bit. I would really like to see this data in the communication identifier itself, so it can be plucked out later for the QP modifies. To take it one step further, Roland had the suggestion, that it would be really nice to have CM conveniance functions, to which you pass a cm_id and qp_attr structure and it assigns all the correct values and masks for a given transition. For example: int ib_cm_prep_rtr(struct ib_cm_id *, struct ib_qp_attr *); int ib_cm_prep_rts(struct ib_cm_id *, struct ib_qp_attr *); This would reduce a lot of redundent code in CM consumers, and still provide the fleaxability of allowing the CM user to customize the QP attr before making the transition. What do you think? -Libor From Sandip.Barua at Sun.COM Thu Jan 20 13:07:28 2005 From: Sandip.Barua at Sun.COM (sandip barua) Date: Thu, 20 Jan 2005 16:07:28 -0500 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106250068.4648.971.camel@localhost.localdomain> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> <1106170236.20998.14.camel@duffman> <1106180143.4648.595.camel@localhost.localdomain> <1106246745.18269.8.camel@duffman> <1106250068.4648.971.camel@localhost.localdomain> Message-ID: <41F01D90.3030103@Sun.COM> I did find the bug that causes the incorrect base version for outgoing MADs while in the receiver termination loop. I fixed the software on Tom's solaris system. I still do see the incoming ACK, but not many other unexpected packets from a brief look at the traces. A couple responses below as well. - Sandip Hal Rosenstock wrote: > On Thu, 2005-01-20 at 13:45, Tom Duffy wrote: > >>On Wed, 2005-01-19 at 19:15 -0500, Hal Rosenstock wrote: >> >>>The OpenIB side wouldn't send an ACK so this message must indicate >>>something else. Any chance you can get an IB trace of what is going on ? >>>Alternatively can you dump out the MAD where the unsupported base >>>version is printed out ? It will take me a little bit before I am setup >>>to try to recreate this. >> >>Here is the analysis of what is going on (from Solaris's perspective). >> >>Sandip Barua wrote: >> >>>Based on the trace output I obtained this morning, >>>I am seeing a number of the following transactions: >>> >>>1) IBMF makes a request (non-RMPP send) > > > This is the SA GetTable request. > > >>>2) openIB responds with one RMPP MAD which is marked as both >>> the first and the last packet of the RMPP transaction > > > This is the SA GetTableResp. > > >>>3) IBMF sends an ACK > > > Not 100% sure what the OpenIB side would do with this. The ACK is an SA > packet which should have the MAD header properly filled in. > > Can you insert some code to dump the first 32 bytes of the MAD when the > base version is unsupported (in the if clause at line 1463) > and send me the output ? > > Also, is there anything in the OSM logs ? > > >>>At this point, the transaction should be complete, > > > Agreed. > > >> but MADs continue >> >>>to arrive. In one case an ACK arrives which is an >>>illegal packet to receive while in receiver terminate loop, > > > OpenIB doesn't generate ACKs so this is a mystery to me. > > >> so, ibmf >> >>>returns an ABORT. > > > Yes, if the receiver is terminating, receiving an ACK with IsDS 0 should > cause an ABORT to be sent. > > >>In the remaining cases, DATA packets are being >> >>>received after the transaction is complete, > > > This is also a mystery to me. I don't know what these additional DATA > packets from OpenIB would be. > > >> so, ibmf drops them and >> >>>returns ACKs if in the receiver termination loop. > > > Looks to me like these should also be ABORTed with BadT in the receiver > termination loop. My interpretation is that if a DATA packet arrives in the receiver termination loop, an ACK should be sent. If an ACK arrives, and the transaction is not double-sided, an ABORT should be sent. If any other packet arrives, an ABORT should be sent. > > >>>From the IBMF side, the following packets are being sent, >>>o request data packet (non-rmpp, will not have base version set) > > > Do you mean RMPP version (since RMPP is not active) ? Doesn't base > version always need setting ? Yes. I was looking at the wrong version field. Sorry about that. > > >>>o ACK packet on completion of the transaction >>>o ABORT packet on receiving an ACK >>> >>>Based on my review of the code, and the occurrence of certain >>>messages, it looks to me like the base version should be set on all >>>outgoing ACK and ABORT packets. > > > Thanks for the detailed analysis. > > -- Hal > > > - Sandip From libor at topspin.com Thu Jan 20 13:07:26 2005 From: libor at topspin.com (Libor Michalek) Date: Thu, 20 Jan 2005 13:07:26 -0800 Subject: [openib-general] How can I tell that I really using SDP? In-Reply-To: <1106253385.18269.27.camel@duffman>; from tduffy@sun.com on Thu, Jan 20, 2005 at 12:36:25PM -0800 References: <41F00A1F.1050508@sinate.com> <1106253385.18269.27.camel@duffman> Message-ID: <20050120130726.B29210@topspin.com> On Thu, Jan 20, 2005 at 12:36:25PM -0800, Tom Duffy wrote: > On Thu, 2005-01-20 at 19:44 +0000, Sinate wrote: > > I am using sockets over IB. My vendor (Infinico) asures me that SDP will > > be used, but how can I check this for myself? > > Take a look at the IP statistics. They should not be updated when > packets are transmitted using SDP. I don't know about the Infinico inplementation, but I know in my Linux implementation the IP counters are _not_ updated. However, not having any experience with that specific implementation, I can't answer the original question. -Libor From robert.j.woodruff at intel.com Thu Jan 20 13:24:30 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Thu, 20 Jan 2005 13:24:30 -0800 Subject: [openib-general] OpenIB OpenSM License Message-ID: <1AC79F16F5C5284499BB9591B33D6F0003574EE8@orsmsx408> Looks Ok to me. McCoy does this look OK. -----Original Message----- From: openib-general-bounces at openib.org [mailto:openib-general-bounces at openib.org] On Behalf Of Hal Rosenstock Sent: Thursday, January 20, 2005 11:50 AM To: openib-general at openib.org Subject: [openib-general] OpenIB OpenSM License Hi, Is this acceptable to Intel as the license which will be placed on the OpenSM files ? Does Mellanox want a copyright line too on this ? Thanks. -- Hal /* * Copyright (c) 2004, 2005 Voltaire, Inc. All rights reserved. * Copyright (c) 1996-2003 Intel Corporation. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * $Id: */ _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general From halr at voltaire.com Thu Jan 20 13:24:12 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 20 Jan 2005 16:24:12 -0500 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <41F01D90.3030103@Sun.COM> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> <1106170236.20998.14.camel@duffman> <1106180143.4648.595.camel@localhost.localdomain> <1106246745.18269.8.camel@duffman> <1106250068.4648.971.camel@localhost.localdomain> <41F01D90.3030103@Sun.COM> Message-ID: <1106256131.4648.1027.camel@localhost.localdomain> On Thu, 2005-01-20 at 16:07, sandip barua wrote: > I did find the bug that causes the incorrect base version for outgoing > MADs while in the receiver termination loop. I fixed the software on > Tom's solaris system. I'm glad to hear you found (and fixed) it. > I still do see the incoming ACK, Can you provide the MAD header for this ? In particular, what is the method ? Maybe this gets back to OpenSM and some response is attempted. > but not many > other unexpected packets from a brief look at the traces. Are there any unexpected packets ? > >> so, ibmf drops them and > >> > >>>returns ACKs if in the receiver termination loop. > > > > > > Looks to me like these should also be ABORTed with BadT in the receiver > > termination loop. > > My interpretation is that if a DATA packet arrives in the receiver > termination loop, an ACK should be sent. If an ACK arrives, and the > transaction is not double-sided, an ABORT should be sent. If any other > packet arrives, an ABORT should be sent. You are right. I misread the termination flow diagram. Sorry. -- Hal From halr at voltaire.com Thu Jan 20 13:27:26 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 20 Jan 2005 16:27:26 -0500 Subject: [openib-general] How can I tell that I really using SDP? In-Reply-To: <41F00A1F.1050508@sinate.com> References: <41F00A1F.1050508@sinate.com> Message-ID: <1106256252.4648.1030.camel@localhost.localdomain> On Thu, 2005-01-20 at 14:44, Sinate wrote: > I am using sockets over IB. My vendor (Infinico) asures me that SDP will > be used, but how can I check this for myself? If you have an IB analyzer, you can decode the packets on the IB wire. The IB analyzers have SDP decode in them. -- Hal From halr at voltaire.com Thu Jan 20 13:33:16 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 20 Jan 2005 16:33:16 -0500 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106256131.4648.1027.camel@localhost.localdomain> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> <1106170236.20998.14.camel@duffman> <1106180143.4648.595.camel@localhost.localdomain> <1106246745.18269.8.camel@duffman> <1106250068.4648.971.camel@localhost.localdomain> <41F01D90.3030103@Sun.COM> <1106256131.4648.1027.camel@localhost.localdomain> Message-ID: <1106256795.4648.1033.camel@localhost.localdomain> On Thu, 2005-01-20 at 16:24, Hal Rosenstock wrote: > > I still do see the incoming ACK, > > Can you provide the MAD header for this ? In particular, what is the > method ? Maybe this gets back to OpenSM and some response is attempted. > > > but not many > > other unexpected packets from a brief look at the traces. > > Are there any unexpected packets ? Can you also send the OSM log or look to see if there are any error messages indicated around the time ibmf is run ? Thanks. -- Hal From tduffy at sun.com Thu Jan 20 13:42:05 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 20 Jan 2005 13:42:05 -0800 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106256795.4648.1033.camel@localhost.localdomain> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> <1106170236.20998.14.camel@duffman> <1106180143.4648.595.camel@localhost.localdomain> <1106246745.18269.8.camel@duffman> <1106250068.4648.971.camel@localhost.localdomain> <41F01D90.3030103@Sun.COM> <1106256131.4648.1027.camel@localhost.localdomain> <1106256795.4648.1033.camel@localhost.localdomain> Message-ID: <1106257325.18269.40.camel@duffman> On Thu, 2005-01-20 at 16:33 -0500, Hal Rosenstock wrote: > Can you also send the OSM log or look to see if there are any error > messages indicated around the time ibmf is run ? I will send it to you off list since it will be big. Do you want -v or -V verbosity? -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From davem at davemloft.net Thu Jan 20 13:34:20 2005 From: davem at davemloft.net (David S. Miller) Date: Thu, 20 Jan 2005 13:34:20 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <1106229084.5812.40.camel@tsc-6.cph.tpack.net> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> <1106229084.5812.40.camel@tsc-6.cph.tpack.net> Message-ID: <20050120133420.317bea31.davem@davemloft.net> On Thu, 20 Jan 2005 14:51:25 +0100 Tommy Christensen wrote: > A lot more serious is the fact that ->tx_timeout() and > ->hard_start_xmit() are no longer allowed to do this: > > spin_lock_irq() > ... > spin_unlock_irq() > > since that would leave us with irq's enabled while still > holding the xmit_lock. > This would have to be fixed for non-LLTX drivers as well. Even worse is that this breaks the acenic driver too because it does this: unsigned long maxjiff = jiffies + 3*HZ; if (time_before(jiffies, maxjiff)) { barrier(); cpu_relax(); goto restart; } in it's ->hard_start_xmit() routine. I was auditing spin_lock_irq() usage in ->hard_start_xmit() routines when I caught this. This one isn't impossible to fix though. We can replace the jiffies games with a udelay/mdelay and a "maxloop" variable. Any takers? I'll keep working on the spin_lock_irq() audit then work on the other problems Tommy found. From davem at davemloft.net Thu Jan 20 13:41:35 2005 From: davem at davemloft.net (David S. Miller) Date: Thu, 20 Jan 2005 13:41:35 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <1106229084.5812.40.camel@tsc-6.cph.tpack.net> References: <5cac192f0412230110628749e3@mail.gmail.com> <41CAF444.3000305@trash.net> <5cac192f04122408102129af43@mail.gmail.com> <1104240717.1100.66.camel@jzny.localdomain> <5cac192f0501021530672a908a@mail.gmail.com> <1104764660.1048.578.camel@jzny.localdomain> <52brc68q05.fsf@topspin.com> <5cac192f05010308414a25b548@mail.gmail.com> <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> <1106229084.5812.40.camel@tsc-6.cph.tpack.net> Message-ID: <20050120134135.567e1cee.davem@davemloft.net> On Thu, 20 Jan 2005 14:51:25 +0100 Tommy Christensen wrote: > A lot more serious is the fact that ->tx_timeout() and > ->hard_start_xmit() are no longer allowed to do this: Sigh, there are even more issues. Now dev_kfree_skb() is illegal in ->hard_start_xmit() because interrupts are disabled, and there are many such cases in the simpler net drivers. I think we might need to revert the change over to IRQ disabling dev->xmit_lock and rethink this. This is just too much fallout. From halr at voltaire.com Thu Jan 20 13:46:44 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 20 Jan 2005 16:46:44 -0500 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106257325.18269.40.camel@duffman> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> <1106170236.20998.14.camel@duffman> <1106180143.4648.595.camel@localhost.localdomain> <1106246745.18269.8.camel@duffman> <1106250068.4648.971.camel@localhost.localdomain> <41F01D90.3030103@Sun.COM> <1106256131.4648.1027.camel@localhost.localdomain> <1106256795.4648.1033.camel@localhost.localdomain> <1106257325.18269.40.camel@duffman> Message-ID: <1106257361.4648.1037.camel@localhost.localdomain> On Thu, 2005-01-20 at 16:42, Tom Duffy wrote: > On Thu, 2005-01-20 at 16:33 -0500, Hal Rosenstock wrote: > > Can you also send the OSM log or look to see if there are any error > > messages indicated around the time ibmf is run ? > > I will send it to you off list since it will be big. Do you want -v or > -V verbosity? -V so we get it all in one shot. Any chance you can edit it down before sending it ? Thanks. -- Hal From iod00d at hp.com Thu Jan 20 13:56:50 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 20 Jan 2005 13:56:50 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050120133420.317bea31.davem@davemloft.net> References: <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> <1106229084.5812.40.camel@tsc-6.cph.tpack.net> <20050120133420.317bea31.davem@davemloft.net> Message-ID: <20050120215650.GB14521@esmail.cup.hp.com> On Thu, Jan 20, 2005 at 01:34:20PM -0800, David S. Miller wrote: > Even worse is that this breaks the acenic driver too because > it does this: > > unsigned long maxjiff = jiffies + 3*HZ; > > if (time_before(jiffies, maxjiff)) { > barrier(); > cpu_relax(); > goto restart; > } > > in it's ->hard_start_xmit() routine. > > I was auditing spin_lock_irq() usage in ->hard_start_xmit() > routines when I caught this. > > This one isn't impossible to fix though. We can replace the > jiffies games with a udelay/mdelay and a "maxloop" variable. > Any takers? I saw the next mail suggesting to revert the changes because of more fallout. But if/when acenic needs changes like those proposed above, I can implement and test proposed changes if folks have the patience to wait a week or so. acenic is no where on my "official HP supported NICs" list but I happen to have the HW/infrastructure to test them. grant From mshefty at ichips.intel.com Thu Jan 20 14:00:51 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 14:00:51 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <20050120130212.A29210@topspin.com> References: <41EFF68A.9070707@ichips.intel.com> <20050120104408.A29075@topspin.com> <41F004CD.90704@ichips.intel.com> <20050120130212.A29210@topspin.com> Message-ID: <41F02A13.7020608@ichips.intel.com> Libor Michalek wrote: > Actually, I was thinking about returning an error from the REP/REQ > handler, this I believe is suppose to destroy the communication identifier, > which I presume will generate a REJ? This is at least the behaviour I would > like to see. In this case, since the communication identifier is destroyed > there wouldn't be any other state transitions. This is the current behavior. > Yet another issue. Saving the info from the incomming CM message, > specifically REQ and REP, for later QP transitions is something that's > going to be duplicated quite a bit. I would really like to see this > data in the communication identifier itself, so it can be plucked out > later for the QP modifies. To take it one step further, Roland had the > suggestion, that it would be really nice to have CM conveniance functions, > to which you pass a cm_id and qp_attr structure and it assigns all the > correct values and masks for a given transition. For example: > > int ib_cm_prep_rtr(struct ib_cm_id *, struct ib_qp_attr *); > int ib_cm_prep_rts(struct ib_cm_id *, struct ib_qp_attr *); I just had a conversation this morning with someone about this exact same functionality. I think that it makes sense to add these routines. (The exact format/parameters for the API may need to be slightly different.) - Sean From Sandip.Barua at Sun.COM Thu Jan 20 14:01:27 2005 From: Sandip.Barua at Sun.COM (sandip barua) Date: Thu, 20 Jan 2005 17:01:27 -0500 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106256131.4648.1027.camel@localhost.localdomain> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> <1106170236.20998.14.camel@duffman> <1106180143.4648.595.camel@localhost.localdomain> <1106246745.18269.8.camel@duffman> <1106250068.4648.971.camel@localhost.localdomain> <41F01D90.3030103@Sun.COM> <1106256131.4648.1027.camel@localhost.localdomain> Message-ID: <41F02A37.9030707@Sun.COM> Hal Rosenstock wrote: > >>I still do see the incoming ACK, > > > Can you provide the MAD header for this ? In particular, what is the > method ? Maybe this gets back to OpenSM and some response is attempted. > I see the following for the incoming ACK Received MAD, tid = 097651d100000005, class = 0x3, attrID = 0x35 method = 0x92 > >>but not many >>other unexpected packets from a brief look at the traces. > > > Are there any unexpected packets ? Yes. It looks like I am receiving one data packet during the receive termination loop for each valid data packet which completes a transaction. > > > > -- Hal > - Sandip From tduffy at sun.com Thu Jan 20 14:11:27 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 20 Jan 2005 14:11:27 -0800 Subject: [openib-general] [PATCH] close /dev/infiniband/issm on opensm teardown Message-ID: <1106259087.18269.53.camel@duffman> I have been getting this now for a bit (a few days) where I cannot kill opensm without a kill -9. This is caused by the fact that osm_vendor_ibumad.c's version of osm_vendor_set_sm only knows how to open issm, not close it. Here is a patch that fixes this and allows opensm to exit gracefully. I have included it inline as well as an attachment in case somebody's Exchange server decides to munge my RFC-compliant quoted-printable email. Signed-off-by: Tom Duffy Index: osm/include/vendor/osm_vendor_ibumad.h =================================================================== --- osm/include/vendor/osm_vendor_ibumad.h (revision 1603) +++ osm/include/vendor/osm_vendor_ibumad.h (working copy) @@ -203,6 +203,7 @@ typedef struct _osm_vendor umad_port_t umad_port; int umad_port_id; void *receiver; + int issmfd; } osm_vendor_t; #define OSM_BIND_INVALID_HANDLE 0 Index: osm/libvendor/osm_vendor_ibumad.c =================================================================== --- osm/libvendor/osm_vendor_ibumad.c (revision 1603) +++ osm/libvendor/osm_vendor_ibumad.c (working copy) @@ -372,6 +372,7 @@ osm_vendor_init( p_vend->max_retries = OSM_DEFAULT_RETRY_COUNT; p_vend->umad_port_id = -1; + p_vend->issmfd = -1; /* * Open our instance of UMAD. @@ -839,14 +840,22 @@ osm_vendor_set_sm( osm_umad_bind_info_t *p_bind = (osm_umad_bind_info_t *)h_bind; osm_vendor_t *p_vend = p_bind->p_vend; char issmstring[24]; - int issmfd; OSM_LOG_ENTER( p_vend->p_log, osm_vendor_set_sm ); sprintf(issmstring, "/dev/infiniband/issm%d", p_vend->umad_port_id); - issmfd = open(issmstring, 0); - if (issmfd < 0) { - osm_log(p_vend->p_log, OSM_LOG_ERROR, - "osm_vendor_set_sm: setting IS_SM capability mask failed; errno %d\n", errno); + if (TRUE == is_sm_val) { + p_vend->issmfd = open(issmstring, 0); + if (p_vend->issmfd < 0) { + osm_log(p_vend->p_log, OSM_LOG_ERROR, + "osm_vendor_set_sm: setting IS_SM capability" + " mask failed; errno %d\n", errno); + } + } else { + if (p_vend->issmfd != -1) + if (0 != close(p_vend->issmfd)) + osm_log(p_vend->p_log, OSM_LOG_ERROR, + "osm_vendor_set_sm: clearing IS_SM failed\n"); + p_vend->issmfd = -1; } OSM_LOG_EXIT( p_vend->p_log ); } -------------- next part -------------- A non-text attachment was scrubbed... Name: osm-issm.patch Type: text/x-patch Size: 1813 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mshefty at ichips.intel.com Thu Jan 20 15:10:41 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 15:10:41 -0800 Subject: [openib-general] [PATCH] CM: move setting message sent state outside of locks Message-ID: <20050120151041.5e33376f.mshefty@ichips.intel.com> Subject pretty much says it all... signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1606) +++ core/cm.c (working copy) @@ -1021,6 +1021,7 @@ int ib_send_cm_rep(struct ib_cm_id *cm_i cm_format_rep((struct cm_rep_msg *)&msg->mad, cm_id_priv, param); msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; + msg->sent_state = IB_CM_REP_SENT; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state == IB_CM_REQ_RCVD || @@ -1037,7 +1038,6 @@ int ib_send_cm_rep(struct ib_cm_id *cm_i } cm_id->state = IB_CM_REP_SENT; - msg->sent_state = IB_CM_REP_SENT; cm_id_priv->msg = msg; spin_unlock_irqrestore(&cm_id_priv->lock, flags); out: @@ -1271,6 +1271,7 @@ int ib_send_cm_dreq(struct ib_cm_id *cm_ cm_format_dreq((struct cm_dreq_msg *)&msg->mad, cm_id_priv, private_data, private_data_len); msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; + msg->sent_state = IB_CM_DREQ_SENT; } spin_lock_irqsave(&cm_id_priv->lock, flags); @@ -1285,7 +1286,6 @@ int ib_send_cm_dreq(struct ib_cm_id *cm_ if (!ret) { cm_id->state = IB_CM_DREQ_SENT; cm_id_priv->msg = msg; - msg->sent_state = IB_CM_DREQ_SENT; } else cm_id->state = IB_CM_TIMEWAIT; spin_unlock_irqrestore(&cm_id_priv->lock, flags); @@ -1686,6 +1686,7 @@ int ib_send_cm_lap(struct ib_cm_id *cm_i cm_format_lap((struct cm_lap_msg *)&msg->mad, cm_id_priv, alternate_path, private_data, private_data_len); msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; + msg->sent_state = IB_CM_ESTABLISHED; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state == IB_CM_ESTABLISHED && @@ -1702,7 +1703,6 @@ int ib_send_cm_lap(struct ib_cm_id *cm_i } cm_id->lap_state = IB_CM_LAP_SENT; - msg->sent_state = IB_CM_ESTABLISHED; cm_id_priv->msg = msg; spin_unlock_irqrestore(&cm_id_priv->lock, flags); out: @@ -1929,6 +1929,7 @@ int ib_send_cm_sidr_req(struct ib_cm_id cm_format_sidr_req((struct cm_sidr_req_msg *)&msg->mad, cm_id_priv, param); msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; + msg->sent_state = IB_CM_SIDR_REQ_SENT; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state == IB_CM_IDLE) @@ -1943,7 +1944,6 @@ int ib_send_cm_sidr_req(struct ib_cm_id goto out; } cm_id->state = IB_CM_SIDR_REQ_SENT; - msg->sent_state = IB_CM_SIDR_REQ_SENT; cm_id_priv->msg = msg; spin_unlock_irqrestore(&cm_id_priv->lock, flags); out: From tduffy at sun.com Thu Jan 20 14:33:37 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 20 Jan 2005 14:33:37 -0800 Subject: [openib-general] patches from subversion In-Reply-To: <20050120063236.GF11410@esmail.cup.hp.com> References: <20050119012557.703212cf.mshefty@ichips.intel.com> <20050119150857.GA10707@mellanox.co.il> <20050119181525.GB8754@esmail.cup.hp.com> <1106192913.2603.1260.camel@localhost> <20050120063236.GF11410@esmail.cup.hp.com> Message-ID: <1106260417.18269.60.camel@duffman> On Wed, 2005-01-19 at 22:32 -0800, Grant Grundler wrote: > | or using a "mydiff" wrapper: > | svn diff --diff-cmd mydiff > | (or modify ~/.subversion/config: diff-cmd = ~/bin/mydiff) This didn't work for me. I needed to spell out the whole path to "mydiff". For some reason, I guess "~" was not be expanded properly. Also, you have to put this line under the [helpers] section, which you may need to create if it is not already in your .subversion/config. [tduffy at duffman ~]$ svn --version svn, version 1.1.2 (r12471) compiled Jan 10 2005, 06:58:30 -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mshefty at ichips.intel.com Thu Jan 20 14:57:11 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 14:57:11 -0800 Subject: [openib-general] RFC CM peer to peer connections Message-ID: <41F03747.2000101@ichips.intel.com> What priority should peer to peer connection support be in the CM? I have a general framework in place, but I don't think what's there will work when connecting in loopback. - Sean From mccoy.smith at intel.com Thu Jan 20 14:59:36 2005 From: mccoy.smith at intel.com (Smith, McCoy) Date: Thu, 20 Jan 2005 14:59:36 -0800 Subject: [openib-general] OpenIB OpenSM License Message-ID: <8D5F43CD1194B04CAD2AC656844E8F2B041157A8@orsmsx409> Under the BSD+patent license, yes, you can relicense the code in that fashion. McCoy Smith Intel Corporation Legal Department -----Original Message----- From: Woodruff, Robert J Sent: Thursday, January 20, 2005 1:25 PM To: Hal Rosenstock; openib-general at openib.org; Smith, McCoy Subject: RE: [openib-general] OpenIB OpenSM License Looks Ok to me. McCoy does this look OK. -----Original Message----- From: openib-general-bounces at openib.org [mailto:openib-general-bounces at openib.org] On Behalf Of Hal Rosenstock Sent: Thursday, January 20, 2005 11:50 AM To: openib-general at openib.org Subject: [openib-general] OpenIB OpenSM License Hi, Is this acceptable to Intel as the license which will be placed on the OpenSM files ? Does Mellanox want a copyright line too on this ? Thanks. -- Hal /* * Copyright (c) 2004, 2005 Voltaire, Inc. All rights reserved. * Copyright (c) 1996-2003 Intel Corporation. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * $Id: */ _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general From mst at mellanox.co.il Thu Jan 20 15:26:17 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Fri, 21 Jan 2005 01:26:17 +0200 Subject: [openib-general] [PATCH] mthca_main mapping fixes Message-ID: <20050120232616.GA32514@mellanox.co.il> Hi, Roland, all! Here are misc fixes for mthca mapping: 1. Thinkably, MSI tables or another region could fall between HCR and ECR tables. Thus its arguably wrong to map both tables in one region. So, do it separately. I think its also more readable to have ecr_base and access ecr there, not access ecr with hcr pointer. 2. mthca_request_regions error handling was borken (wrong order of cleanups). For example on all errors pci_release_region was called which is wrong if the region was not yet mapped. And other such cleanups. 3. Fixed some error messages too. Please comment/commit. MST Signed-off-by: Michael S. Tsirkin Index: hw/mthca/mthca_dev.h =================================================================== --- hw/mthca/mthca_dev.h (revision 1603) +++ hw/mthca/mthca_dev.h (working copy) @@ -237,6 +237,7 @@ struct mthca_dev { struct semaphore cap_mask_mutex; void __iomem *hcr; + void __iomem *ecr_base; void __iomem *clr_base; void __iomem *kar; Index: hw/mthca/mthca_main.c =================================================================== --- hw/mthca/mthca_main.c (revision 1603) +++ hw/mthca/mthca_main.c (working copy) @@ -699,57 +699,83 @@ static int __devinit mthca_request_regio */ if (!request_mem_region(pci_resource_start(pdev, 0) + MTHCA_HCR_BASE, - MTHCA_MAP_HCR_SIZE, - DRV_NAME)) - return -EBUSY; + MTHCA_HCR_SIZE, + DRV_NAME)) { + err = -EBUSY; + goto err_hcr_failed; + } + + if (!request_mem_region(pci_resource_start(pdev, 0) + + MTHCA_ECR_BASE, + MTHCA_MAP_ECR_SIZE, + DRV_NAME)) { + err = -EBUSY; + goto err_ecr_failed; + } if (!request_mem_region(pci_resource_start(pdev, 0) + MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE, DRV_NAME)) { err = -EBUSY; - goto err_bar0_beg; + goto err_int_failed; } + err = pci_request_region(pdev, 2, DRV_NAME); if (err) - goto err_bar0_end; + goto err_bar2_failed; if (!ddr_hidden) { err = pci_request_region(pdev, 4, DRV_NAME); if (err) - goto err_bar2; + goto err_bar4_failed; } return 0; -err_bar0_beg: - release_mem_region(pci_resource_start(pdev, 0) + - MTHCA_HCR_BASE, - MTHCA_MAP_HCR_SIZE); +err_bar4_failed: + + pci_release_region(pdev, 2); +err_bar2_failed: -err_bar0_end: release_mem_region(pci_resource_start(pdev, 0) + MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE); +err_int_failed: + + release_mem_region(pci_resource_start(pdev, 0) + + MTHCA_ECR_BASE, + MTHCA_MAP_ECR_SIZE); +err_ecr_failed: + + release_mem_region(pci_resource_start(pdev, 0) + + MTHCA_HCR_BASE, + MTHCA_HCR_SIZE); +err_hcr_failed: -err_bar2: - pci_release_region(pdev, 2); return err; } static void mthca_release_regions(struct pci_dev *pdev, int ddr_hidden) { - release_mem_region(pci_resource_start(pdev, 0) + - MTHCA_HCR_BASE, - MTHCA_MAP_HCR_SIZE); + if (!ddr_hidden) + pci_release_region(pdev, 4); + + pci_release_region(pdev, 2); + release_mem_region(pci_resource_start(pdev, 0) + MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE); - pci_release_region(pdev, 2); - if (!ddr_hidden) - pci_release_region(pdev, 4); + + release_mem_region(pci_resource_start(pdev, 0) + + MTHCA_ECR_BASE, + MTHCA_MAP_ECR_SIZE); + + release_mem_region(pci_resource_start(pdev, 0) + + MTHCA_HCR_BASE, + MTHCA_HCR_SIZE); } static int __devinit mthca_enable_msi_x(struct mthca_dev *mdev) @@ -911,29 +937,39 @@ static int __devinit mthca_init_one(stru mdev->cmd.use_events = 0; mthca_base = pci_resource_start(pdev, 0); - mdev->hcr = ioremap(mthca_base + MTHCA_HCR_BASE, MTHCA_MAP_HCR_SIZE); + mdev->hcr = ioremap(mthca_base + MTHCA_HCR_BASE, MTHCA_HCR_SIZE); if (!mdev->hcr) { mthca_err(mdev, "Couldn't map command register, " "aborting.\n"); err = -ENOMEM; goto err_free_dev; } + mdev->clr_base = ioremap(mthca_base + MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE); if (!mdev->clr_base) { - mthca_err(mdev, "Couldn't map command register, " + mthca_err(mdev, "Couldn't map interrupt clear register, " "aborting.\n"); err = -ENOMEM; goto err_iounmap; } + mdev->ecr_base = ioremap(mthca_base + MTHCA_ECR_BASE, + MTHCA_ECR_SIZE + MTHCA_ECR_CLR_SIZE); + if (!mdev->ecr_base) { + mthca_err(mdev, "Couldn't map ecr register, " + "aborting.\n"); + err = -ENOMEM; + goto err_iounmap_clr; + } + mthca_base = pci_resource_start(pdev, 2); mdev->kar = ioremap(mthca_base + PAGE_SIZE * MTHCA_KAR_PAGE, PAGE_SIZE); if (!mdev->kar) { mthca_err(mdev, "Couldn't map kernel access region, " "aborting.\n"); err = -ENOMEM; - goto err_iounmap_clr; + goto err_iounmap_ecr; } err = mthca_tune_pci(mdev); @@ -982,6 +1018,9 @@ err_close: err_iounmap_kar: iounmap(mdev->kar); +err_iounmap_ecr: + iounmap(mdev->ecr_base); + err_iounmap_clr: iounmap(mdev->clr_base); @@ -1033,6 +1072,7 @@ static void __devexit mthca_remove_one(s mthca_close_hca(mdev); iounmap(mdev->hcr); + iounmap(mdev->ecr_base); iounmap(mdev->clr_base); if (mdev->mthca_flags & MTHCA_FLAG_MSI_X) Index: hw/mthca/mthca_eq.c =================================================================== --- hw/mthca/mthca_eq.c (revision 1603) +++ hw/mthca/mthca_eq.c (working copy) @@ -366,10 +366,11 @@ static irqreturn_t mthca_interrupt(int i if (dev->eq_table.clr_mask) writel(dev->eq_table.clr_mask, dev->eq_table.clr_int); - if ((ecr = readl(dev->hcr + MTHCA_ECR_OFFSET + 4)) != 0) { + if ((ecr = readl(dev->ecr_base + 4)) != 0) { work = 1; - writel(ecr, dev->hcr + MTHCA_ECR_CLR_OFFSET + 4); + writel(ecr, dev->ecr_base + + MTHCA_ECR_CLR_BASE - MTHCA_ECR_BASE + 4); for (i = 0; i < MTHCA_NUM_EQ; ++i) if (ecr & dev->eq_table.eq[i].ecr_mask) Index: hw/mthca/mthca_config_reg.h =================================================================== --- hw/mthca/mthca_config_reg.h (revision 1603) +++ hw/mthca/mthca_config_reg.h (working copy) @@ -43,13 +43,8 @@ #define MTHCA_ECR_SIZE 0x00008 #define MTHCA_ECR_CLR_BASE 0x80708 #define MTHCA_ECR_CLR_SIZE 0x00008 -#define MTHCA_ECR_OFFSET (MTHCA_ECR_BASE - MTHCA_HCR_BASE) -#define MTHCA_ECR_CLR_OFFSET (MTHCA_ECR_CLR_BASE - MTHCA_HCR_BASE) +#define MTHCA_MAP_ECR_SIZE (MTHCA_ECR_SIZE + MTHCA_ECR_CLR_SIZE) #define MTHCA_CLR_INT_BASE 0xf00d8 #define MTHCA_CLR_INT_SIZE 0x00008 -#define MTHCA_MAP_HCR_SIZE (MTHCA_ECR_CLR_BASE + \ - MTHCA_ECR_CLR_SIZE - \ - MTHCA_HCR_BASE) - #endif /* MTHCA_CONFIG_REG_H */ From mshefty at ichips.intel.com Thu Jan 20 16:51:33 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 16:51:33 -0800 Subject: [openib-general] [PATCH] separate listens from peer to peer requests Message-ID: <20050120165133.15d6c08d.mshefty@ichips.intel.com> Patch separates listen requests from peer-to-peer connection requests. Peer-to-peer requests are disabled as a result (they were broken). Listen requests were slightly optimized. signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1607) +++ core/cm.c (working copy) @@ -60,7 +60,8 @@ static struct ib_client cm_client = { static struct ib_cm { spinlock_t lock; - struct rb_root service_table; + struct rb_root listen_service_table; + /* struct rb_root peer_service_table; todo: fix peer to peer */ struct rb_root remote_qp_table; struct rb_root remote_id_table; struct rb_root remote_sidr_table; @@ -109,6 +110,7 @@ struct cm_id_private { int timeout_ms; u8 max_cm_retries; u8 passive; + u8 peer_to_peer; }; struct cm_recv_work { @@ -270,9 +272,9 @@ static struct cm_id_private * cm_acquire return cm_id_priv; } -static void cm_insert_service(struct cm_id_private *cm_id_priv) +static struct cm_id_private * cm_insert_listen(struct cm_id_private *cm_id_priv) { - struct rb_node **link = &cm.service_table.rb_node; + struct rb_node **link = &cm.listen_service_table.rb_node; struct rb_node *parent = NULL; struct cm_id_private *cur_cm_id_priv; u64 service_id = cm_id_priv->id.service_id; @@ -281,18 +283,23 @@ static void cm_insert_service(struct cm_ parent = *link; cur_cm_id_priv = rb_entry(parent, struct cm_id_private, service_node); + if ((cur_cm_id_priv->id.service_mask & service_id) == + (cur_cm_id_priv->id.service_mask & + cur_cm_id_priv->id.service_id)) + return cm_id_priv; if (service_id < cur_cm_id_priv->id.service_id) link = &(*link)->rb_left; else link = &(*link)->rb_right; } rb_link_node(&cm_id_priv->service_node, parent, link); - rb_insert_color(&cm_id_priv->service_node, &cm.service_table); + rb_insert_color(&cm_id_priv->service_node, &cm.listen_service_table); + return NULL; } -static struct cm_id_private * cm_find_service(u64 service_id) +static struct cm_id_private * cm_find_listen(u64 service_id) { - struct rb_node *node = cm.service_table.rb_node; + struct rb_node *node = cm.listen_service_table.rb_node; struct cm_id_private *cm_id_priv; while (node) { @@ -300,7 +307,6 @@ static struct cm_id_private * cm_find_se if ((cm_id_priv->id.service_mask & service_id) == (cm_id_priv->id.service_mask & cm_id_priv->id.service_id)) return cm_id_priv; - if (service_id < cm_id_priv->id.service_id) node = node->rb_left; else @@ -521,7 +527,7 @@ retest: cm_id->state = IB_CM_IDLE; spin_unlock_irqrestore(&cm_id_priv->lock, flags); spin_lock_irqsave(&cm.lock, flags); - rb_erase(&cm_id_priv->service_node, &cm.service_table); + rb_erase(&cm_id_priv->service_node, &cm.listen_service_table); spin_unlock_irqrestore(&cm.lock, flags); break; case IB_CM_SIDR_REQ_SENT: @@ -578,23 +584,25 @@ int ib_cm_listen(struct ib_cm_id *cm_id, u64 service_id, u64 service_mask) { - struct cm_id_private *cm_id_priv; + struct cm_id_private *cm_id_priv, *cur_cm_id_priv; unsigned long flags; int ret = 0; cm_id_priv = container_of(cm_id, struct cm_id_private, id); BUG_ON(cm_id->state != IB_CM_IDLE); + cm_id->state = IB_CM_LISTEN; cm_id->service_id = service_id; cm_id->service_mask = service_mask ? service_mask : ~0ULL; spin_lock_irqsave(&cm.lock, flags); - if (!cm_find_service(service_id)) { - cm_id->state = IB_CM_LISTEN; - cm_insert_service(cm_id_priv); - } else - ret = -EBUSY; + cur_cm_id_priv = cm_insert_listen(cm_id_priv); spin_unlock_irqrestore(&cm.lock, flags); + + if (cur_cm_id_priv) { + cm_id->state = IB_CM_IDLE; + ret = -EBUSY; + } return ret; } EXPORT_SYMBOL(ib_cm_listen); @@ -736,6 +744,8 @@ int ib_send_cm_req(struct ib_cm_id *cm_i if (ret) goto out; + cm_id->service_id = param->service_id; + cm_id->service_mask = ~0ULL; cm_id_priv->timeout_ms = cm_convert_to_ms( param->primary_path->packet_life_time) * 2 + cm_convert_to_ms( @@ -759,9 +769,8 @@ int ib_send_cm_req(struct ib_cm_id *cm_i * simplifies error recovery if the send fails. */ if (param->peer_to_peer) { - spin_lock_irqsave(&cm.lock, flags); - cm_insert_service(cm_id_priv); - spin_unlock_irqrestore(&cm.lock, flags); + ret = -EINVAL; + goto out; } spin_lock_irqsave(&cm_id_priv->lock, flags); @@ -770,11 +779,9 @@ int ib_send_cm_req(struct ib_cm_id *cm_i if (ret) { spin_unlock_irqrestore(&cm_id_priv->lock, flags); - if (param->peer_to_peer) { - spin_lock_irqsave(&cm.lock, flags); - rb_erase(&cm_id_priv->service_node, &cm.service_table); - spin_unlock_irqrestore(&cm.lock, flags); - } + /* if (param->peer_to_peer) { + cleanup peer_service_table + } */ cm_free_msg(cm_id_priv->msg); goto out; } @@ -842,7 +849,7 @@ static void cm_req_handler(struct cm_rec struct ib_cm_id *cm_id; struct cm_id_private *cm_id_priv, *cur_cm_id_priv; struct cm_req_msg *req_msg; - unsigned long flags, flags2; + unsigned long flags; struct ib_cm_req_event_param *param; struct ib_wc *wc; int ret; @@ -865,18 +872,10 @@ static void cm_req_handler(struct cm_rec spin_unlock_irqrestore(&cm.lock, flags); goto out; /* Duplicate message. */ } - /* Find matching listen/peer request. */ - cur_cm_id_priv = cm_find_service(req_msg->service_id); - if (!cur_cm_id_priv) { - spin_unlock_irqrestore(&cm.lock, flags); - /* todo: reject with no match */ - goto out; /* No match. */ - } - spin_lock_irqsave(&cur_cm_id_priv->lock, flags2); - switch (cur_cm_id_priv->id.state) { - case IB_CM_LISTEN: + /* Find matching listen request. */ + cur_cm_id_priv = cm_find_listen(req_msg->service_id); + if (cur_cm_id_priv) { atomic_inc(&cur_cm_id_priv->refcount); - spin_unlock_irqrestore(&cur_cm_id_priv->lock, flags2); cm_insert_remote_id(cm_id_priv); spin_unlock_irqrestore(&cm.lock, flags); @@ -885,9 +884,14 @@ static void cm_req_handler(struct cm_rec cm_id_priv->id.service_id = req_msg->service_id; cm_id_priv->id.service_mask = ~0ULL; cm_id_priv->id.state = IB_CM_REQ_RCVD; - break; - case IB_CM_REQ_SENT: - /* Process peer requests. */ + } else { + /* Search for a peer request. */ + /* todo: fix peer-to-peer */ + if (!cur_cm_id_priv) { + spin_unlock_irqrestore(&cm.lock, flags); + /* todo: reject with no match */ + goto out; + } if (cm_is_active_peer(recv_work->port->ca_guid, req_msg->local_ca_guid, cur_cm_id_priv->local_qpn, @@ -897,22 +901,17 @@ static void cm_req_handler(struct cm_rec } atomic_inc(&cur_cm_id_priv->refcount); cur_cm_id_priv->id.state = IB_CM_REQ_RCVD; - spin_unlock_irqrestore(&cur_cm_id_priv->lock, flags2); - rb_erase(&cur_cm_id_priv->service_node, &cm.service_table); + /*rb_erase(&cur_cm_id_priv->service_node, &cm.service_table);*/ + cur_cm_id_priv->peer_to_peer = 0; cur_cm_id_priv->remote_ca_guid = req_msg->local_ca_guid; cur_cm_id_priv->id.remote_id = req_msg->local_comm_id; cm_insert_remote_id(cur_cm_id_priv); spin_unlock_irqrestore(&cm.lock, flags); ib_cancel_mad(recv_work->port->mad_agent, - (unsigned long) cur_cm_id_priv->msg); + (unsigned long) cur_cm_id_priv->msg); ib_destroy_cm_id(&cm_id_priv->id); cm_id_priv = cur_cm_id_priv; - break; - default: - spin_unlock_irqrestore(&cm.lock, flags); - /* todo: reject with no match */ - goto out; /* No match. */ } cm_id_priv->port = recv_work->port; cm_id_priv->timeout_ms = cm_convert_to_ms( @@ -1151,6 +1150,15 @@ static void cm_rep_handler(struct cm_rec ib_cancel_mad(recv_work->port->mad_agent, (unsigned long) cm_id_priv->msg); + /* todo: handle peer_to_peer + if (cm_id_priv->peer_to_peer) { + cm_id_priv->peer_to_peer = 0; + spin_lock_irqsave(&cm.lock, flags); + rb_erase(&cm_id_priv->service_node, &cm.service_table); + spin_unlock_irqrestore(&cm.lock, flags); + } + */ + cm_id_priv->id.remote_id = rep_msg->local_comm_id; cm_id_priv->remote_ca_guid = rep_msg->local_ca_guid; cm_id_priv->remote_qpn = cm_rep_get_local_qpn(rep_msg); @@ -1917,6 +1925,8 @@ int ib_send_cm_sidr_req(struct ib_cm_id if (ret) goto out; + cm_id->service_id = param->service_id; + cm_id->service_mask = ~0ULL; cm_id_priv->timeout_ms = param->timeout_ms; cm_id_priv->max_cm_retries = param->max_cm_retries; cm_set_ah_attr(&cm_id_priv->ah_attr, cm_id_priv->port->port_num, @@ -1980,8 +1990,8 @@ static void cm_sidr_req_handler(struct c spin_unlock_irqrestore(&cm.lock, flags); goto out; /* Duplicate message. */ } - cur_cm_id_priv = cm_find_service(sidr_req_msg->service_id); - if (!cur_cm_id_priv || cur_cm_id_priv->id.state != IB_CM_LISTEN) { + cur_cm_id_priv = cm_find_listen(sidr_req_msg->service_id); + if (!cur_cm_id_priv) { rb_erase(&cm_id_priv->remote_id_node, &cm.remote_sidr_table); spin_unlock_irqrestore(&cm.lock, flags); /* todo: reject with no match */ @@ -2405,7 +2415,7 @@ static int __init ib_cm_init(void) memset(&cm, 0, sizeof cm); spin_lock_init(&cm.lock); - cm.service_table = RB_ROOT; + cm.listen_service_table = RB_ROOT; cm.remote_id_table = RB_ROOT; cm.remote_qp_table = RB_ROOT; cm.remote_sidr_table = RB_ROOT; From roland at topspin.com Thu Jan 20 16:28:23 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 20 Jan 2005 16:28:23 -0800 Subject: [openib-general] [PATCH] mthca_main mapping fixes In-Reply-To: <20050120232616.GA32514@mellanox.co.il> (Michael S. Tsirkin's message of "Fri, 21 Jan 2005 01:26:17 +0200") References: <20050120232616.GA32514@mellanox.co.il> Message-ID: <523bwvtyl4.fsf@topspin.com> Looks good, I applied it. Thanks, Roland From mshefty at ichips.intel.com Thu Jan 20 17:30:03 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 17:30:03 -0800 Subject: [openib-general] [PATCH] CM: add code to handle additional state transitions Message-ID: <20050120173003.2a969c49.mshefty@ichips.intel.com> This patch will handling received messages in additional states. signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1608) +++ core/cm.c (working copy) @@ -1307,40 +1307,6 @@ out: } EXPORT_SYMBOL(ib_send_cm_dreq); -static void cm_dreq_handler(struct cm_recv_work *recv_work) -{ - struct cm_id_private *cm_id_priv; - struct cm_dreq_msg *dreq_msg; - unsigned long flags; - int ret; - - dreq_msg = (struct cm_dreq_msg *)recv_work->mad_recv_wc->recv_buf.mad; - cm_id_priv = cm_acquire_id_by_local_id(dreq_msg->remote_comm_id); - if (!cm_id_priv) - return; - - spin_lock_irqsave(&cm_id_priv->lock, flags); - if (cm_id_priv->id.state != IB_CM_ESTABLISHED || - cm_id_priv->local_qpn != cm_dreq_get_remote_qpn(dreq_msg)) { - spin_unlock_irqrestore(&cm_id_priv->lock, flags); - /* todo: resend DREP */ - goto out; - } - cm_id_priv->id.state = IB_CM_DREQ_RCVD; - spin_unlock_irqrestore(&cm_id_priv->lock, flags); - - recv_work->cm_event.event = IB_CM_DREQ_RECEIVED; - recv_work->cm_event.private_data = &dreq_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); - if (ret) { - atomic_dec(&cm_id_priv->refcount); - ib_destroy_cm_id(&cm_id_priv->id); - return; - } -out: - cm_deref_id(cm_id_priv); -} - static void cm_format_drep(struct cm_drep_msg *drep_msg, struct cm_id_private *cm_id_priv, void *private_data, @@ -1356,6 +1322,23 @@ static void cm_format_drep(struct cm_dre memcpy(drep_msg->private_data, private_data, private_data_len); } +static void cm_resend_drep(struct cm_id_private *cm_id_priv) +{ + struct cm_msg *msg; + struct ib_send_wr *bad_send_wr; + int ret; + + ret = cm_alloc_msg(cm_id_priv, &msg); + if (ret) + return; + + cm_format_drep((struct cm_drep_msg *)&msg->mad, cm_id_priv, NULL, 0); + ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + &msg->send_wr, &bad_send_wr); + if (ret) + cm_free_msg(cm_id_priv->msg); +} + int ib_send_cm_drep(struct ib_cm_id *cm_id, void *private_data, u8 private_data_len) @@ -1397,6 +1380,52 @@ out: } EXPORT_SYMBOL(ib_send_cm_drep); +static void cm_dreq_handler(struct cm_recv_work *recv_work) +{ + struct cm_id_private *cm_id_priv; + struct cm_dreq_msg *dreq_msg; + unsigned long flags; + int ret; + + dreq_msg = (struct cm_dreq_msg *)recv_work->mad_recv_wc->recv_buf.mad; + cm_id_priv = cm_acquire_id_by_local_id(dreq_msg->remote_comm_id); + if (!cm_id_priv) + return; + + spin_lock_irqsave(&cm_id_priv->lock, flags); + if (cm_id_priv->local_qpn != cm_dreq_get_remote_qpn(dreq_msg)) { + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + goto out; + } + switch (cm_id_priv->id.state) { + case IB_CM_REP_SENT: + case IB_CM_MRA_REP_RCVD: + case IB_CM_ESTABLISHED: + case IB_CM_DREQ_SENT: + break; + case IB_CM_TIMEWAIT: + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + cm_resend_drep(cm_id_priv); + goto out; + default: + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + goto out; + } + cm_id_priv->id.state = IB_CM_DREQ_RCVD; + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + + recv_work->cm_event.event = IB_CM_DREQ_RECEIVED; + recv_work->cm_event.private_data = &dreq_msg->private_data; + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); + if (ret) { + atomic_dec(&cm_id_priv->refcount); + ib_destroy_cm_id(&cm_id_priv->id); + return; + } +out: + cm_deref_id(cm_id_priv); +} + static void cm_drep_handler(struct cm_recv_work *recv_work) { struct cm_id_private *cm_id_priv; From roland at topspin.com Thu Jan 20 16:58:17 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 20 Jan 2005 16:58:17 -0800 Subject: [openib-general] [PATCH] Start creating "user context" infrastructure Message-ID: <52y8ensimu.fsf@topspin.com> This patch is one tiny step towards allowing userspace to create various resources. It doesn't really do anything useful but I'd like to get feedback on these API changes early. Any suggestions/objections? Thanks, Roland Index: infiniband/include/ib_verbs.h =================================================================== --- infiniband/include/ib_verbs.h (revision 1572) +++ infiniband/include/ib_verbs.h (working copy) @@ -82,6 +82,8 @@ enum ib_atomic_cap { IB_ATOMIC_GLOB }; +struct ib_ucontext; + struct ib_device_attr { u64 fw_ver; u64 node_guid; @@ -626,8 +628,9 @@ struct ib_fmr_attr { }; struct ib_pd { - struct ib_device *device; - atomic_t usecnt; /* count all resources */ + struct ib_device *device; + struct ib_ucontext *context; + atomic_t usecnt; /* count all resources */ }; struct ib_ah { @@ -638,12 +641,13 @@ struct ib_ah { typedef void (*ib_comp_handler)(struct ib_cq *cq, void *cq_context); struct ib_cq { - struct ib_device *device; - ib_comp_handler comp_handler; - void (*event_handler)(struct ib_event *, void *); - void * cq_context; - int cqe; - atomic_t usecnt; /* count number of work queues */ + struct ib_device *device; + struct ib_ucontext *context; + ib_comp_handler comp_handler; + void (*event_handler)(struct ib_event *, void *); + void * cq_context; + int cqe; + atomic_t usecnt; /* count number of work queues */ }; struct ib_srq { @@ -744,7 +748,10 @@ struct ib_device { int (*modify_port)(struct ib_device *device, u8 port_num, int port_modify_mask, struct ib_port_modify *port_modify); - struct ib_pd * (*alloc_pd)(struct ib_device *device); + struct ib_ucontext * (*alloc_ucontext)(struct ib_device *device); + int (*dealloc_ucontext)(struct ib_ucontext *context); + struct ib_pd * (*alloc_pd)(struct ib_device *device, + struct ib_ucontext *context); int (*dealloc_pd)(struct ib_pd *pd); struct ib_ah * (*create_ah)(struct ib_pd *pd, struct ib_ah_attr *ah_attr); @@ -770,7 +777,8 @@ struct ib_device { struct ib_recv_wr *recv_wr, struct ib_recv_wr **bad_recv_wr); struct ib_cq * (*create_cq)(struct ib_device *device, - int cqe); + int cqe, + struct ib_ucontext *context); int (*destroy_cq)(struct ib_cq *cq); int (*resize_cq)(struct ib_cq *cq, int *cqe); int (*poll_cq)(struct ib_cq *cq, int num_entries, @@ -823,6 +831,8 @@ struct ib_device { struct ib_grh *in_grh, struct ib_mad *in_mad, struct ib_mad *out_mad); + int (*mmap)(struct ib_ucontext *context, + struct vm_area_struct *vma); struct class_device class_dev; struct kobject ports_parent; Index: infiniband/core/uverbs_main.c =================================================================== --- infiniband/core/uverbs_main.c (revision 1573) +++ infiniband/core/uverbs_main.c (working copy) @@ -271,13 +271,11 @@ static ssize_t ib_uverbs_write(struct fi } } -static int ib_uverbs_mmap(struct file *filp, struct vm_area_struct * vma) +static int ib_uverbs_mmap(struct file *filp, struct vm_area_struct *vma) { - /* - * Pass through to the low-level driver if it supports mmap -- - * otherwise fail as if we have no mmap method. - */ - return -ENODEV; + struct ib_uverbs_file *file = filp->private_data; + + return file->device->ib_dev->mmap(file->ucontext, vma); } static int ib_uverbs_open(struct inode *inode, struct file *filp) @@ -297,9 +295,15 @@ static int ib_uverbs_open(struct inode * file->device = dev; kref_init(&file->ref); + file->ucontext = dev->ib_dev->alloc_ucontext(dev->ib_dev); + if (IS_ERR(file->ucontext)) { + ret = PTR_ERR(file->ucontext); + goto err; + } + ret = ib_uverbs_event_init(&file->async_file, file); if (ret) - goto err; + goto err_context; file->async_file.is_async = 1; @@ -329,6 +333,9 @@ err_async: ib_uverbs_event_release(&file->async_file); +err_context: + dev->ib_dev->dealloc_ucontext(file->ucontext); + err: kref_put(&file->ref, ib_uverbs_release_file); @@ -355,6 +362,13 @@ static int ib_uverbs_close(struct inode static struct file_operations uverbs_fops = { .owner = THIS_MODULE, .write = ib_uverbs_write, + .open = ib_uverbs_open, + .release = ib_uverbs_close +}; + +static struct file_operations uverbs_mmap_fops = { + .owner = THIS_MODULE, + .write = ib_uverbs_write, .mmap = ib_uverbs_mmap, .open = ib_uverbs_open, .release = ib_uverbs_close @@ -409,6 +423,9 @@ static void ib_uverbs_add_one(struct ib_ { struct ib_uverbs_device *uverbs_dev; + if (!device->alloc_ucontext) + return; + uverbs_dev = kmalloc(sizeof *uverbs_dev, GFP_KERNEL); if (!uverbs_dev) return; @@ -427,7 +444,10 @@ static void ib_uverbs_add_one(struct ib_ uverbs_dev->ib_dev = device; uverbs_dev->num_comp = 1; - cdev_init(&uverbs_dev->dev, &uverbs_fops); + if (device->mmap) + cdev_init(&uverbs_dev->dev, &uverbs_mmap_fops); + else + cdev_init(&uverbs_dev->dev, &uverbs_fops); uverbs_dev->dev.owner = THIS_MODULE; kobject_set_name(&uverbs_dev->dev.kobj, "uverbs%d", uverbs_dev->devnum); if (cdev_add(&uverbs_dev->dev, base_dev + uverbs_dev->devnum, 1)) Index: infiniband/core/uverbs.h =================================================================== --- infiniband/core/uverbs.h (revision 1573) +++ infiniband/core/uverbs.h (working copy) @@ -64,6 +64,7 @@ struct ib_uverbs_event_file { struct ib_uverbs_file { struct kref ref; struct ib_uverbs_device *device; + struct ib_ucontext *ucontext; struct ib_event_handler event_handler; struct ib_uverbs_event_file async_file; struct ib_uverbs_event_file comp_file[1]; Index: infiniband/core/verbs.c =================================================================== --- infiniband/core/verbs.c (revision 1572) +++ infiniband/core/verbs.c (working copy) @@ -47,7 +47,7 @@ struct ib_pd *ib_alloc_pd(struct ib_devi { struct ib_pd *pd; - pd = device->alloc_pd(device); + pd = device->alloc_pd(device, NULL); if (!IS_ERR(pd)) { pd->device = device; @@ -197,7 +197,7 @@ struct ib_cq *ib_create_cq(struct ib_dev { struct ib_cq *cq; - cq = device->create_cq(device, cqe); + cq = device->create_cq(device, cqe, NULL); if (!IS_ERR(cq)) { cq->device = device; Index: infiniband/hw/mthca/mthca_provider.c =================================================================== --- infiniband/hw/mthca/mthca_provider.c (revision 1572) +++ infiniband/hw/mthca/mthca_provider.c (working copy) @@ -266,7 +266,8 @@ static int mthca_query_gid(struct ib_dev return err; } -static struct ib_pd *mthca_alloc_pd(struct ib_device *ibdev) +static struct ib_pd *mthca_alloc_pd(struct ib_device *ibdev, + struct ib_ucontext *context) { struct mthca_pd *pd; int err; @@ -391,7 +392,8 @@ static int mthca_destroy_qp(struct ib_qp return 0; } -static struct ib_cq *mthca_create_cq(struct ib_device *ibdev, int entries) +static struct ib_cq *mthca_create_cq(struct ib_device *ibdev, int entries, + struct ib_ucontext *context) { struct mthca_cq *cq; int nent; From mshefty at ichips.intel.com Thu Jan 20 17:07:47 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 17:07:47 -0800 Subject: [openib-general] [PATCH] Start creating "user context" infrastructure In-Reply-To: <52y8ensimu.fsf@topspin.com> References: <52y8ensimu.fsf@topspin.com> Message-ID: <41F055E3.9090203@ichips.intel.com> Roland Dreier wrote: > This patch is one tiny step towards allowing userspace to create > various resources. It doesn't really do anything useful but I'd like > to get feedback on these API changes early. > > Any suggestions/objections? The approach looks reasonable to me. - Sean From sean.hefty at intel.com Thu Jan 20 20:31:12 2005 From: sean.hefty at intel.com (Sean Hefty) Date: Thu, 20 Jan 2005 20:31:12 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <20050120130212.A29210@topspin.com> Message-ID: > Actually, I was thinking about returning an error from the REP/REQ >handler, this I believe is suppose to destroy the communication identifier, >which I presume will generate a REJ? This is at least the behaviour I would >like to see. In this case, since the communication identifier is destroyed >there wouldn't be any other state transitions. Some thoughts about destroying cm_id's based on a callback return value. Given the current code structure, it's possible for a user to receive multiple simultaneous callbacks. For example, a user could be notified of a reply and reject (sent as a result of an rtu timeout) at the same time. The CM will handle the state transitions properly to fail calls into the API. But I can see where it would be easy for a user to end up trying to destroy the cm_id multiple times, or receiving the second callback after they had already destroyed their context. I'm not seeing an easy way to handle this condition. I think that I need to serialize all callbacks for a given cm_id. - Sean From davem at davemloft.net Thu Jan 20 17:01:13 2005 From: davem at davemloft.net (David S. Miller) Date: Thu, 20 Jan 2005 17:01:13 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050120215650.GB14521@esmail.cup.hp.com> References: <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> <1106229084.5812.40.camel@tsc-6.cph.tpack.net> <20050120133420.317bea31.davem@davemloft.net> <20050120215650.GB14521@esmail.cup.hp.com> Message-ID: <20050120170113.36ee8225.davem@davemloft.net> On Thu, 20 Jan 2005 13:56:50 -0800 Grant Grundler wrote: > I saw the next mail suggesting to revert the changes because of more fallout. Yeah, that's what I ended up just pushing to Linus. From mlleinin at hpcn.ca.sandia.gov Thu Jan 20 21:56:12 2005 From: mlleinin at hpcn.ca.sandia.gov (Matt Leininger) Date: Thu, 20 Jan 2005 21:56:12 -0800 Subject: [openib-general] Power outage - OpenIB server down Message-ID: <1106286972.2603.1428.camel@localhost> We had a power outage for our entire building around 5:15pm PST today. Things are back up and the OpenIB server is up again. Thanks, - Matt From rminnich at lanl.gov Thu Jan 20 20:35:59 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Thu, 20 Jan 2005 21:35:59 -0700 (MST) Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <20050120171923.GI13299@esmail.cup.hp.com> References: <20050117231123.GC19162@nd47.coderock.org> <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118180505.GA24404@mellanox.co.il> <52zmz6d2vw.fsf@topspin.com> <20050118181640.GB24404@mellanox.co.il> <52vf9ud0b8.fsf@topspin.com> <20050120170236.GB3174@stusta.de> <20050120171923.GI13299@esmail.cup.hp.com> Message-ID: On Thu, 20 Jan 2005, Grant Grundler wrote: > I think you overlooked the fact that include/linux/rcupdate.h is > published under the GPL. Not "dual GPL/BSD". Someone can't take code > that uses linux's RCU and ship it under a BSD license. There are > "consumers" of openib.org that want to do that. ergo we can't use RCU > unless they are willing to give that up. Does this open up the possibility of a GPL-only "fork" in the code, i.e. somebody: - takes the code, and puts it in another repo somewhere - adds in RCU - makes it available to others but only under GPL due to RCU inclusion - now we have an openib fork that is GPL by definition, that can't be BSD due to inclusion of RCU? Seems almost inevitable as soon as people really want "Feature XYZ" from Linux in their openib code base. ron From greg at kroah.com Thu Jan 20 22:48:52 2005 From: greg at kroah.com (Greg KH) Date: Thu, 20 Jan 2005 22:48:52 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: References: <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118180505.GA24404@mellanox.co.il> <52zmz6d2vw.fsf@topspin.com> <20050118181640.GB24404@mellanox.co.il> <52vf9ud0b8.fsf@topspin.com> <20050120170236.GB3174@stusta.de> <20050120171923.GI13299@esmail.cup.hp.com> Message-ID: <20050121064852.GD19288@kroah.com> On Thu, Jan 20, 2005 at 09:35:59PM -0700, Ronald G. Minnich wrote: > On Thu, 20 Jan 2005, Grant Grundler wrote: > > I think you overlooked the fact that include/linux/rcupdate.h is > > published under the GPL. Not "dual GPL/BSD". Someone can't take code > > that uses linux's RCU and ship it under a BSD license. There are > > "consumers" of openib.org that want to do that. ergo we can't use RCU > > unless they are willing to give that up. > > Does this open up the possibility of a GPL-only "fork" in the code, i.e. > somebody: > - takes the code, and puts it in another repo somewhere > - adds in RCU > - makes it available to others but only under GPL due to RCU inclusion > - now we have an openib fork that is GPL by definition, that can't be > BSD due to inclusion of RCU? Or: - someone gets a GPL only license file added to the openib code base in the linux kernel, by slipping it in through another path to Linus. Odds are, that's going to happen before the above does :) Remember, the openib code uses functions that are marked EXPORT_SYMBOL_GPL() and if _anyone_ violates those markings by trying to ship a openib derivative work with a non-gpl license, they will be hearing from some lawyers very quickly. > Seems almost inevitable as soon as people really want "Feature XYZ" from > Linux in their openib code base. And as more and more "feature xyz" in the kernel are being marked GPL only, it's only a matter of time... greg k-h From eitan at mellanox.co.il Fri Jan 21 00:51:33 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Fri, 21 Jan 2005 10:51:33 +0200 Subject: [openib-general] OpenIB OpenSM License Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC93@mtlex01.yok.mtl.com> Hi All, I have forwarded the issue to our legal department. It will take us in Mellanox at least 2-4 days to respond to this. Please hold this change for few more days. Thanks Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -----Original Message----- From: Smith, McCoy [mailto:mccoy.smith at intel.com] Sent: Friday, January 21, 2005 1:00 AM To: Woodruff, Robert J; Hal Rosenstock; openib-general at openib.org Subject: RE: [openib-general] OpenIB OpenSM License Under the BSD+patent license, yes, you can relicense the code in that fashion. McCoy Smith Intel Corporation Legal Department -----Original Message----- From: Woodruff, Robert J Sent: Thursday, January 20, 2005 1:25 PM To: Hal Rosenstock; openib-general at openib.org; Smith, McCoy Subject: RE: [openib-general] OpenIB OpenSM License Looks Ok to me. McCoy does this look OK. -----Original Message----- From: openib-general-bounces at openib.org [mailto:openib-general-bounces at openib.org] On Behalf Of Hal Rosenstock Sent: Thursday, January 20, 2005 11:50 AM To: openib-general at openib.org Subject: [openib-general] OpenIB OpenSM License Hi, Is this acceptable to Intel as the license which will be placed on the OpenSM files ? Does Mellanox want a copyright line too on this ? Thanks. -- Hal /* * Copyright (c) 2004, 2005 Voltaire, Inc. All rights reserved. * Copyright (c) 1996-2003 Intel Corporation. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below: * * Redistribution and use in source and binary forms, with or * without modification, are permitted provided that the following * conditions are met: * * - Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. * * - Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials * provided with the distribution. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * $Id: */ _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From halr at voltaire.com Fri Jan 21 06:33:14 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 21 Jan 2005 09:33:14 -0500 Subject: [openib-general] [PATCH] close /dev/infiniband/issm on opensm teardown In-Reply-To: <1106259087.18269.53.camel@duffman> References: <1106259087.18269.53.camel@duffman> Message-ID: <1106317994.4648.1590.camel@localhost.localdomain> On Thu, 2005-01-20 at 17:11, Tom Duffy wrote: > I have been getting this now for a bit (a few days) where I cannot kill > opensm without a kill -9. > > This is caused by the fact that osm_vendor_ibumad.c's version of > osm_vendor_set_sm only knows how to open issm, not close it. Here is a > patch that fixes this and allows opensm to exit gracefully. Thanks. Applied. -- Hal From halr at voltaire.com Fri Jan 21 06:47:20 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 21 Jan 2005 09:47:20 -0500 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106257361.4648.1037.camel@localhost.localdomain> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> <1106170236.20998.14.camel@duffman> <1106180143.4648.595.camel@localhost.localdomain> <1106246745.18269.8.camel@duffman> <1106250068.4648.971.camel@localhost.localdomain> <41F01D90.3030103@Sun.COM> <1106256131.4648.1027.camel@localhost.localdomain> <1106256795.4648.1033.camel@localhost.localdomain> <1106257325.18269.40.camel@duffman> <1106257361.4648.1037.camel@localhost.localdomain> Message-ID: <1106318839.4648.1606.camel@localhost.localdomain> On Thu, 2005-01-20 at 16:46, Hal Rosenstock wrote: > On Thu, 2005-01-20 at 16:42, Tom Duffy wrote: > > On Thu, 2005-01-20 at 16:33 -0500, Hal Rosenstock wrote: > > > Can you also send the OSM log or look to see if there are any error > > > messages indicated around the time ibmf is run ? > > > > I will send it to you off list since it will be big. Do you want -v or > > -V verbosity? > > -V so we get it all in one shot. Any chance you can edit it down before > sending it ? The problem is caused by the incoming ACK which is not handled properly when VENDOR_RMPP_SUPPORT is not define'd. Can you give it another try with the latest version (>= 1617) ? Thanks. -- Hal From tduffy at sun.com Fri Jan 21 08:13:43 2005 From: tduffy at sun.com (Tom Duffy) Date: Fri, 21 Jan 2005 08:13:43 -0800 Subject: [openib-general] openIB + RTAI, kernel freezing... In-Reply-To: <41F11D5F.9010307@eig.unige.ch> References: <506C3D7B14CDD411A52C00025558DED6064BED71@mtlex01.yok.mtl.com> <1105381618.8427.1.camel@duffman> <41E3E179.7000407@eig.unige.ch> <1105457796.11083.2.camel@duffman> <41EE7906.5080703@eig.unige.ch> <1106154877.7680.3.camel@duffman> <41F11D5F.9010307@eig.unige.ch> Message-ID: <1106324023.27916.38.camel@duffman> Please keep this discussion *on list* as I am not a one man openib support team. On Fri, 2005-01-21 at 16:18 +0100, Marc von Wyl wrote: > >Can you be more specific about what is failing for you? Have you read > >all the README's about what to do? > > > > > > > Yes, I read the readme files to install the roland-merge version. But, > for the userspace when I run : > > 2. cd /my/path/to/openib/src/userspace/hw/mellanox-hca > 3. Run > ../../../../scripts/mklink.sh link > > It does nothing... > And when I run make I got this : > make[1]: Entering directory > `/home/vonwyl/openib/gen2/branches/roland-merge/src/userspace/hw/mellanox-hca/mlxsys' > make[1]: *** No rules to make target file mtl_common.c , necessary for > mosalu_mem.o . stop. > make[1]: Leaving directory > `/home/vonwyl/openib/gen2/branches/roland-merge/src/userspace/hw/mellanox-hca/mlxsys' > make: *** [mlxsys_build] Error 2 > > I tried the libibverb of the gen2/trunk/src/userspace/ but after the : > > ./autogen.sh > > ./configure > > make > I get this : > make: *** No rule to make target src/libibverbs.la , necessary for > all-am . Stop. > > So I'm a little be lost in all this versions... > As I said I installed a kernel 2.6.10 with a 2.6.11-rc patch containing > the mellanox drivers and ipoib. How could I install the userspace verb > and cm APIs? -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From robert.j.woodruff at intel.com Fri Jan 21 08:20:25 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Fri, 21 Jan 2005 08:20:25 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups Message-ID: <1AC79F16F5C5284499BB9591B33D6F0003575656@orsmsx408> Ron>Does this open up the possibility of a GPL-only "fork" in the code, i.e. >somebody: This actually brings up an even bigger question. When the kernel folks accepted the code into the kernel, which license did they choose ? The BSD license or the GPL license ? If it was the GPL license, then the code that is in kernel.org is the GPL-only fork. woody From halr at voltaire.com Fri Jan 21 08:27:30 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 21 Jan 2005 11:27:30 -0500 Subject: [openib-general] openIB + RTAI, kernel freezing... In-Reply-To: <1106324023.27916.38.camel@duffman> References: <506C3D7B14CDD411A52C00025558DED6064BED71@mtlex01.yok.mtl.com> <1105381618.8427.1.camel@duffman> <41E3E179.7000407@eig.unige.ch> <1105457796.11083.2.camel@duffman> <41EE7906.5080703@eig.unige.ch> <1106154877.7680.3.camel@duffman> <41F11D5F.9010307@eig.unige.ch> <1106324023.27916.38.camel@duffman> Message-ID: <1106324781.4648.1616.camel@localhost.localdomain> On Fri, 2005-01-21 at 11:13, Tom Duffy wrote: > Please keep this discussion *on list* as I am not a one man openib > support team. > > On Fri, 2005-01-21 at 16:18 +0100, Marc von Wyl wrote: > > >Can you be more specific about what is failing for you? Have you read > > >all the README's about what to do? > > > > > > > > > > > Yes, I read the readme files to install the roland-merge version. But, > > for the userspace when I run : > > > > 2. cd /my/path/to/openib/src/userspace/hw/mellanox-hca > > 3. Run > > ../../../../scripts/mklink.sh link > > > > It does nothing... > > And when I run make I got this : > > make[1]: Entering directory > > `/home/vonwyl/openib/gen2/branches/roland-merge/src/userspace/hw/mellanox-hca/mlxsys' > > make[1]: *** No rules to make target file mtl_common.c , necessary for > > mosalu_mem.o . stop. > > make[1]: Leaving directory > > `/home/vonwyl/openib/gen2/branches/roland-merge/src/userspace/hw/mellanox-hca/mlxsys' > > make: *** [mlxsys_build] Error 2 > > > > I tried the libibverb of the gen2/trunk/src/userspace/ but after the : > > > ./autogen.sh > > > ./configure > > > make > > I get this : > > make: *** No rule to make target src/libibverbs.la , necessary for > > all-am . Stop. > > > > So I'm a little be lost in all this versions... > > As I said I installed a kernel 2.6.10 with a 2.6.11-rc patch containing > > the mellanox drivers and ipoib. How could I install the userspace verb > > and cm APIs? Is there a reason for using the roland_merge branch ? The most up to date, active, and best supported is gen2/trunk. I think roland_merge was abandoned when trunk was started. It looks like left off at 2.6.9. -- Hal From buytenh at wantstofly.org Fri Jan 21 02:54:52 2005 From: buytenh at wantstofly.org (Lennert Buytenhek) Date: Fri, 21 Jan 2005 11:54:52 +0100 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050120085611.33f9485e@dxpl.pdx.osdl.net> References: <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> <20050120085611.33f9485e@dxpl.pdx.osdl.net> Message-ID: <20050121105452.GA12988@xi.wantstofly.org> On Thu, Jan 20, 2005 at 08:56:11AM -0800, Stephen Hemminger wrote: > You might want to enforce that LLTX devices like tunnels need to > have no transmit queue (tx_queue_len == 0)? I didn't look at the original LLTX patch, so I'm speaking out of ignorance, but since we're on this subject anyway: I noticed that the ip_gre tunneling driver contains this comment: 1. The most important issue is detecting local dead loops. They would cause complete host lockup in transmit, which would be "resolved" by stack overflow or, if queueing is enabled, with infinite looping in net_bh. We cannot track such dead loops during route installation, it is infeasible task. The most general solutions would be to keep skb->encapsulation counter (sort of local ttl), and silently drop packet when it expires. It is the best solution, but it supposes maintaing new variable in ALL skb, even if no tunneling is used. Current solution: t->recursion lock breaks dead loops. It looks like dev->tbusy flag, but I preferred new variable, because the semantics is different. One day, when hard_start_xmit will be multithreaded we will have to use skb->encapsulation. If multiple CPUs can call into the tunneling drivers without taking any locks, we'd need some extra locking in there, or just do what Alexey describes and keep track of recursion in the skb. The recursion detection in dev_queue_xmit would perhaps also want to use such a per-skb mechanism instead of using dev->xmit_lock_owner. (You really _do_ want the protection that this mechanism offers.) --L From trimmer at infiniconsys.com Fri Jan 21 08:43:05 2005 From: trimmer at infiniconsys.com (Rimmer, Todd) Date: Fri, 21 Jan 2005 11:43:05 -0500 Subject: [openib-general] How can I tell that I really using SDP? Message-ID: <5D78D28F88822E4D8702BB9EEF1A436708A7AC@mercury.infiniconsys.com> Sinate, /proc/driver/ics_sdp/stats will provide real time counts as to the number of currently ESTABLISHED SDP Sessions as well as a total connections field which counts up for every Session which was created. Hence if you check this, start your application, then check it again, you should see a change in number of established sessions. I suggest you contact your InfiniCon Systems Engineer for more details. Todd R. > -----Original Message----- > From: Sinate [mailto:3d at sinate.com] > Sent: Thursday, January 20, 2005 2:45 PM > To: openib-general at openib.org > Subject: [openib-general] How can I tell that I really using SDP? > > > I am using sockets over IB. My vendor (Infinico) asures me > that SDP will > be used, but how can I check this for myself? > > Thanks. > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit > http://openib.org/mailman/listinfo/openib-general > From roland at topspin.com Fri Jan 21 08:56:26 2005 From: roland at topspin.com (Roland Dreier) Date: Fri, 21 Jan 2005 08:56:26 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <1AC79F16F5C5284499BB9591B33D6F0003575656@orsmsx408> (Robert J. Woodruff's message of "Fri, 21 Jan 2005 08:20:25 -0800") References: <1AC79F16F5C5284499BB9591B33D6F0003575656@orsmsx408> Message-ID: <52llamsoud.fsf@topspin.com> Robert> This actually brings up an even bigger question. When the Robert> kernel folks accepted the code into the kernel, which Robert> license did they choose ? The BSD license or the GPL Robert> license ? If it was the GPL license, then the code that is Robert> in kernel.org is the GPL-only fork. The code in the kernel has the same license headers as the subversion tree: dual GPL/BSD. - Roland From tduffy at sun.com Fri Jan 21 09:07:00 2005 From: tduffy at sun.com (Tom Duffy) Date: Fri, 21 Jan 2005 09:07:00 -0800 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106318839.4648.1606.camel@localhost.localdomain> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> <1106170236.20998.14.camel@duffman> <1106180143.4648.595.camel@localhost.localdomain> <1106246745.18269.8.camel@duffman> <1106250068.4648.971.camel@localhost.localdomain> <41F01D90.3030103@Sun.COM> <1106256131.4648.1027.camel@localhost.localdomain> <1106256795.4648.1033.camel@localhost.localdomain> <1106257325.18269.40.camel@duffman> <1106257361.4648.1037.camel@localhost.localdomain> <1106318839.4648.1606.camel@localhost.localdomain> Message-ID: <1106327220.27916.48.camel@duffman> On Fri, 2005-01-21 at 09:47 -0500, Hal Rosenstock wrote: > The problem is caused by the incoming ACK which is not handled properly > when VENDOR_RMPP_SUPPORT is not define'd. Can you give it another try > with the latest version (>= 1617) ? Ok, great!, with the latest version, I don't get any (error) messages from Solaris with the ibmf_trace_level set to 0x2. Unfortunately, Solaris is still not joining the subnet properly. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From robert.j.woodruff at intel.com Fri Jan 21 09:07:59 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Fri, 21 Jan 2005 09:07:59 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups Message-ID: <1AC79F16F5C5284499BB9591B33D6F0003575756@orsmsx408> Roland wrote>The code in the kernel has the same license headers as the subversion >tree: dual GPL/BSD. Here is the text I see in the headers: "* This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source tree, or the * OpenIB.org BSD license below:" This tells me that when the kernel.org people accepted the code into the kernel, they needed to accept it under one of the two licenses, GPL or BSD. Or am I missing something here ? I think they could have accepted it under BSD and then re-license it under the same dual license if they wanted, but I am not a lawyer. woody From rminnich at lanl.gov Fri Jan 21 09:15:47 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Fri, 21 Jan 2005 10:15:47 -0700 (MST) Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <1AC79F16F5C5284499BB9591B33D6F0003575656@orsmsx408> References: <1AC79F16F5C5284499BB9591B33D6F0003575656@orsmsx408> Message-ID: On Fri, 21 Jan 2005, Woodruff, Robert J wrote: > If it was the GPL license, then the code that is in > kernel.org is the GPL-only fork. this keeps getting more and more interesting. For example, now that the code is in the kernel, is there any need to maintain the openib tree? that code in the kernel is GPL, period, right? ron From halr at voltaire.com Fri Jan 21 09:16:43 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 21 Jan 2005 12:16:43 -0500 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106327220.27916.48.camel@duffman> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> <1106170236.20998.14.camel@duffman> <1106180143.4648.595.camel@localhost.localdomain> <1106246745.18269.8.camel@duffman> <1106250068.4648.971.camel@localhost.localdomain> <41F01D90.3030103@Sun.COM> <1106256131.4648.1027.camel@localhost.localdomain> <1106256795.4648.1033.camel@localhost.localdomain> <1106257325.18269.40.camel@duffman> <1106257361.4648.1037.camel@localhost.localdomain> <1106318839.4648.1606.camel@localhost.localdomain> <1106327220.27916.48.camel@duffman> Message-ID: <1106327803.4648.1636.camel@localhost.localdomain> On Fri, 2005-01-21 at 12:07, Tom Duffy wrote: > Ok, great!, with the latest version, I don't get any (error) messages > from Solaris with the ibmf_trace_level set to 0x2. Finally :-) Thanks for bearing with me. > Unfortunately, Solaris is still not joining the subnet properly. How far does it get ? Solaris is expecting something that OpenSM isn't doing but not sure what it is. Can you provide a OSM log (or preferably an IB trace) of this or provide some other clue ? -- Hal From roland at topspin.com Fri Jan 21 09:22:56 2005 From: roland at topspin.com (Roland Dreier) Date: Fri, 21 Jan 2005 09:22:56 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: (Ronald G. Minnich's message of "Fri, 21 Jan 2005 10:15:47 -0700 (MST)") References: <1AC79F16F5C5284499BB9591B33D6F0003575656@orsmsx408> Message-ID: <52hdlasnm7.fsf@topspin.com> Ronald> this keeps getting more and more interesting. For example, Ronald> now that the code is in the kernel, is there any need to Ronald> maintain the openib tree? Independent of any licensing questions, there definitely is a real need to have an external repository for development. We need a place to test and debug code and coordinate development before sending patches on. (I am beginning to think that it would just be simpler to make all the openib kernel code simply GPLed, if only to stop these constant discussions. Perhaps at the developers workshop, the openib board can make this change) - Roland From eitan at mellanox.co.il Fri Jan 21 09:23:55 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Fri, 21 Jan 2005 19:23:55 +0200 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] Message-ID: <506C3D7B14CDD411A52C00025558DED6047EEC9C@mtlex01.yok.mtl.com> You should run opensm -V and provide the /tmp/osm.log. I guess the client is trying to create a new MGRP without setting all required mask bits. Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -----Original Message----- From: Hal Rosenstock [mailto:halr at voltaire.com] Sent: Friday, January 21, 2005 7:17 PM To: Tom Duffy Cc: openib-general at openib.org Subject: Re: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] On Fri, 2005-01-21 at 12:07, Tom Duffy wrote: > Ok, great!, with the latest version, I don't get any (error) messages > from Solaris with the ibmf_trace_level set to 0x2. Finally :-) Thanks for bearing with me. > Unfortunately, Solaris is still not joining the subnet properly. How far does it get ? Solaris is expecting something that OpenSM isn't doing but not sure what it is. Can you provide a OSM log (or preferably an IB trace) of this or provide some other clue ? -- Hal _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From mlleinin at hpcn.ca.sandia.gov Fri Jan 21 09:24:09 2005 From: mlleinin at hpcn.ca.sandia.gov (Matt Leininger) Date: Fri, 21 Jan 2005 09:24:09 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <20050120182116.GB10069@kroah.com> References: <41EC98A9.1040407@conectiva.com.br> <20050118150353.GQ30982@parcelfarce.linux.theplanet.co.uk> <52llaqejtf.fsf@topspin.com> <20050118180505.GA24404@mellanox.co.il> <52zmz6d2vw.fsf@topspin.com> <20050118181640.GB24404@mellanox.co.il> <52vf9ud0b8.fsf@topspin.com> <20050120170236.GB3174@stusta.de> <20050120171118.GA9538@kroah.com> <41EFF230.8070101@ichips.intel.com> <20050120182116.GB10069@kroah.com> Message-ID: <1106328249.2787.1457.camel@localhost> On Thu, 2005-01-20 at 10:21 -0800, Greg KH wrote: > On Thu, Jan 20, 2005 at 10:02:24AM -0800, Sean Hefty wrote: > > Greg KH wrote: > > > > >Personally, I think it's a stupid thing to try to license this code in a > > >dual way, as any port someone is going to have to do to get this code to > > >work in another os will be almost a complete rewrite in the end > > >anyway... > > > > I think that companies want to be able to make derivative works without > > needing to make the derivative open source, versus porting it to > > another OS. > > And then run that derivitave work on a Linux GPL kernel? Hah, good luck > with your lawyers if you try to do that. And good luck trying to work > around symbols that the openib code is using that are marked > EXPORT_SYMBOL_GPL(). > > Why do people try to do such stupid things, haven't the IB members > learned from the past... > > Remind me to _never_ send in an openib kernel patch if this is the > reason why the license is what it is. > The idea was for folks to be able to take the OpenIB code, under BSD, and port it to OSes other than Linux. I agree that having a BSD only stack running on Linux would be silly and should be avoided. In the end I only care about Linux. I think performance should drive what Linux features OpenIB uses. If it improves performance then it's worth using. - Matt From mshefty at ichips.intel.com Fri Jan 21 09:43:49 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Fri, 21 Jan 2005 09:43:49 -0800 Subject: [openib-general] OpenSM SA (and SA client) RMPP Header Initialization In-Reply-To: <1105890611.4646.92.camel@localhost.localdomain> References: <1105890611.4646.92.camel@localhost.localdomain> Message-ID: <41F13F55.1010806@ichips.intel.com> Hal Rosenstock wrote: > Who's responsibility is it to clear the RMPP header fields > when RMPPFlags.Active = 0 ? I think setting the RMPPFlags.Active needs to be done by the client. But this is the only field that would need to be set. - Sean From libor at topspin.com Fri Jan 21 09:57:39 2005 From: libor at topspin.com (Libor Michalek) Date: Fri, 21 Jan 2005 09:57:39 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <52hdlasnm7.fsf@topspin.com>; from roland@topspin.com on Fri, Jan 21, 2005 at 09:22:56AM -0800 References: <1AC79F16F5C5284499BB9591B33D6F0003575656@orsmsx408> <52hdlasnm7.fsf@topspin.com> Message-ID: <20050121095739.A4382@topspin.com> On Fri, Jan 21, 2005 at 09:22:56AM -0800, Roland Dreier wrote: > Ronald> this keeps getting more and more interesting. For example, > Ronald> now that the code is in the kernel, is there any need to > Ronald> maintain the openib tree? > > Independent of any licensing questions, there definitely is a real > need to have an external repository for development. We need a place > to test and debug code and coordinate development before sending > patches on. Plus there is software which interacts with the OpenIB kernel code, that is not intended or appropriate for kernel submission. (e.q. user space access, OpenSM, etc.) I seem to remember that the license was the result of getting the member companies to open their exisiting software. There was concern since some of that software was already licensed to third parties under non-GPL licenses. I think we can certainly revisit the issue for all the gen2 software which is being written from scratch. -Libor From libor at topspin.com Fri Jan 21 10:25:41 2005 From: libor at topspin.com (Libor Michalek) Date: Fri, 21 Jan 2005 10:25:41 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: ; from sean.hefty@intel.com on Thu, Jan 20, 2005 at 08:31:12PM -0800 References: <20050120130212.A29210@topspin.com> Message-ID: <20050121102541.B4382@topspin.com> On Thu, Jan 20, 2005 at 08:31:12PM -0800, Sean Hefty wrote: > > Some thoughts about destroying cm_id's based on a callback return value. > > Given the current code structure, it's possible for a user to receive > multiple simultaneous callbacks. For example, a user could be notified of a > reply and reject (sent as a result of an rtu timeout) at the same time. The > CM will handle the state transitions properly to fail calls into the API. > But I can see where it would be easy for a user to end up trying to destroy > the cm_id multiple times, or receiving the second callback after they had > already destroyed their context. > > I'm not seeing an easy way to handle this condition. I think that I need to > serialize all callbacks for a given cm_id. I would think lack of cm_id serialization would be a bigger problem for the CM itself, since it needs to update the cm_id state in a sane manner. The consumer could serialize callbacks, I know I do, but it would be a bigger problem if the state transitions didn't make sense. The older CM used a model where the connection identifier was checked-out from the table, and only thread of control had it at a given time. This I think would solve a lot of issues. -Libor From libor at topspin.com Fri Jan 21 10:26:39 2005 From: libor at topspin.com (Libor Michalek) Date: Fri, 21 Jan 2005 10:26:39 -0800 Subject: [openib-general] RFC CM peer to peer connections In-Reply-To: <41F03747.2000101@ichips.intel.com>; from mshefty@ichips.intel.com on Thu, Jan 20, 2005 at 02:57:11PM -0800 References: <41F03747.2000101@ichips.intel.com> Message-ID: <20050121102639.C4382@topspin.com> On Thu, Jan 20, 2005 at 02:57:11PM -0800, Sean Hefty wrote: > What priority should peer to peer connection support be in the CM? I > have a general framework in place, but I don't think what's there will > work when connecting in loopback. Since no-one else has answered, I would say low priority. :) -Libor From libor at topspin.com Fri Jan 21 10:27:45 2005 From: libor at topspin.com (Libor Michalek) Date: Fri, 21 Jan 2005 10:27:45 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <41F02A13.7020608@ichips.intel.com>; from mshefty@ichips.intel.com on Thu, Jan 20, 2005 at 02:00:51PM -0800 References: <41EFF68A.9070707@ichips.intel.com> <20050120104408.A29075@topspin.com> <41F004CD.90704@ichips.intel.com> <20050120130212.A29210@topspin.com> <41F02A13.7020608@ichips.intel.com> Message-ID: <20050121102745.D4382@topspin.com> On Thu, Jan 20, 2005 at 02:00:51PM -0800, Sean Hefty wrote: > Libor Michalek wrote: > > > Yet another issue. Saving the info from the incomming CM message, > > specifically REQ and REP, for later QP transitions is something that's > > going to be duplicated quite a bit. I would really like to see this > > data in the communication identifier itself, so it can be plucked out > > later for the QP modifies. To take it one step further, Roland had the > > suggestion, that it would be really nice to have CM conveniance functions, > > to which you pass a cm_id and qp_attr structure and it assigns all the > > correct values and masks for a given transition. For example: > > > > int ib_cm_prep_rtr(struct ib_cm_id *, struct ib_qp_attr *); > > int ib_cm_prep_rts(struct ib_cm_id *, struct ib_qp_attr *); > > I just had a conversation this morning with someone about this exact > same functionality. I think that it makes sense to add these routines. > (The exact format/parameters for the API may need to be slightly > different.) What format were you thinking for the API? -Libor From mshefty at ichips.intel.com Fri Jan 21 11:10:30 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Fri, 21 Jan 2005 11:10:30 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <20050121102745.D4382@topspin.com> References: <41EFF68A.9070707@ichips.intel.com> <20050120104408.A29075@topspin.com> <41F004CD.90704@ichips.intel.com> <20050120130212.A29210@topspin.com> <41F02A13.7020608@ichips.intel.com> <20050121102745.D4382@topspin.com> Message-ID: <41F153A6.70605@ichips.intel.com> Libor Michalek wrote: >>> int ib_cm_prep_rtr(struct ib_cm_id *, struct ib_qp_attr *); >>> int ib_cm_prep_rts(struct ib_cm_id *, struct ib_qp_attr *); >> >>I just had a conversation this morning with someone about this exact >>same functionality. I think that it makes sense to add these routines. >>(The exact format/parameters for the API may need to be slightly >>different.) > > What format were you thinking for the API? I haven't given the actual API/implementation much thought to say what it would look like. What did occur to me was that the the struct ib_cm_event might be needed. My plan is to implement this as soon as I resolve the callback issue, since I could use it for testing. - Sean From libor at topspin.com Fri Jan 21 11:18:02 2005 From: libor at topspin.com (Libor Michalek) Date: Fri, 21 Jan 2005 11:18:02 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <41F153A6.70605@ichips.intel.com>; from mshefty@ichips.intel.com on Fri, Jan 21, 2005 at 11:10:30AM -0800 References: <41EFF68A.9070707@ichips.intel.com> <20050120104408.A29075@topspin.com> <41F004CD.90704@ichips.intel.com> <20050120130212.A29210@topspin.com> <41F02A13.7020608@ichips.intel.com> <20050121102745.D4382@topspin.com> <41F153A6.70605@ichips.intel.com> Message-ID: <20050121111802.E4382@topspin.com> On Fri, Jan 21, 2005 at 11:10:30AM -0800, Sean Hefty wrote: > Libor Michalek wrote: > >>> int ib_cm_prep_rtr(struct ib_cm_id *, struct ib_qp_attr *); > >>> int ib_cm_prep_rts(struct ib_cm_id *, struct ib_qp_attr *); > >> > >>I just had a conversation this morning with someone about this exact > >>same functionality. I think that it makes sense to add these routines. > >>(The exact format/parameters for the API may need to be slightly > >>different.) > > > > What format were you thinking for the API? > > I haven't given the actual API/implementation much thought to say what > it would look like. What did occur to me was that the the struct > ib_cm_event might be needed. My plan is to implement this as soon as I > resolve the callback issue, since I could use it for testing. The first part of what I suggested, was saving the event information needed for the QP state transitions in the communication identifier. The reason is that all the CM consumers are going to need to save this info, since the QP tansitions occur after the callbacks are complete. For example RTR->RTS on the passive side occurs after RTU is received, but some of the info that's needed is delivered in the original REQ. I was suggesting that the communication identifier should hold this info, otherwise each consumer will need to duplicate the storage. Once the cm_id is holding this data, the convenience functions are a natural extension. -Libor From mshefty at ichips.intel.com Fri Jan 21 11:28:13 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Fri, 21 Jan 2005 11:28:13 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <20050121102541.B4382@topspin.com> References: <20050120130212.A29210@topspin.com> <20050121102541.B4382@topspin.com> Message-ID: <41F157CD.8030601@ichips.intel.com> Libor Michalek wrote: >>I'm not seeing an easy way to handle this condition. I think that I need to >>serialize all callbacks for a given cm_id. > > I would think lack of cm_id serialization would be a bigger problem > for the CM itself, since it needs to update the cm_id state in a sane > manner. The consumer could serialize callbacks, I know I do, but it > would be a bigger problem if the state transitions didn't make sense. > The older CM used a model where the connection identifier was checked-out > from the table, and only thread of control had it at a given time. This > I think would solve a lot of issues. The state transitions should be handled properly in the CM for multithreaded receive handling. The state transitions are serialized and should follow the state diagrams in the spec, and reference counting is maintained to block destruction while a callback is outstanding. An example issue that I'm thinking of is a user gets a reply callback. A reject is then received by the CM, and a second callback to the user is initiated. If the user tries to send an RTU, the call will fail since the cm_id is in an invalid state. If the user then returns -1 from the callback, the CM will destroy the cm_id. The destruction will block while the reject callback completes. Since the user returned -1 from the reply callback, they may not be ready to handle another callback. The fix that I'm working on should still allow multithreaded operation inside the CM, but callbacks to the user will be serialized. If a user returns a non-zero value from a callback, no additional callbacks will be generated. If you see issues with the current state handling in the CM, please let me know. - Sean From iod00d at hp.com Fri Jan 21 11:32:21 2005 From: iod00d at hp.com (Grant Grundler) Date: Fri, 21 Jan 2005 11:32:21 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: <52hdlasnm7.fsf@topspin.com> References: <1AC79F16F5C5284499BB9591B33D6F0003575656@orsmsx408> <52hdlasnm7.fsf@topspin.com> Message-ID: <20050121193221.GE17854@esmail.cup.hp.com> On Fri, Jan 21, 2005 at 09:22:56AM -0800, Roland Dreier wrote: > Independent of any licensing questions, there definitely is a real > need to have an external repository for development. We need a place > to test and debug code and coordinate development before sending > patches on. Agreed > (I am beginning to think that it would just be simpler to make all the > openib kernel code simply GPLed, if only to stop these constant > discussions. Perhaps at the developers workshop, the openib board can > make this change) then someone will whine about not being able to port the code to FreeBSD. Either way - someone will whine. If we can, I would prefer to leave the license Dual and then deal with the people who try to violate the GPL. My gut feeling is such people don't care which license the code is published with. grant From iod00d at hp.com Fri Jan 21 11:33:33 2005 From: iod00d at hp.com (Grant Grundler) Date: Fri, 21 Jan 2005 11:33:33 -0800 Subject: [openib-general] Re: [KJ] [RFC] TODO file cleanups In-Reply-To: References: <1AC79F16F5C5284499BB9591B33D6F0003575656@orsmsx408> Message-ID: <20050121193333.GF17854@esmail.cup.hp.com> On Fri, Jan 21, 2005 at 10:15:47AM -0700, Ronald G. Minnich wrote: > that code in the kernel is GPL, period, right? No. The default license is GPL if none is specified in the source file. grant From mshefty at ichips.intel.com Fri Jan 21 11:37:55 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Fri, 21 Jan 2005 11:37:55 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <20050121111802.E4382@topspin.com> References: <41EFF68A.9070707@ichips.intel.com> <20050120104408.A29075@topspin.com> <41F004CD.90704@ichips.intel.com> <20050120130212.A29210@topspin.com> <41F02A13.7020608@ichips.intel.com> <20050121102745.D4382@topspin.com> <41F153A6.70605@ichips.intel.com> <20050121111802.E4382@topspin.com> Message-ID: <41F15A13.30604@ichips.intel.com> Libor Michalek wrote: > The first part of what I suggested, was saving the event information > needed for the QP state transitions in the communication identifier. The > reason is that all the CM consumers are going to need to save this info, > since the QP tansitions occur after the callbacks are complete. For example > RTR->RTS on the passive side occurs after RTU is received, but some of the > info that's needed is delivered in the original REQ. I was suggesting that > the communication identifier should hold this info, otherwise each consumer > will need to duplicate the storage. Once the cm_id is holding this data, the > convenience functions are a natural extension. That makes sense. I was concerned about the CM saving the event information for an arbitrary time, but hadn't looked at what was needed between callbacks. Would it be acceptable to only support those calls during the connection establishment phase, which would allow the CM to free the event information? (Not sure what that does to path migration.) - Sean From libor at topspin.com Fri Jan 21 11:43:04 2005 From: libor at topspin.com (Libor Michalek) Date: Fri, 21 Jan 2005 11:43:04 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <41F157CD.8030601@ichips.intel.com>; from mshefty@ichips.intel.com on Fri, Jan 21, 2005 at 11:28:13AM -0800 References: <20050120130212.A29210@topspin.com> <20050121102541.B4382@topspin.com> <41F157CD.8030601@ichips.intel.com> Message-ID: <20050121114304.F4382@topspin.com> On Fri, Jan 21, 2005 at 11:28:13AM -0800, Sean Hefty wrote: > > An example issue that I'm thinking of is a user gets a reply callback. > A reject is then received by the CM, and a second callback to the > user is initiated. If the user tries to send an RTU, the call will > fail since the cm_id is in an invalid state. If the user then returns > -1 from the callback, the CM will destroy the cm_id. The destruction > will block while the reject callback completes. Since the user > returned -1 from the reply callback, they may not be ready to handle > another callback. > > The fix that I'm working on should still allow multithreaded operation > inside the CM, but callbacks to the user will be serialized. If a user > returns a non-zero value from a callback, no additional callbacks will > be generated. OK, that's the behaviour I would expect. However, in the example, even if the user returns 0 from the REP callback, I wouldn't expect to see the REJ after the REP has been processed. (or after the RTU has been sent) The CM states updates for a connection and resulting callbacks would be serialized, so the REJ after the REP would be discarded since it was received in a CM state which does not allow rejects. Or is this incorrect? -Libor From mshefty at ichips.intel.com Fri Jan 21 11:55:25 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Fri, 21 Jan 2005 11:55:25 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <20050121114304.F4382@topspin.com> References: <20050120130212.A29210@topspin.com> <20050121102541.B4382@topspin.com> <41F157CD.8030601@ichips.intel.com> <20050121114304.F4382@topspin.com> Message-ID: <41F15E2D.6030300@ichips.intel.com> Libor Michalek wrote: >>An example issue that I'm thinking of is a user gets a reply callback. >> A reject is then received by the CM, and a second callback to the >>user is initiated. If the user tries to send an RTU, the call will >>fail since the cm_id is in an invalid state. If the user then returns >>-1 from the callback, the CM will destroy the cm_id. The destruction >>will block while the reject callback completes. Since the user >>returned -1 from the reply callback, they may not be ready to handle >>another callback. >> >>The fix that I'm working on should still allow multithreaded operation >>inside the CM, but callbacks to the user will be serialized. If a user >>returns a non-zero value from a callback, no additional callbacks will >>be generated. > > > OK, that's the behaviour I would expect. However, in the example, even > if the user returns 0 from the REP callback, I wouldn't expect to see > the REJ after the REP has been processed. (or after the RTU has been sent) > The CM states updates for a connection and resulting callbacks would be > serialized, so the REJ after the REP would be discarded since it was > received in a CM state which does not allow rejects. Or is this incorrect? From the REP callback, even if the call to send an RTU is successful, a REJ could still be received. (The remote side timed out waiting for the RTU.) Locally, the cm_id state went from REP_RCVD to ESTABLISHED to TIMEWAIT. Given this, it seems that there are missing state transitions in the spec handling a REJ from REP_RCVD or MRA_REP_SENT states, which would drive the state back to IDLE. - Sean From libor at topspin.com Fri Jan 21 12:25:11 2005 From: libor at topspin.com (Libor Michalek) Date: Fri, 21 Jan 2005 12:25:11 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <41F15A13.30604@ichips.intel.com>; from mshefty@ichips.intel.com on Fri, Jan 21, 2005 at 11:37:55AM -0800 References: <41EFF68A.9070707@ichips.intel.com> <20050120104408.A29075@topspin.com> <41F004CD.90704@ichips.intel.com> <20050120130212.A29210@topspin.com> <41F02A13.7020608@ichips.intel.com> <20050121102745.D4382@topspin.com> <41F153A6.70605@ichips.intel.com> <20050121111802.E4382@topspin.com> <41F15A13.30604@ichips.intel.com> Message-ID: <20050121122511.G4382@topspin.com> On Fri, Jan 21, 2005 at 11:37:55AM -0800, Sean Hefty wrote: > Libor Michalek wrote: > > The first part of what I suggested, was saving the event information > > needed for the QP state transitions in the communication identifier. The > > reason is that all the CM consumers are going to need to save this info, > > since the QP tansitions occur after the callbacks are complete. For example > > RTR->RTS on the passive side occurs after RTU is received, but some of the > > info that's needed is delivered in the original REQ. I was suggesting that > > the communication identifier should hold this info, otherwise each consumer > > will need to duplicate the storage. Once the cm_id is holding this data, the > > convenience functions are a natural extension. > > That makes sense. I was concerned about the CM saving the event > information for an arbitrary time, but hadn't looked at what was needed > between callbacks. > > Would it be acceptable to only support those calls during the > connection establishment phase, which would allow the CM to free the > event information? (Not sure what that does to path migration.) I think it would be OK to free it after connection establishment, on the flip side, I don't think that it's so much data that holding it for the life of the connection would be a problem either. In our experience we held onto this data for the life of the connection, and were still able to manage 10's of thousands of connections. Either way, once it is there, this would be something that's easy to change in the future. -Libor From tduffy at sun.com Fri Jan 21 12:51:52 2005 From: tduffy at sun.com (Tom Duffy) Date: Fri, 21 Jan 2005 12:51:52 -0800 Subject: [Fwd: Re: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]]] In-Reply-To: <1106333288.4648.1648.camel@localhost.localdomain> References: <1106333288.4648.1648.camel@localhost.localdomain> Message-ID: <1106340712.28559.12.camel@duffman> On Fri, 2005-01-21 at 13:48 -0500, Hal Rosenstock wrote: > Hi Tom, > > One thing I could see from the last logs you sent: > > I'm not sure that the full partition ID 1 (0x8001 pkey) was configured. > Isn't that a requirement ? I think OpenSM reads the PKeytable from the > HCA SMA so that if it was already set everything should be OK as it > doesn't overwrite this. I did see the full default partition (0xffff) in > the logs. Solaris has made the decision to separate the management partition from the data partition. It uses 0xffff for management and 0x8001 for data (like IPoIB). When using Linux on a Sun managed network, I need to create a child ibd interface in the 0x8001 partition for it to work properly. > Also, don't know if this is now doing what I saw and termed "cycling the > port". After the S10 SA client does a Get ClassPortInfo and the event > subscriptions which OpenSM answers, something occurs on one side or the > other to cause the port to be reconfigured and go back through this same > sequence again. > > BTW, I diagnosed what was going wrong with VSM in terms of the > subscriptions and a fix is imminent. We'll see what happens then with > VSM and S10 as well. (I'm also now interested in testing RMPP between > S10 and VSM. Are there other commands for this beside devfsadm -C ? There is some other stuff that I have, but I don't think it is open to customers (maybe if we get some sorta development NDA going on). > I was hoping if S10 could be brought up with OpenIB OpenSM I would fully > understand the requirements. Yeah, I would really like this as well. For now, just IPoIB interop would be great. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From tduffy at sun.com Fri Jan 21 12:54:36 2005 From: tduffy at sun.com (Tom Duffy) Date: Fri, 21 Jan 2005 12:54:36 -0800 Subject: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]] In-Reply-To: <1106327803.4648.1636.camel@localhost.localdomain> References: <1105710762.4649.3185.camel@localhost.localdomain> <1105748847.22751.34.camel@duffman> <1105792030.4649.5323.camel@localhost.localdomain> <1105991271.13791.19.camel@duffman> <1105993644.4646.207.camel@localhost.localdomain> <1106007142.13791.23.camel@duffman> <1106066576.4665.7.camel@localhost.localdomain> <1106071395.2045.12.camel@duffman> <1106075184.4665.244.camel@localhost.localdomain> <1106170236.20998.14.camel@duffman> <1106180143.4648.595.camel@localhost.localdomain> <1106246745.18269.8.camel@duffman> <1106250068.4648.971.camel@localhost.localdomain> <41F01D90.3030103@Sun.COM> <1106256131.4648.1027.camel@localhost.localdomain> <1106256795.4648.1033.camel@localhost.localdomain> <1106257325.18269.40.camel@duffman> <1106257361.4648.1037.camel@localhost.localdomain> <1106318839.4648.1606.camel@localhost.localdomain> <1106327220.27916.48.camel@duffman> <1106327803.4648.1636.camel@localhost.localdomain> Message-ID: <1106340876.28559.15.camel@duffman> On Fri, 2005-01-21 at 12:16 -0500, Hal Rosenstock wrote: > How far does it get ? Solaris is expecting something that OpenSM isn't > doing but not sure what it is. > > Can you provide a OSM log (or preferably an IB trace) of this or provide > some other clue ? I am working on getting an analyzer up (our license is out of date making it a 80K brick in our lab right now). I will send the osm log to you off list. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From libor at topspin.com Fri Jan 21 13:53:21 2005 From: libor at topspin.com (Libor Michalek) Date: Fri, 21 Jan 2005 13:53:21 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <41F15E2D.6030300@ichips.intel.com>; from mshefty@ichips.intel.com on Fri, Jan 21, 2005 at 11:55:25AM -0800 References: <20050120130212.A29210@topspin.com> <20050121102541.B4382@topspin.com> <41F157CD.8030601@ichips.intel.com> <20050121114304.F4382@topspin.com> <41F15E2D.6030300@ichips.intel.com> Message-ID: <20050121135321.H4382@topspin.com> On Fri, Jan 21, 2005 at 11:55:25AM -0800, Sean Hefty wrote: > Libor Michalek wrote: > >>An example issue that I'm thinking of is a user gets a reply callback. > >> A reject is then received by the CM, and a second callback to the > >>user is initiated. If the user tries to send an RTU, the call will > >>fail since the cm_id is in an invalid state. If the user then returns > >>-1 from the callback, the CM will destroy the cm_id. The destruction > >>will block while the reject callback completes. Since the user > >>returned -1 from the reply callback, they may not be ready to handle > >>another callback. > >> > >>The fix that I'm working on should still allow multithreaded operation > >>inside the CM, but callbacks to the user will be serialized. If a user > >>returns a non-zero value from a callback, no additional callbacks will > >>be generated. > > > > > > OK, that's the behaviour I would expect. However, in the example, even > > if the user returns 0 from the REP callback, I wouldn't expect to see > > the REJ after the REP has been processed. (or after the RTU has been sent) > > The CM states updates for a connection and resulting callbacks would be > > serialized, so the REJ after the REP would be discarded since it was > > received in a CM state which does not allow rejects. Or is this incorrect? > > From the REP callback, even if the call to send an RTU is successful, > a REJ could still be received. (The remote side timed out waiting for > the RTU.) Locally, the cm_id state went from REP_RCVD to ESTABLISHED > to TIMEWAIT. Given this, it seems that there are missing state > transitions in the spec handling a REJ from REP_RCVD or MRA_REP_SENT > states, which would drive the state back to IDLE. I think this state transition is ignored, since data transfer will detect the situation. After the RTU is sent and the connection is transfered to ESTALISHED, the QP is transitioned to RTS, a posted send will result in a error completion, since the remote QP has been destroyed and will either not ack or nack the data. Applications that care about detecting that a connection, which is not transfering data, is healthy should perform zero byte RDMA writes... -Libor From mshefty at ichips.intel.com Fri Jan 21 14:29:35 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Fri, 21 Jan 2005 14:29:35 -0800 Subject: [openib-general] RFC on CM error handling In-Reply-To: <20050121135321.H4382@topspin.com> References: <20050120130212.A29210@topspin.com> <20050121102541.B4382@topspin.com> <41F157CD.8030601@ichips.intel.com> <20050121114304.F4382@topspin.com> <41F15E2D.6030300@ichips.intel.com> <20050121135321.H4382@topspin.com> Message-ID: <41F1824F.7060903@ichips.intel.com> Libor Michalek wrote: >> From the REP callback, even if the call to send an RTU is successful, >>a REJ could still be received. (The remote side timed out waiting for >>the RTU.) Locally, the cm_id state went from REP_RCVD to ESTABLISHED >>to TIMEWAIT. Given this, it seems that there are missing state >>transitions in the spec handling a REJ from REP_RCVD or MRA_REP_SENT >>states, which would drive the state back to IDLE. > > I think this state transition is ignored, since data transfer will > detect the situation. After the RTU is sent and the connection is > transfered to ESTALISHED, the QP is transitioned to RTS, a posted > send will result in a error completion, since the remote QP has been > destroyed and will either not ack or nack the data. Applications that > care about detecting that a connection, which is not transfering data, > is healthy should perform zero byte RDMA writes... I agree that the CM could ignore this transition. The CM can probably ignore all REJ messages and rely on timeouts (which is why I haven't coded that portion yet...). Long term I think the CM should attempt to handle REJ in all valid states. From the CM's perspective, the required effort appears to be adding another case in a switch statement. Along these same lines, there are a few more missing state transitions from the spec. A client can receive a DREQ from the REP_SENT state, receive a REP from DREQ_SENT, and receive a DREP from DREQ_RCVD. The CM will handle these by going from REP_SENT to DREQ_RCVD, resending the DREQ, or transitioning to TIMEWAIT, respectively. - Sean From tduffy at sun.com Fri Jan 21 16:14:22 2005 From: tduffy at sun.com (Tom Duffy) Date: Fri, 21 Jan 2005 16:14:22 -0800 Subject: [openib-general] Re: osm log In-Reply-To: <1106345818.4648.1777.camel@localhost.localdomain> References: <1106340999.28559.17.camel@duffman> <1106345818.4648.1777.camel@localhost.localdomain> Message-ID: <1106352862.28559.51.camel@duffman> On Fri, 2005-01-21 at 17:16 -0500, Hal Rosenstock wrote: > Not sure whether you want me to post this to the list or not so I will > start privately. Let me know if I should take it to the list. Fine by me. I got nothing to hide. > Wow. That was a lot to go through... Yeah, the other day my filesystem filled and I found out that osm.log had grown to 34G. Ouch! > What is the topology of the subnet ? There are some extreme limitations > of OpenSM right now when RMPP is used as the responses are limited to a > single packet which means only a few records of any type will fit into > the response (depending on the record type). I should simplify my topology. I will plug in my solaris box back to back with a linux box and retest. Can I run opensm on port 2? > It looks to me like there are 2 end nodes (and 1 switch port 0) from the > unicast forwarding table (LFT) as there are 3 LIDs assigned. > > Is the topology that simple ? I have an IB switch with 3 linux x86_64 systems and a solaris sparc64 system attached (each with only one port). Also, an IB traffic generator. Oh, and one of the Linux systems has an analyzer in the middle. Also, one of the Linux systems might be down. > I see SA deletes of the MC groups being answered properly as there is no > match found for the deletion. It looks like there are 2 precreated > groups (0xC000 and 0xC001) which are IPv4 groups. These are joined with > "join" component masks (0x10083). There are 3 other groups (2 IPv6 ones > and 1 other IPv4 one) which are created (component mask 0x130c7). > > I can see 5 MLIDs (0xC000-0xC004) but the MFT of the switch only appears > to have one port (port 2) on for each of these LIDs. That means that not > all the MC joins "worked" if there was more than one. Also, when the SA > GetTable of MCMemberRecord is responded to, no records are returned. > These GetTable requests have a component mask with MGID, PKey, and Scope > set. Would the PKey be 0x8001 ? If so, I do see a previous dump of a > PKey table which only has the full default partition (0xffff). Not sure > if this is the problem yet. > > Are all the ports active that should be ? That would explain why the > other port's mutlicast join/creates are not seen by OpenSM. That is great analysis. I am still trying to figure out the best way to determine what state a Solaris HCA is in (there is no convenient ibstatus tool ala openib, AFAIK). I can tell you one thing though: both the green and amber LEDs are lit up on Port1 on the Solaris box. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From libor at topspin.com Fri Jan 21 16:28:20 2005 From: libor at topspin.com (Libor Michalek) Date: Fri, 21 Jan 2005 16:28:20 -0800 Subject: [openib-general] CM oops. In-Reply-To: <41F1824F.7060903@ichips.intel.com>; from mshefty@ichips.intel.com on Fri, Jan 21, 2005 at 02:29:35PM -0800 References: <20050120130212.A29210@topspin.com> <20050121102541.B4382@topspin.com> <41F157CD.8030601@ichips.intel.com> <20050121114304.F4382@topspin.com> <41F15E2D.6030300@ichips.intel.com> <20050121135321.H4382@topspin.com> <41F1824F.7060903@ichips.intel.com> Message-ID: <20050121162820.I4382@topspin.com> Sean, I am seeing a oops on a system which is receiving a passive connection request. It occurs whether I'm listening on a masked service ID or an exact service ID. The oops is the same as if I connect to a system on which there is no active listen at all. The svn revision is 1623 mask: #define SDP_MSG_SERVICE_ID_VALUE (0x000000000001FFFFULL) #define SDP_MSG_SERVICE_ID_MASK (0xFFFFFFFFFFFF0000ULL) listen: result = ib_cm_listen(dev_root->listen_id, cpu_to_be64(SDP_MSG_SERVICE_ID_VALUE), cpu_to_be64(SDP_MSG_SERVICE_ID_MASK)); oops: kernel BUG at kernel/workqueue.c:104! invalid operand: 0000 [#1] SMP Modules linked in: ib_sdp ib_ipoib ib_cm ib_umad ib_sa ib_mthca ib_mad ib_core ipv6 parport_pc lp parport autofs4 e1000 af_packet ide_cd cdrom sg microcode dm_mod uhci_hcd usbcore video thermal processor fan button battery ac ext3 jbd CPU: 1 EIP: 0060:[] Tainted: GF VLI EFLAGS: 00010203 (2.6.10) EIP is at queue_work+0x5a/0x70 eax: f4be7c84 ebx: f4be7c80 ecx: 00000000 edx: 00000001 esi: f4455800 edi: 00000000 ebp: f4b8ae4c esp: f4b73ea4 ds: 007b es: 007b ss: 0068 Process ib_mad1 (pid: 3773, threadinfo=f4b72000 task=f5038a20) Stack: f7fc7280 f4b8ae00 f8a62f49 c2024a00 f4b73f44 07000000 f6325e1c 00000282 f6325e00 00000000 00000000 f4b8ae00 f4b8ae4c f8a63075 f4b73f14 f4b8ae24 f4b8ae4c f4b899cc f4b8ae24 f4b89980 f6325ef4 f4b73f14 f6325e00 f5320800 Call Trace: [] ib_mad_complete_recv+0x109/0x110 [ib_mad] [] ib_mad_recv_done_handler+0x125/0x260 [ib_mad] [] ib_mad_completion_handler+0x69/0x80 [ib_mad] [] current_is_keventd+0x20/0x40 [] worker_thread+0x1bd/0x260 [] ib_mad_completion_handler+0x0/0x80 [ib_mad] [] default_wake_function+0x0/0x10 [] default_wake_function+0x0/0x10 [] worker_thread+0x0/0x260 [] kthread+0x9c/0xb0 [] kthread+0x0/0xb0 [] kernel_thread_helper+0x5/0x18 Code: 00 8d 43 04 0f 44 d1 39 43 04 75 1f c1 e2 07 8d 04 32 89 da e8 48 ff ff ff b9 01 00 00 00 8b 1c 24 89 c8 8b 74 24 04 83 c4 08 c3 <0f> 0b 68 00 2c 55 34 c0 eb d7 8d b6 00 00 00 00 8d bf 00 00 00 -Libor From mshefty at ichips.intel.com Fri Jan 21 16:50:58 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Fri, 21 Jan 2005 16:50:58 -0800 Subject: [openib-general] Re: CM oops. In-Reply-To: <20050121162820.I4382@topspin.com> References: <20050120130212.A29210@topspin.com> <20050121102541.B4382@topspin.com> <41F157CD.8030601@ichips.intel.com> <20050121114304.F4382@topspin.com> <41F15E2D.6030300@ichips.intel.com> <20050121135321.H4382@topspin.com> <41F1824F.7060903@ichips.intel.com> <20050121162820.I4382@topspin.com> Message-ID: <41F1A372.1050005@ichips.intel.com> Libor Michalek wrote: > I am seeing a oops on a system which is receiving a passive > connection request. It occurs whether I'm listening on a masked > service ID or an exact service ID. The oops is the same as if I > connect to a system on which there is no active listen at all. > The svn revision is 1623 Can you try changing the cm_recv_handler() routine to call INIT_WORK in place of PREPARE_WORK? I think that this is the reason for the oops. (I can't easily generate a patch for you at the moment.) - Sean From libor at topspin.com Fri Jan 21 17:01:41 2005 From: libor at topspin.com (Libor Michalek) Date: Fri, 21 Jan 2005 17:01:41 -0800 Subject: [openib-general] Re: CM oops. In-Reply-To: <41F1A372.1050005@ichips.intel.com>; from mshefty@ichips.intel.com on Fri, Jan 21, 2005 at 04:50:58PM -0800 References: <20050120130212.A29210@topspin.com> <20050121102541.B4382@topspin.com> <41F157CD.8030601@ichips.intel.com> <20050121114304.F4382@topspin.com> <41F15E2D.6030300@ichips.intel.com> <20050121135321.H4382@topspin.com> <41F1824F.7060903@ichips.intel.com> <20050121162820.I4382@topspin.com> <41F1A372.1050005@ichips.intel.com> Message-ID: <20050121170141.J4382@topspin.com> On Fri, Jan 21, 2005 at 04:50:58PM -0800, Sean Hefty wrote: > Libor Michalek wrote: > > I am seeing a oops on a system which is receiving a passive > > connection request. It occurs whether I'm listening on a masked > > service ID or an exact service ID. The oops is the same as if I > > connect to a system on which there is no active listen at all. > > The svn revision is 1623 > > Can you try changing the cm_recv_handler() routine to call INIT_WORK in > place of PREPARE_WORK? I think that this is the reason for the oops. > (I can't easily generate a patch for you at the moment.) OK, different oops now. I'd take a closer look, but I'm now working on the active connect side, which is going to take some doing before getting to the CM part, I need to hook into ipoib address resolution... -Libor Oops: 0002 [#1] SMP Modules linked in: ib_sdp ib_ipoib ib_cm ib_umad ib_sa ib_mthca ib_mad ib_core ipv6 parport_pc lp parport autofs4 e1000 af_packet ide_cd cdrom sg microcode dm_mod uhci_hcd usbcore video thermal processor fan button battery ac ext3 jbd CPU: 3 EIP: 0060:[] Tainted: GF VLI EFLAGS: 00010202 (2.6.10) EIP is at cm_req_handler+0x2a3/0x4b0 [ib_cm] eax: 00000000 ebx: 00000000 ecx: 00000012 edx: 00000000 esi: f51d72c4 edi: 00000000 ebp: f516e0cc esp: f6095f14 ds: 007b es: 007b ss: 0068 Process ib_cm/3 (pid: 3883, threadinfo=f6094000 task=f734e020) Stack: 00000014 00000078 c2034060 00000003 f51d72fc f51d7880 f51d7080 f51d7280 f51d7280 f516e08c f51cc180 00000212 f8aad508 f51d7280 f51d7284 c012f87d f5b8b020 f734e020 00000000 f51cc1a0 f6094000 f51d7280 f8aad490 f6094000 Call Trace: [] cm_recv_work_handler+0x78/0x120 [ib_cm] [] worker_thread+0x1bd/0x260 [] cm_recv_work_handler+0x0/0x120 [ib_cm] [] default_wake_function+0x0/0x10 [] default_wake_function+0x0/0x10 [] worker_thread+0x0/0x260 [] kthread+0x9c/0xb0 [] kthread+0x0/0xb0 [] kernel_thread_helper+0x5/0x18 Code: 4a c0 e8 04 83 e0 0f 89 47 3c c6 47 40 02 8b 45 70 0f c8 83 e0 3f c6 47 42 02 88 47 41 0f b6 45 77 c0 e8 03 88 47 43 89 d7 89 d8 ab 8b 45 7c 89 02 8b 85 80 00 00 00 89 42 04 8b 85 84 00 00 From mshefty at ichips.intel.com Fri Jan 21 17:11:27 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Fri, 21 Jan 2005 17:11:27 -0800 Subject: [openib-general] Re: CM oops. In-Reply-To: <20050121170141.J4382@topspin.com> References: <20050120130212.A29210@topspin.com> <20050121102541.B4382@topspin.com> <41F157CD.8030601@ichips.intel.com> <20050121114304.F4382@topspin.com> <41F15E2D.6030300@ichips.intel.com> <20050121135321.H4382@topspin.com> <41F1824F.7060903@ichips.intel.com> <20050121162820.I4382@topspin.com> <41F1A372.1050005@ichips.intel.com> <20050121170141.J4382@topspin.com> Message-ID: <41F1A83F.2000007@ichips.intel.com> Libor Michalek wrote: > OK, different oops now. I'd take a closer look, but I'm now working on the > active connect side, which is going to take some doing before getting to > the CM part, I need to hook into ipoib address resolution... I see where a call to cm_format_paths_from_req will cause an oops though if an alternate path is not given in the REQ. A check needs to be added to cm_format_paths_from_req to see if alt_path is NULL. - Sean From halr at voltaire.com Fri Jan 21 18:30:26 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 21 Jan 2005 21:30:26 -0500 Subject: [openib-general] Re: osm log In-Reply-To: <1106352862.28559.51.camel@duffman> References: <1106340999.28559.17.camel@duffman> <1106345818.4648.1777.camel@localhost.localdomain> <1106352862.28559.51.camel@duffman> Message-ID: <1106361026.4648.1805.camel@localhost.localdomain> On Fri, 2005-01-21 at 19:14, Tom Duffy wrote: > On Fri, 2005-01-21 at 17:16 -0500, Hal Rosenstock wrote: > > Wow. That was a lot to go through... > > Yeah, the other day my filesystem filled and I found out that osm.log > had grown to 34G. Ouch! You might want to use log.rotate > > What is the topology of the subnet ? There are some extreme limitations > > of OpenSM right now when RMPP is used as the responses are limited to a > > single packet which means only a few records of any type will fit into > > the response (depending on the record type). > > I should simplify my topology. I will plug in my solaris box back to > back with a linux box and retest. Can I run opensm on port 2? Yes. You need to use -g and port 2's GUID. (You can even run on a second HCA). > > It looks to me like there are 2 end nodes (and 1 switch port 0) from the > > unicast forwarding table (LFT) as there are 3 LIDs assigned. > > > > Is the topology that simple ? > > I have an IB switch with 3 linux x86_64 systems and a solaris sparc64 > system attached (each with only one port). Also, an IB traffic > generator. Oh, and one of the Linux systems has an analyzer in the > middle. Also, one of the Linux systems might be down. OK. That's pretty simple but can you just start with 1 Linux machine and 1 Solaris machine plugged together back to back and see if things work and then move on. > > I see SA deletes of the MC groups being answered properly as there is no > > match found for the deletion. It looks like there are 2 precreated > > groups (0xC000 and 0xC001) which are IPv4 groups. These are joined with > > "join" component masks (0x10083). There are 3 other groups (2 IPv6 ones > > and 1 other IPv4 one) which are created (component mask 0x130c7). > > > > I can see 5 MLIDs (0xC000-0xC004) but the MFT of the switch only appears > > to have one port (port 2) on for each of these LIDs. That means that not > > all the MC joins "worked" if there was more than one. Also, when the SA > > GetTable of MCMemberRecord is responded to, no records are returned. > > These GetTable requests have a component mask with MGID, PKey, and Scope > > set. Would the PKey be 0x8001 ? If so, I do see a previous dump of a > > PKey table which only has the full default partition (0xffff). Not sure > > if this is the problem yet. > > > > Are all the ports active that should be ? That would explain why the > > other port's mutlicast join/creates are not seen by OpenSM. > > That is great analysis. I am still trying to figure out the best way to > determine what state a Solaris HCA is in (there is no convenient > ibstatus tool ala openib, AFAIK). I can tell you one thing though: both > the green and amber LEDs are lit up on Port1 on the Solaris box. You can use smpdump from the Linux machine on attribute 0x14 to the LID of the Solaris machine /usr/local/ib/bin/smpdump 3 0x15 if Solaris is LID 3 Send me the output as there is no pretty decode right now. The output is the raw MAD data. /usr/local/ib/bin/smpdump -D 0 0x15 0000 0000 0000 0000 fe80 0000 0000 0000 0002 0001 0050 0a68 0000 0000 0103 0301 1122 0011 4040 0008 0804 f410 0000 0000 0000 2012 1088 0000 0000 0000 0000 0000 PortState starts at bit 260 (byte 32.5) for 4 bits and PortPhysicalState starts at bit 264 (byte 33) for 4 bits. PortState is 1 (Down) and PortPhysicalState is 2 (Polling) in the above. -- Hal From mshefty at ichips.intel.com Fri Jan 21 22:42:07 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Fri, 21 Jan 2005 22:42:07 -0800 Subject: [openib-general] Re: CM oops. In-Reply-To: <20050121170141.J4382@topspin.com> References: <20050120130212.A29210@topspin.com> <20050121102541.B4382@topspin.com> <41F157CD.8030601@ichips.intel.com> <20050121114304.F4382@topspin.com> <41F15E2D.6030300@ichips.intel.com> <20050121135321.H4382@topspin.com> <41F1824F.7060903@ichips.intel.com> <20050121162820.I4382@topspin.com> <41F1A372.1050005@ichips.intel.com> <20050121170141.J4382@topspin.com> Message-ID: <20050121224207.1e98a891.mshefty@ichips.intel.com> On Fri, 21 Jan 2005 17:01:41 -0800 Libor Michalek wrote: > > Can you try changing the cm_recv_handler() routine to call INIT_WORK in > > place of PREPARE_WORK? I think that this is the reason for the oops. > > (I can't easily generate a patch for you at the moment.) > > OK, different oops now. I'd take a closer look, but I'm now working on the > active connect side, which is going to take some doing before getting to > the CM part, I need to hook into ipoib address resolution... I've checked in fixes for the work initialization and handling a NULL alternate path. This may not fix your oops however. - Sean From roland at topspin.com Fri Jan 21 19:17:07 2005 From: roland at topspin.com (Roland Dreier) Date: Fri, 21 Jan 2005 19:17:07 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050120170113.36ee8225.davem@davemloft.net> (David S. Miller's message of "Thu, 20 Jan 2005 17:01:13 -0800") References: <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> <1106229084.5812.40.camel@tsc-6.cph.tpack.net> <20050120133420.317bea31.davem@davemloft.net> <20050120215650.GB14521@esmail.cup.hp.com> <20050120170113.36ee8225.davem@davemloft.net> Message-ID: <52is5qp2z0.fsf@topspin.com> So what's the plan here with LLTX? As far as I can tell, 2.6.11-rc2 went out with the changes that disable IRQs in hard_start_xmit... - R. From davem at davemloft.net Fri Jan 21 19:53:56 2005 From: davem at davemloft.net (David S. Miller) Date: Fri, 21 Jan 2005 19:53:56 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <52is5qp2z0.fsf@topspin.com> References: <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> <1106229084.5812.40.camel@tsc-6.cph.tpack.net> <20050120133420.317bea31.davem@davemloft.net> <20050120215650.GB14521@esmail.cup.hp.com> <20050120170113.36ee8225.davem@davemloft.net> <52is5qp2z0.fsf@topspin.com> Message-ID: <20050121195356.51cf3ade.davem@davemloft.net> On Fri, 21 Jan 2005 19:17:07 -0800 Roland Dreier wrote: > So what's the plan here with LLTX? As far as I can tell, 2.6.11-rc2 > went out with the changes that disable IRQs in hard_start_xmit... Linus just didn't pull the backout of that stuff in time. I'll repush it to him tonight. From iod00d at hp.com Fri Jan 21 23:15:03 2005 From: iod00d at hp.com (Grant Grundler) Date: Fri, 21 Jan 2005 23:15:03 -0800 Subject: [openib-general] MMIO reads for IPoIB w/MSI-X Message-ID: <20050122071503.GA8137@esmail.cup.hp.com> Hi all, In trying to understand why netperf TCP_STREAM sucks on the ia64 platform I'm slowly collecting more data. I didn't really have any time this week to poke at this issue. The follow data confirms in MSI-X mode mthca is essentially doing no MMIO reads. ionize:~# fgrep MSI /proc/interrupts ; pfmon -e uc_loads_retired -k --system-wide -- /opt/netperf/netperf -t TCP_STREAM -l 10 -H 10.0.0.81 -- -s 262144 -S 262144 -m 4064 ; fgrep MSI /proc/interrupts 64: 132 0 PCI-MSI-X ib_mthca (comp) 65: 2 0 PCI-MSI-X ib_mthca (async) 66: 2203 0 PCI-MSI-X ib_mthca (cmd) TCP STREAM TEST to 10.0.0.81 Recv Send Send Socket Socket Message Elapsed Size Size Size Time Throughput bytes bytes bytes secs. 10^6bits/sec 262142 262142 4064 10.00 1564.40 CPU0 680 UC_LOADS_RETIRED CPU1 715 UC_LOADS_RETIRED 64: 373558 0 PCI-MSI-X ib_mthca (comp) 65: 2 0 PCI-MSI-X ib_mthca (async) 66: 2203 0 PCI-MSI-X ib_mthca (cmd) hth, grant From iod00d at hp.com Sat Jan 22 00:18:18 2005 From: iod00d at hp.com (Grant Grundler) Date: Sat, 22 Jan 2005 00:18:18 -0800 Subject: [openib-general] IPoIB/ia64 cacheline misses Message-ID: <20050122081818.GC8137@esmail.cup.hp.com> Here is use of pfmon 3.1 to sample address events. In short, nothing here jumps out at me and screams for a big opportunity to optimize. But I don't fully understand the data and instruction flow either. Maybe someone else sees more opportunity. e.g. I'm wondering if netfilter is a significant performance hit. This first set of data is essentially all cache misses. No surprise that spinlock seems to be the worst offender. ionize:~# fgrep MSI /proc/interrupts ; pfmon31 --us-c --cpu-list=0 --pin-command --resolve-addr --smpl-module=dear-hist-itanium2 -e data_ear_cache_lat64 --long-smpl-periods=500 --smpl-periods-random=0xfff:10 --system-wide -k -- /opt/netperf/netperf -t TCP_STREAM -l 50 -H 10.0.1.81 -- -s 262144 -S 262144 -m 4064 ; fgrep MSI /proc/interrupts 64: 5324909 0 PCI-MSI-X ib_mthca (comp) 65: 2 0 PCI-MSI-X ib_mthca (async) 66: 2203 0 PCI-MSI-X ib_mthca (cmd) added event set 0 only kernel symbols are resolved in system-wide mode TCP STREAM TEST to 10.0.1.81 Recv Send Send Socket Socket Message Elapsed Size Size Size Time Throughput bytes bytes bytes secs. 10^6bits/sec 262142 262142 4064 50.00 1561.24 # total_samples 710 # instruction addr view # sorted by count # showing per per distinct value # %L2 : percentage of L1 misses that hit L2 # %L3 : percentage of L1 misses that hit L3 # %RAM : percentage of L1 misses that hit memory # L2 : 5 cycles load latency # L3 : 14 cycles load latency # sampling period: 500 # #count %self %cum %L2 %L3 %RAM instruction addr 178 25.07% 25.07% 0.00% 0.00% 100.00% 0xa0000001006b3061 _spin_lock+0x21 136 19.15% 44.23% 0.00% 0.00% 100.00% 0xa00000020014d120 __initcall_end+0xff91b468 86 12.11% 56.34% 0.00% 0.00% 100.00% 0xa000000100593a21 alloc_skb+0x101 85 11.97% 68.31% 0.00% 0.00% 100.00% 0xa00000020014d790 __initcall_end+0xff91bad8 85 11.97% 80.28% 0.00% 0.00% 100.00% 0xa000000200149c11 __initcall_end+0xff917f59 51 7.18% 87.46% 0.00% 0.00% 100.00% 0xa0000001006b3291 _spin_lock_irqsave+0x31 32 4.51% 91.97% 0.00% 0.00% 100.00% 0xa0000001002de7e0 memmove+0x40 25 3.52% 95.49% 0.00% 0.00% 100.00% 0xa000000100594550 skb_clone+0x490 9 1.27% 96.76% 0.00% 0.00% 100.00% 0xa000000200176970 ipoib_add_port[ib_ipoib]+0x1730 7 0.99% 97.75% 0.00% 0.00% 100.00% 0xa00000010008c101 profile_hit+0x1 4 0.56% 98.31% 0.00% 0.00% 100.00% 0xa00000010007f471 find_busiest_group+0x5d1 3 0.42% 98.73% 0.00% 0.00% 100.00% 0xa00000010007f470 find_busiest_group+0x5d0 1 0.14% 98.87% 0.00% 0.00% 100.00% 0xa0000001005e7ff0 tcp_sendmsg+0x1b50 1 0.14% 99.01% 0.00% 0.00% 100.00% 0xa00000020014d860 __initcall_end+0xff91bba8 1 0.14% 99.15% 0.00% 0.00% 100.00% 0xa00000010054d541 ohci_hub_status_data+0x2a1 1 0.14% 99.30% 0.00% 0.00% 100.00% 0xa0000001002e37f0 do_csum+0x70 1 0.14% 99.44% 0.00% 0.00% 100.00% 0xa0000001006b0cc0 schedule+0xbe0 1 0.14% 99.58% 0.00% 0.00% 100.00% 0xa00000010000a2e1 load_switch_stack+0xc1 1 0.14% 99.72% 0.00% 0.00% 100.00% 0xa0000001000a17e0 time_interpolator_update+0x140 1 0.14% 99.86% 0.00% 0.00% 100.00% 0xa0000001006b01d0 schedule+0xf0 1 0.14% 100.00% 0.00% 0.00% 100.00% 0xa00000010000a2a1 load_switch_stack+0x81 # level 0 : counts=0 avg_cycles=0.0ms 0.00% # level 1 : counts=0 avg_cycles=0.0ms 0.00% # level 2 : counts=710 avg_cycles=0.0ms 100.00% approx cost: 0.0s 64: 7187185 0 PCI-MSI-X ib_mthca (comp) 65: 2 0 PCI-MSI-X ib_mthca (async) 66: 2203 0 PCI-MSI-X ib_mthca (cmd) Corresponding symbols for __initcall_end+fff... entries: 0xa00000020014d120 0xa00000020014d790 a00000020014cfe0 t mthca_poll_cq [ib_mthca] a00000020014dd60 t mthca_arm_cq [ib_mthca] a00000020014de20 t mthca_init_cq [ib_mthca] 0xa000000200149c11 a000000200149b80 t mthca_eq_int [ib_mthca] a00000020014a660 t mthca_interrupt [ib_mthca] I'm not sure if prefetching is feasible for the above. And I'm assuming the consumer/producer for one of the IPoIB queues is why the spinlock is bouncing. So really not that much interesting to look at from a CPU perspective. :^( To help put the first data set into perspective, the next table is samples for all loads that took more than 4 cycles. This is essentially all levels of cache usage. Table is ordered by number of samples for a given IP, not how many cycles a particular IP used to load data. Later entries in the list may have consumed more cycles. I've truncated the list but can make the full list available. ionize:~# fgrep MSI /proc/interrupts ; pfmon31 --us-c --cpu-list=0 --pin-command --resolve-addr --smpl-module=dear-hist-itanium2 -e data_ear_cache_lat4 --long-smpl-periods=100 --smpl-periods-random=0xfff:10 --system-wide -k -- /opt/netperf/netperf -t TCP_STREAM -l 10 -H 10.0.1.81 -- -s 262144 -S 262144 -m 4064 > lat4.out ; fgrep MSI /proc/interrupts ------------ lat4.out -------------- TCP STREAM TEST to 10.0.1.81 Recv Send Send Socket Socket Message Elapsed Size Size Size Time Throughput bytes bytes bytes secs. 10^6bits/sec 262142 262142 4064 10.00 1562.12 added event set 0 # total_samples 2048 # instruction addr view # sorted by count # showing per per distinct value # %L2 : percentage of L1 misses that hit L2 # %L3 : percentage of L1 misses that hit L3 # %RAM : percentage of L1 misses that hit memory # L2 : 5 cycles load latency # L3 : 14 cycles load latency # sampling period: 100 # #count %self %cum %L2 %L3 %RAM instruction addr 161 7.86% 7.86% 0.00% 99.38% 0.62% 0xa0000001002e38e1 do_csum+0x161 137 6.69% 14.55% 57.66% 42.34% 0.00% 0xa0000001002e38e0 do_csum+0x160 46 2.25% 16.80% 8.70% 91.30% 0.00% 0xa000000100602930 tcp_transmit_skb+0xb10 42 2.05% 18.85% 0.00% 100.00% 0.00% 0xa0000001005e7550 tcp_sendmsg+0x10b0 40 1.95% 20.80% 0.00% 95.00% 5.00% 0xa00000010000aa70 rse_clear_invalid+0x60 36 1.76% 22.56% 0.00% 22.22% 77.78% 0xa0000001006b3580 _read_lock_bh+0x20 35 1.71% 24.27% 22.86% 71.43% 5.71% 0xa0000001002e2540 __copy_user+0x100 33 1.61% 25.88% 0.00% 84.85% 15.15% 0xa0000001002e2561 __copy_user+0x121 32 1.56% 27.44% 0.00% 90.62% 9.38% 0xa0000001002e2541 __copy_user+0x101 31 1.51% 28.96% 3.23% 96.77% 0.00% 0xa0000001005e7560 tcp_sendmsg+0x10c0 28 1.37% 30.32% 67.86% 32.14% 0.00% 0xa0000001005bbd51 nf_iterate+0x131 25 1.22% 31.54% 0.00% 32.00% 68.00% 0xa0000001006b3061 _spin_lock+0x21 23 1.12% 32.67% 4.35% 91.30% 4.35% 0xa0000001002e2560 __copy_user+0x120 19 0.93% 33.59% 0.00% 100.00% 0.00% 0xa0000001006b3950 _read_unlock_bh+0x10 18 0.88% 34.47% 0.00% 16.67% 83.33% 0xa0000001006b3291 _spin_lock_irqsave+0x31 18 0.88% 35.35% 61.11% 38.89% 0.00% 0xa000000100655891 ipt_do_table+0x191 17 0.83% 36.18% 100.00% 0.00% 0.00% 0xa0000001005bbcb1 nf_iterate+0x91 16 0.78% 36.96% 75.00% 25.00% 0.00% 0xa0000001006557f0 ipt_do_table+0xf0 ... # level 0 : counts=669 avg_cycles=0.0ms 32.67% # level 1 : counts=1230 avg_cycles=0.0ms 60.06% # level 2 : counts=149 avg_cycles=0.0ms 7.28% grant From iod00d at hp.com Sat Jan 22 00:31:50 2005 From: iod00d at hp.com (Grant Grundler) Date: Sat, 22 Jan 2005 00:31:50 -0800 Subject: [openib-general] ip over ib throughtput In-Reply-To: <20050113013406.GA16755@esmail.cup.hp.com> References: <20041229134351.GA3486@mellanox.co.il> <20041229135347.GB3486@mellanox.co.il> <00a101c4f296$3cf3bfc0$8000000a@blorp> <1104872804.1352.50.camel@localhost> <52mzvo52a0.fsf@topspin.com> <20050113013406.GA16755@esmail.cup.hp.com> Message-ID: <20050122083150.GD8137@esmail.cup.hp.com> On Wed, Jan 12, 2005 at 05:34:06PM -0800, Grant Grundler wrote: > RX2600 sending TCP_Stream packets to RX4640 via topspin 12port switch. > Rx2600 has "Low Profile" (Cougarcub) and rx4640 has "Cougar" installed > in "dual rope" slots. > > /opt/netperf/netperf -l 60 -H 10.0.1.81 -t TCP_STREAM -i 5,2 -I 99,5 -- -m 8192 -s 262144 -S 262144 ... > _spin_unlock_irqrestore is a clue we are spending time in > interrupt handlers and that isn't getting measured. David Mosberger gently reminded me he had added "-i" option to monitor interrupt context as well. Here is another run with "-i". ionize:~# q-syscollect -i -k /opt/netperf/netperf -l 60 -H 10.0.1.81 -t TCP_STREAM -- -m 8192 -s 262144 -S 262144 TCP STREAM TEST to 10.0.1.81 Recv Send Send Socket Socket Message Elapsed Size Size Size Time Throughput bytes bytes bytes secs. 10^6bits/sec 262142 262142 8192 60.00 1542.81 q-view .q/kernel-cpu0.info#0 | less Flat profile of CPU_CYCLES in kernel-cpu0.hist#0: Each histogram sample counts as 1.00034m seconds % time self cumul calls self/call tot/call name 27.91 16.69 16.69 - - - default_idle 5.48 3.27 19.96 - - - ipt_do_table 4.28 2.56 22.52 - - - do_csum 3.81 2.28 24.80 - - - __copy_user 2.53 1.51 26.32 - - - local_bh_enable 2.52 1.51 27.82 - - - tcp_transmit_skb 2.51 1.50 29.33 - - - nf_iterate 2.33 1.39 30.72 - - - mthca_poll_cq 2.19 1.31 32.03 - - - tcp_sendmsg 1.73 1.03 33.06 - - - mthca_post_send 1.48 0.88 33.95 - - - ip_queue_xmit 1.33 0.80 34.74 - - - ip_conntrack_in 1.31 0.79 35.53 - - - mthca_eq_int 1.23 0.73 36.26 - - - _spin_lock ... cpu1 was 99.87% of the time in default_idle. hth, grant From robert.j.woodruff at intel.com Sat Jan 22 10:34:41 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Sat, 22 Jan 2005 10:34:41 -0800 Subject: [openib-general] Default of MSI on when MSI support is configured into the kernel Message-ID: <1AC79F16F5C5284499BB9591B33D6F00035ABDBB@orsmsx408> Hi Roland, I just loaded the patch-linux-2.6.11-rc2 to load on my small cluster for testing. One question, I found that I have to modify things to turn on using MSI. Is there any reason that we cannot just change the mtcha driver to use MSI by default when CONFIG_PCI_MSI is configured in the kernel ? People that don't support or want to use MSI can always disable it when the build their kernel, or override the values when they do the modprobe. i.e., In mthca_main.c #ifdef CONFIG_PCI_MSI static int msi_x = 1; module_param(msi_x, int, 0444); MODULE_PARM_DESC(msi_x, "attempt to use MSI-X if nonzero"); static int msi = 1; module_param(msi, int, 0444); MODULE_PARM_DESC(msi, "attempt to use MSI if nonzero"); #else /* CONFIG_PCI_MSI */ #define msi_x (0) #define msi (0) #endif /* CONFIG_PCI_MSI */ From jim.ryan at intel.com Sat Jan 22 10:36:39 2005 From: jim.ryan at intel.com (Ryan, Jim) Date: Sat, 22 Jan 2005 10:36:39 -0800 Subject: [openib-general] Press release on the upcoming workshop for OpenIB Message-ID: The following press release went out 1/19 on Business Wire and was emailed to about 50 of the top editors and analysts that track InfiniBand. We hope you are making plans to attend this workshop, which promises to have a number of informative technical and marketing oriented session, and which will set the direction for OpenIB for the rest of the year. If you'd like more information, please contact me or Bill Boas, the Workshop Chairman (boas1 at llnl.gov) Thanks, Jim Ryan, Acting Chairman, OpenIB jim.ryan at intel.com . . . Press Release Source: The OpenIB Alliance The OpenIB Alliance Achieves Acceptance by Kernel.org for its Linux Software Stack Wednesday January 19, 7:00 pm ET OpenIB Developers Workshop February 6-9 SEATTLE--(BUSINESS WIRE)--Jan. 19, 2005--The OpenIB(TM) Alliance, an industry association founded to develop an open software stack for InfiniBand architecture on Linux, today announced the software stack was accepted by the Linux kernel community into the kernel.org repository. This will enable a single InfiniBand open source software environment for Linux customers who require a robust, resilient and manageable infrastructure for data center, grid and high performance computing. "We are well aware of the tremendous industry interest in a common Linux software stack for InfiniBand and designed these drivers to the rigid requirements of the Linux kernel community," said Roland Dreier, a developer for the Alliance at Topspin Communications, Inc. "In addition to efforts by my company, I want to recognize the other Alliance members, Voltaire and Intel, as well as customers Lawrence Livermore, Los Alamos and Sandia National Laboratories, for this achievement." "With our first goal completed, the OpenIB Alliance can now focus on the upper level protocols and APIs to ensure the wide adoption of the Infiniband architecture in data centers and clusters for high-performance, enterprise and grid computing," said Jim Ryan, marketing manager at Intel Corporation and chairman of the OpenIB Alliance. Developers Workshop Feb. 6-9 The OpenIB Alliance announced it will host the first Developers Workshop at The Lodge at Sonoma, February 6-9. Participation is open to all interested parties, including non-members, with a registration fee of $395. Session topics include: * On-going development of the OpenIB software stack. * The proposed OpenIB software architecture including support of open RDMA protocols and APIs. * Discussion by customers, vendors and developers of their requirements and directions for OpenIB software development. * The Department of Energy National Labs update on the OpenIB PathForward project. * OpenIB Alliance Annual General and Board of Directors meetings. * To register visit www.openib.org and click on Workshop. About the OpenIB Alliance The OpenIB Alliance is an industry association chartered to deliver a single open source Linux-based software stack for deploying InfiniBand. Founded in June 2004, the OpenIB Alliance is comprised of technology vendors and end user organizations including Dell; Engenio Information Technologies, Inc.; InfiniCon; Intel; Lawrence Livermore National Laboratory; Linux Networx; Mellanox Technologies; Los Alamos National Laboratory; Network Appliance; Oracle; Sandia National Laboratories; Silicon Graphics, Inc.; Sun Microsystems, Inc.; Topspin Communications; Veritas; and Voltaire. Membership is open to all companies with an interest in developing a common Linux implementation for InfiniBand and other open RDMA deployments. More information about the OpenIB Alliance is available at www.openib.org. * Names and titles are property of their respective owners. -------------- next part -------------- An HTML attachment was scrubbed... URL: From robert.j.woodruff at intel.com Sat Jan 22 10:44:41 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Sat, 22 Jan 2005 10:44:41 -0800 Subject: [openib-general] Press release on the upcoming workshop for OpenIB Message-ID: <1AC79F16F5C5284499BB9591B33D6F00035ABDBE@orsmsx408> >The following press release went out 1/19 on Business Wire and was emailed to about 50 >of the top editors and analysts that track InfiniBand. Cool, looks like people have picked up the story. I saw these on the Internet this morning. woody http://news.com.com/InfiniBand+support+in+latest+Linux/2110-7344_3-55438 34.html?part=rss&tag=5543834&subj=news.7344.10 http://uk.news.yahoo.com/050121/152/fat2f.html http://www.linuxelectrons.com/article.php?story=20050119190632443 __ From roland at topspin.com Sat Jan 22 13:04:13 2005 From: roland at topspin.com (Roland Dreier) Date: Sat, 22 Jan 2005 13:04:13 -0800 Subject: [openib-general] Default of MSI on when MSI support is configured into the kernel In-Reply-To: <1AC79F16F5C5284499BB9591B33D6F00035ABDBB@orsmsx408> (Robert J. Woodruff's message of "Sat, 22 Jan 2005 10:34:41 -0800") References: <1AC79F16F5C5284499BB9591B33D6F00035ABDBB@orsmsx408> Message-ID: <52ekgdp44y.fsf@topspin.com> Robert> Is there any reason that we cannot just change the mtcha Robert> driver to use MSI by default when CONFIG_PCI_MSI is Robert> configured in the kernel ? People that don't support or Robert> want to use MSI can always disable it when the build their Robert> kernel, or override the values when they do the modprobe. It seems that at least the latest Fedora kernels for x86-64 turns on CONFIG_PCI_MSI, which means that turning MSI on would break things on Opteron systems using AMD-8131 PCI-X bridges. I think having the default be safe but possibly not maximum peformance is better than being broken on some systems. It should be possible to extend the interrupt test in the latest driver to set MSI automatically. Eventually I may code this up, or someone industrious can do it sooner. - R. From roland at topspin.com Sat Jan 22 13:16:28 2005 From: roland at topspin.com (Roland Dreier) Date: Sat, 22 Jan 2005 13:16:28 -0800 Subject: [openib-general] userspace access Message-ID: <528y6lp3kj.fsf@topspin.com> I checked in a lot of changes to the roland-uverbs branch that extend the userspace verbs to the point of being able to create PDs for userspace. Rather than post patches (which aren't very enlightening because of the scope and type of the changes) I would ask people to review the code under https://openib.org/svn/gen2/branches/roland-uverbs/src/linux-kernel/infiniband Most notably, I added a "struct uobject" type and a "struct uobject *" member to the PD, CQ, etc structs. This holds a pointer to the user context, a link into a list used for cleanup, etc. Also, Michael and others working on mthca, it would probably better to base any mthca changes on the roland-uverbs branch to avoid merging problems later. - R. From gdror at mellanox.co.il Sat Jan 22 13:55:07 2005 From: gdror at mellanox.co.il (Dror Goldenberg) Date: Sat, 22 Jan 2005 23:55:07 +0200 Subject: [openib-general] RFC CM peer to peer connections Message-ID: <506C3D7B14CDD411A52C00025558DED606EBC027@mtlex01.yok.mtl.com> > From: Libor Michalek [mailto:libor at topspin.com] > Sent: Friday, January 21, 2005 8:27 PM > > > On Thu, Jan 20, 2005 at 02:57:11PM -0800, Sean Hefty wrote: > > What priority should peer to peer connection support be in the CM? I > > have a general framework in place, but I don't think what's > > there will work when connecting in loopback. > > Since no-one else has answered, I would say low priority. :) > > -Libor I think that ideally IPoIB connected mode should be using peer to peer. Apparently, the RFC draft doesn't support it, because the service ID is derived from the QP number which can be different in each node. SDP doesn't support peer to peer, as opposed to TCP. We excluded this mode from SDP spec, because it does not work with CM peer to peer. That'll be a long way of saying that there aren't any protocols I know of that will be using peer to peer. -Dror -------------- next part -------------- An HTML attachment was scrubbed... URL: From mst at mellanox.co.il Sat Jan 22 14:00:17 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 23 Jan 2005 00:00:17 +0200 Subject: [openib-general] Re: MMIO reads for IPoIB w/MSI-X In-Reply-To: <20050122071503.GA8137@esmail.cup.hp.com> References: <20050122071503.GA8137@esmail.cup.hp.com> Message-ID: <20050122220017.GA19455@mellanox.co.il> Quoting r. Grant Grundler : > Subject: MMIO reads for IPoIB w/MSI-X > > Hi all, > In trying to understand why netperf TCP_STREAM sucks on the ia64 platform > I'm slowly collecting more data. I didn't really have any time this > week to poke at this issue. > > The follow data confirms in MSI-X mode mthca is essentially doing > no MMIO reads. > An additional advantage of MSI-X is that interrupts are not shared. But how is this related to ia64? -- I dont speak for Mellanox. From mshefty at ichips.intel.com Sat Jan 22 15:28:11 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Sat, 22 Jan 2005 15:28:11 -0800 Subject: [openib-general] [PATCH] CM: serialize callbacks to a single client Message-ID: <20050122152811.6a351b6c.mshefty@ichips.intel.com> Hopefully, this patch will serialize all callbacks to a single CM client. signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1624) +++ core/cm.c (working copy) @@ -111,10 +111,14 @@ struct cm_id_private { u8 max_cm_retries; u8 passive; u8 peer_to_peer; + + struct list_head work_list; + atomic_t work_count; }; -struct cm_recv_work { +struct cm_work { struct work_struct work; + struct list_head list; struct cm_port *port; struct ib_mad_recv_wc *mad_recv_wc; struct ib_cm_event cm_event; @@ -505,6 +509,8 @@ struct ib_cm_id *ib_create_cm_id(ib_cm_h spin_lock_init(&cm_id_priv->lock); init_waitqueue_head(&cm_id_priv->wait); + INIT_LIST_HEAD(&cm_id_priv->work_list); + atomic_set(&cm_id_priv->work_count, -1); atomic_set(&cm_id_priv->refcount, 1); return &cm_id_priv->id; @@ -514,9 +520,28 @@ error: } EXPORT_SYMBOL(ib_create_cm_id); +static struct cm_work * cm_dequeue_work(struct cm_id_private *cm_id_priv) +{ + struct cm_work *work; + + if (list_empty(&cm_id_priv->work_list)) + return NULL; + + work = list_entry(cm_id_priv->work_list.next, struct cm_work, list); + list_del(&work->list); + return work; +} + +static void cm_free_work(struct cm_work *work) +{ + ib_free_recv_mad(work->mad_recv_wc); + kfree(work); +} + int ib_destroy_cm_id(struct ib_cm_id *cm_id) { struct cm_id_private *cm_id_priv; + struct cm_work *work; unsigned long flags; cm_id_priv = container_of(cm_id, struct cm_id_private, id); @@ -575,6 +600,8 @@ retest: cm_free_id(cm_id->local_id); atomic_dec(&cm_id_priv->refcount); wait_event(cm_id_priv->wait, !atomic_read(&cm_id_priv->refcount)); + while ((work = cm_dequeue_work(cm_id_priv)) != NULL) + cm_free_work(work); kfree(cm_id_priv); return 0; } @@ -823,7 +850,7 @@ static inline void cm_format_paths_from_ primary_path->packet_life_time_selector = IB_SA_EQ; primary_path->packet_life_time = cm_req_get_primary_local_ack_timeout(req_msg); - + if (alt_path) { memset(alt_path, 0, sizeof *alt_path); alt_path->dgid = req_msg->alt_local_gid; @@ -846,22 +873,81 @@ static inline void cm_format_paths_from_ } } -static void cm_req_handler(struct cm_recv_work *recv_work) +static void cm_format_req_event(struct cm_work *work, + struct ib_cm_id *listen_id) +{ + struct cm_req_msg *req_msg; + struct ib_cm_req_event_param *param; + + req_msg = (struct cm_req_msg *)work->mad_recv_wc->recv_buf.mad; + work->cm_event.event = IB_CM_REQ_RECEIVED; + param = &work->cm_event.param.req_rcvd; + param->listen_id = listen_id; + param->device = work->port->mad_agent->device; + param->port = work->port->port_num; + param->primary_path = &work->path[0]; + if (req_msg->alt_local_lid) + param->alternate_path = &work->path[1]; + else + param->alternate_path = NULL; + cm_format_paths_from_req(param->primary_path, param->alternate_path, + req_msg); + param->remote_ca_guid = req_msg->local_ca_guid; + param->remote_qkey = be32_to_cpu(req_msg->local_qkey); + param->remote_qpn = be32_to_cpu(cm_req_get_local_qpn(req_msg)); + param->qp_type = cm_req_get_qp_type(req_msg); + param->starting_psn = be32_to_cpu(cm_req_get_starting_psn(req_msg)); + param->responder_resources = cm_req_get_resp_res(req_msg); + param->initiator_depth = cm_req_get_init_depth(req_msg); + param->local_cm_response_timeout = + cm_req_get_remote_resp_timeout(req_msg); + param->flow_control = cm_req_get_flow_ctrl(req_msg); + param->remote_cm_response_timeout = + cm_req_get_local_resp_timeout(req_msg); + param->retry_count = cm_req_get_retry_count(req_msg); + param->rnr_retry_count = cm_req_get_rnr_retry_count(req_msg); + param->srq = cm_req_get_srq(req_msg); + work->cm_event.private_data = &req_msg->private_data; +} + +static void cm_process_work(struct cm_id_private *cm_id_priv, + struct cm_work *work) +{ + unsigned long flags; + int ret; + + /* We will typically only have the current event to report. */ + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &work->cm_event); + cm_free_work(work); + + while (!ret && !atomic_add_negative(-1, &cm_id_priv->work_count)) { + spin_lock_irqsave(&cm_id_priv->lock, flags); + work = cm_dequeue_work(cm_id_priv); + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + BUG_ON(!work); + ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, + &work->cm_event); + cm_free_work(work); + } + cm_deref_id(cm_id_priv); + if (ret) + ib_destroy_cm_id(&cm_id_priv->id); +} + +static int cm_req_handler(struct cm_work *work) { struct ib_cm_id *cm_id; struct cm_id_private *cm_id_priv, *cur_cm_id_priv; struct cm_req_msg *req_msg; unsigned long flags; - struct ib_cm_req_event_param *param; struct ib_wc *wc; - int ret; cm_id = ib_create_cm_id(NULL, NULL); if (IS_ERR(cm_id)) - return; + return PTR_ERR(cm_id); cm_id_priv = container_of(cm_id, struct cm_id_private, id); - req_msg = (struct cm_req_msg *)recv_work->mad_recv_wc->recv_buf.mad; + req_msg = (struct cm_req_msg *)work->mad_recv_wc->recv_buf.mad; cm_id_priv->remote_ca_guid = req_msg->local_ca_guid; cm_id_priv->id.remote_id = req_msg->local_comm_id; cm_id_priv->passive = 1; @@ -878,6 +964,9 @@ static void cm_req_handler(struct cm_rec cur_cm_id_priv = cm_find_listen(req_msg->service_id); if (cur_cm_id_priv) { atomic_inc(&cur_cm_id_priv->refcount); + atomic_inc(&cm_id_priv->refcount); + cm_id_priv->id.state = IB_CM_REQ_RCVD; + atomic_inc(&cm_id_priv->work_count); cm_insert_remote_id(cm_id_priv); spin_unlock_irqrestore(&cm.lock, flags); @@ -885,7 +974,6 @@ static void cm_req_handler(struct cm_rec cm_id_priv->id.context = cur_cm_id_priv->id.context; cm_id_priv->id.service_id = req_msg->service_id; cm_id_priv->id.service_mask = ~0ULL; - cm_id_priv->id.state = IB_CM_REQ_RCVD; } else { /* Search for a peer request. */ /* todo: fix peer-to-peer */ @@ -894,7 +982,7 @@ static void cm_req_handler(struct cm_rec /* todo: reject with no match */ goto out; } - if (cm_is_active_peer(recv_work->port->ca_guid, + if (cm_is_active_peer(work->port->ca_guid, req_msg->local_ca_guid, cur_cm_id_priv->local_qpn, cm_req_get_local_qpn(req_msg))) { @@ -910,56 +998,29 @@ static void cm_req_handler(struct cm_rec cm_insert_remote_id(cur_cm_id_priv); spin_unlock_irqrestore(&cm.lock, flags); - ib_cancel_mad(recv_work->port->mad_agent, + ib_cancel_mad(work->port->mad_agent, (unsigned long) cur_cm_id_priv->msg); ib_destroy_cm_id(&cm_id_priv->id); cm_id_priv = cur_cm_id_priv; } - cm_id_priv->port = recv_work->port; + cm_id_priv->port = work->port; cm_id_priv->timeout_ms = cm_convert_to_ms( cm_req_get_local_resp_timeout(req_msg)); cm_id_priv->max_cm_retries = cm_req_get_max_cm_retries(req_msg); cm_id_priv->remote_qpn = cm_req_get_local_qpn(req_msg); cm_id_priv->remote_port_gid = req_msg->primary_local_gid; - wc = recv_work->mad_recv_wc->wc; + wc = work->mad_recv_wc->wc; cm_id_priv->pkey_index = wc->pkey_index; - cm_set_ah_attr(&cm_id_priv->ah_attr, recv_work->port->port_num, + cm_set_ah_attr(&cm_id_priv->ah_attr, work->port->port_num, wc->slid, wc->sl, wc->dlid_path_bits); - recv_work->cm_event.event = IB_CM_REQ_RECEIVED; - param = &recv_work->cm_event.param.req_rcvd; - param->listen_id = &cur_cm_id_priv->id; - param->device = recv_work->port->mad_agent->device; - param->port = recv_work->port->port_num; - param->primary_path = &recv_work->path[0]; - if (req_msg->alt_local_lid) - param->alternate_path = &recv_work->path[1]; - else - param->alternate_path = NULL; - cm_format_paths_from_req(param->primary_path, param->alternate_path, - req_msg); - param->remote_ca_guid = req_msg->local_ca_guid; - param->remote_qkey = be32_to_cpu(req_msg->local_qkey); - param->remote_qpn = be32_to_cpu(cm_id_priv->remote_qpn); - param->qp_type = cm_req_get_qp_type(req_msg); - param->starting_psn = be32_to_cpu(cm_req_get_starting_psn(req_msg)); - param->responder_resources = cm_req_get_resp_res(req_msg); - param->initiator_depth = cm_req_get_init_depth(req_msg); - param->local_cm_response_timeout = - cm_req_get_remote_resp_timeout(req_msg); - param->flow_control = cm_req_get_flow_ctrl(req_msg); - param->remote_cm_response_timeout = - cm_req_get_local_resp_timeout(req_msg); - param->retry_count = cm_req_get_retry_count(req_msg); - param->rnr_retry_count = cm_req_get_rnr_retry_count(req_msg); - param->srq = cm_req_get_srq(req_msg); - recv_work->cm_event.private_data = &req_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); + cm_format_req_event(work, &cur_cm_id_priv->id); + cm_process_work(cm_id_priv, work); cm_deref_id(cur_cm_id_priv); - if (!ret) - return; + return 0; out: ib_destroy_cm_id(&cm_id_priv->id); + return -EINVAL; } static void cm_format_rep(struct cm_rep_msg *rep_msg, @@ -1120,18 +1181,42 @@ out: } EXPORT_SYMBOL(ib_send_cm_rtu); -static void cm_rep_handler(struct cm_recv_work *recv_work) +static void cm_format_rep_event(struct cm_work *work) { - struct cm_id_private *cm_id_priv; struct cm_rep_msg *rep_msg; struct ib_cm_rep_event_param *param; + + rep_msg = (struct cm_rep_msg *)work->mad_recv_wc->recv_buf.mad; + work->cm_event.event = IB_CM_REP_RECEIVED; + param = &work->cm_event.param.rep_rcvd; + param->remote_ca_guid = rep_msg->local_ca_guid; + param->remote_qkey = be32_to_cpu(rep_msg->local_qkey); + param->remote_qpn = be32_to_cpu(cm_rep_get_local_qpn(rep_msg)); + param->starting_psn = be32_to_cpu(cm_rep_get_starting_psn(rep_msg)); + param->responder_resources = rep_msg->resp_resources; + param->initiator_depth = rep_msg->initiator_depth; + param->target_ack_delay = cm_rep_get_target_ack_delay(rep_msg); + param->failover_accepted = cm_rep_get_failover(rep_msg); + param->flow_control = cm_rep_get_flow_ctrl(rep_msg); + param->rnr_retry_count = cm_rep_get_rnr_retry_count(rep_msg); + param->srq = cm_rep_get_srq(rep_msg); + work->cm_event.private_data = &rep_msg->private_data; +} + +static int cm_rep_handler(struct cm_work *work) +{ + struct cm_id_private *cm_id_priv; + struct cm_rep_msg *rep_msg; unsigned long flags; + u64 wr_id; int ret; - rep_msg = (struct cm_rep_msg *)recv_work->mad_recv_wc->recv_buf.mad; + rep_msg = (struct cm_rep_msg *)work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(rep_msg->remote_comm_id); if (!cm_id_priv) - return; + return -EINVAL; + + cm_format_rep_event(work); spin_lock_irqsave(&cm_id_priv->lock, flags); switch (cm_id_priv->id.state) { @@ -1147,10 +1232,9 @@ static void cm_rep_handler(struct cm_rec goto out; } cm_id_priv->id.state = IB_CM_REP_RCVD; - spin_unlock_irqrestore(&cm_id_priv->lock, flags); - - ib_cancel_mad(recv_work->port->mad_agent, - (unsigned long) cm_id_priv->msg); + cm_id_priv->id.remote_id = rep_msg->local_comm_id; + cm_id_priv->remote_ca_guid = rep_msg->local_ca_guid; + cm_id_priv->remote_qpn = cm_rep_get_local_qpn(rep_msg); /* todo: handle peer_to_peer if (cm_id_priv->peer_to_peer) { @@ -1161,44 +1245,38 @@ static void cm_rep_handler(struct cm_rec } */ - cm_id_priv->id.remote_id = rep_msg->local_comm_id; - cm_id_priv->remote_ca_guid = rep_msg->local_ca_guid; - cm_id_priv->remote_qpn = cm_rep_get_local_qpn(rep_msg); + wr_id = (unsigned long) cm_id_priv->msg; + ret = atomic_inc_and_test(&cm_id_priv->work_count); + if (!ret) + list_add_tail(&work->list, &cm_id_priv->work_list); + spin_unlock_irqrestore(&cm_id_priv->lock, flags); - recv_work->cm_event.event = IB_CM_REP_RECEIVED; - param = &recv_work->cm_event.param.rep_rcvd; - param->remote_ca_guid = rep_msg->local_ca_guid; - param->remote_qkey = be32_to_cpu(rep_msg->local_qkey); - param->remote_qpn = be32_to_cpu(cm_id_priv->remote_qpn); - param->starting_psn = be32_to_cpu(cm_rep_get_starting_psn(rep_msg)); - param->responder_resources = rep_msg->resp_resources; - param->initiator_depth = rep_msg->initiator_depth; - param->target_ack_delay = cm_rep_get_target_ack_delay(rep_msg); - param->failover_accepted = cm_rep_get_failover(rep_msg); - param->flow_control = cm_rep_get_flow_ctrl(rep_msg); - param->rnr_retry_count = cm_rep_get_rnr_retry_count(rep_msg); - param->srq = cm_rep_get_srq(rep_msg); - recv_work->cm_event.private_data = &rep_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); - if (ret) { - atomic_dec(&cm_id_priv->refcount); - ib_destroy_cm_id(&cm_id_priv->id); - return; - } + ib_cancel_mad(cm_id_priv->port->mad_agent, wr_id); + if (ret) + cm_process_work(cm_id_priv, work); + else + cm_deref_id(cm_id_priv); + return 0; out: cm_deref_id(cm_id_priv); + return -EINVAL; } -static void cm_rtu_handler(struct cm_recv_work *recv_work) +static int cm_rtu_handler(struct cm_work *work) { struct cm_id_private *cm_id_priv; struct cm_rtu_msg *rtu_msg; unsigned long flags; + u64 wr_id; + int ret; - rtu_msg = (struct cm_rtu_msg *)recv_work->mad_recv_wc->recv_buf.mad; + rtu_msg = (struct cm_rtu_msg *)work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(rtu_msg->remote_comm_id); if (!cm_id_priv) - return; + return -EINVAL; + + work->cm_event.event = IB_CM_RTU_RECEIVED; + work->cm_event.private_data = &rtu_msg->private_data; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id_priv->id.state != IB_CM_REP_SENT && @@ -1207,16 +1285,22 @@ static void cm_rtu_handler(struct cm_rec goto out; } cm_id_priv->id.state = IB_CM_ESTABLISHED; - spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(recv_work->port->mad_agent, - (unsigned long) cm_id_priv->msg); + wr_id = (unsigned long) cm_id_priv->msg; + ret = atomic_inc_and_test(&cm_id_priv->work_count); + if (!ret) + list_add_tail(&work->list, &cm_id_priv->work_list); + spin_unlock_irqrestore(&cm_id_priv->lock, flags); - recv_work->cm_event.event = IB_CM_RTU_RECEIVED; - recv_work->cm_event.private_data = &rtu_msg->private_data; - cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); + ib_cancel_mad(cm_id_priv->port->mad_agent, wr_id); + if (ret) + cm_process_work(cm_id_priv, work); + else + cm_deref_id(cm_id_priv); + return 0; out: cm_deref_id(cm_id_priv); + return -EINVAL; } int ib_cm_establish(struct ib_cm_id *cm_id) @@ -1382,17 +1466,20 @@ out: } EXPORT_SYMBOL(ib_send_cm_drep); -static void cm_dreq_handler(struct cm_recv_work *recv_work) +static int cm_dreq_handler(struct cm_work *work) { struct cm_id_private *cm_id_priv; struct cm_dreq_msg *dreq_msg; unsigned long flags; int ret; - dreq_msg = (struct cm_dreq_msg *)recv_work->mad_recv_wc->recv_buf.mad; + dreq_msg = (struct cm_dreq_msg *)work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(dreq_msg->remote_comm_id); if (!cm_id_priv) - return; + return -EINVAL; + + work->cm_event.event = IB_CM_DREQ_RECEIVED; + work->cm_event.private_data = &dreq_msg->private_data; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id_priv->local_qpn != cm_dreq_get_remote_qpn(dreq_msg)) { @@ -1414,31 +1501,36 @@ static void cm_dreq_handler(struct cm_re goto out; } cm_id_priv->id.state = IB_CM_DREQ_RCVD; + ret = atomic_inc_and_test(&cm_id_priv->work_count); + if (!ret) + list_add_tail(&work->list, &cm_id_priv->work_list); spin_unlock_irqrestore(&cm_id_priv->lock, flags); - recv_work->cm_event.event = IB_CM_DREQ_RECEIVED; - recv_work->cm_event.private_data = &dreq_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); - if (ret) { - atomic_dec(&cm_id_priv->refcount); - ib_destroy_cm_id(&cm_id_priv->id); - return; - } + if (ret) + cm_process_work(cm_id_priv, work); + else + cm_deref_id(cm_id_priv); + return 0; out: cm_deref_id(cm_id_priv); + return -EINVAL; } -static void cm_drep_handler(struct cm_recv_work *recv_work) +static int cm_drep_handler(struct cm_work *work) { struct cm_id_private *cm_id_priv; struct cm_drep_msg *drep_msg; unsigned long flags; + u64 wr_id; int ret; - drep_msg = (struct cm_drep_msg *)recv_work->mad_recv_wc->recv_buf.mad; + drep_msg = (struct cm_drep_msg *)work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(drep_msg->remote_comm_id); if (!cm_id_priv) - return; + return -EINVAL; + + work->cm_event.event = IB_CM_DREP_RECEIVED; + work->cm_event.private_data = &drep_msg->private_data; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id_priv->id.state != IB_CM_DREQ_SENT) { @@ -1446,24 +1538,25 @@ static void cm_drep_handler(struct cm_re goto out; } cm_id_priv->id.state = IB_CM_TIMEWAIT; + + wr_id = (unsigned long) cm_id_priv->msg; + ret = atomic_inc_and_test(&cm_id_priv->work_count); + if (!ret) + list_add_tail(&work->list, &cm_id_priv->work_list); spin_unlock_irqrestore(&cm_id_priv->lock, flags); + ib_cancel_mad(cm_id_priv->port->mad_agent, wr_id); if (cm_id_priv->passive) cm_remove_remote_id(cm_id_priv); - ib_cancel_mad(recv_work->port->mad_agent, - (unsigned long) cm_id_priv->msg); - - recv_work->cm_event.event = IB_CM_DREP_RECEIVED; - recv_work->cm_event.private_data = &drep_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); - if (ret) { - atomic_dec(&cm_id_priv->refcount); - ib_destroy_cm_id(&cm_id_priv->id); - return; - } + if (ret) + cm_process_work(cm_id_priv, work); + else + cm_deref_id(cm_id_priv); + return 0; out: cm_deref_id(cm_id_priv); + return -EINVAL; } static void cm_format_rej(struct cm_rej_msg *rej_msg, @@ -1560,9 +1653,10 @@ out: } EXPORT_SYMBOL(ib_send_cm_rej); -static void cm_rej_handler(struct cm_recv_work *recv_work) +static int cm_rej_handler(struct cm_work *work) { /* todo: write reject handler */ + return -EINVAL; } static void cm_format_mra(struct cm_mra_msg *mra_msg, @@ -1665,11 +1759,12 @@ out: } EXPORT_SYMBOL(ib_send_cm_mra); -static void cm_mra_handler(struct cm_recv_work *recv_work) +static int cm_mra_handler(struct cm_work *work) { /* todo: write MRA handler */ /* todo: add timeout mechanism separate from retries for receiver of MRA */ + return -EINVAL; } static void cm_format_lap(struct cm_lap_msg *lap_msg, @@ -1771,7 +1866,7 @@ static void cm_format_path_from_lap(stru path->packet_life_time = cm_lap_get_local_ack_timeout(lap_msg); } -static void cm_lap_handler(struct cm_recv_work *recv_work) +static int cm_lap_handler(struct cm_work *work) { struct cm_id_private *cm_id_priv; struct cm_lap_msg *lap_msg; @@ -1780,10 +1875,16 @@ static void cm_lap_handler(struct cm_rec int ret; /* todo: verify LAP request and send reject APR if invalid. */ - lap_msg = (struct cm_lap_msg *)recv_work->mad_recv_wc->recv_buf.mad; + lap_msg = (struct cm_lap_msg *)work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(lap_msg->remote_comm_id); if (!cm_id_priv) - return; + return -EINVAL; + + work->cm_event.event = IB_CM_LAP_RECEIVED; + param = &work->cm_event.param.lap_rcvd; + param->alternate_path = &work->path[0]; + cm_format_path_from_lap(param->alternate_path, lap_msg); + work->cm_event.private_data = &lap_msg->private_data; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id_priv->id.state != IB_CM_ESTABLISHED && @@ -1792,21 +1893,19 @@ static void cm_lap_handler(struct cm_rec goto out; } cm_id_priv->id.lap_state = IB_CM_LAP_RCVD; + ret = atomic_inc_and_test(&cm_id_priv->work_count); + if (!ret) + list_add_tail(&work->list, &cm_id_priv->work_list); spin_unlock_irqrestore(&cm_id_priv->lock, flags); - recv_work->cm_event.event = IB_CM_LAP_RECEIVED; - param = &recv_work->cm_event.param.lap_rcvd; - param->alternate_path = &recv_work->path[0]; - cm_format_path_from_lap(param->alternate_path, lap_msg); - recv_work->cm_event.private_data = &lap_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); - if (ret) { - atomic_dec(&cm_id_priv->refcount); - ib_destroy_cm_id(&cm_id_priv->id); - return; - } + if (ret) + cm_process_work(cm_id_priv, work); + else + cm_deref_id(cm_id_priv); + return 0; out: cm_deref_id(cm_id_priv); + return -EINVAL; } static void cm_format_apr(struct cm_apr_msg *apr_msg, @@ -1879,17 +1978,24 @@ out: } EXPORT_SYMBOL(ib_send_cm_apr); -static void cm_apr_handler(struct cm_recv_work *recv_work) +static int cm_apr_handler(struct cm_work *work) { struct cm_id_private *cm_id_priv; struct cm_apr_msg *apr_msg; - struct cm_msg *msg; unsigned long flags; + u64 wr_id; + int ret; - apr_msg = (struct cm_apr_msg *)recv_work->mad_recv_wc->recv_buf.mad; + apr_msg = (struct cm_apr_msg *)work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(apr_msg->remote_comm_id); if (!cm_id_priv) - return; /* Unmatched reply. */ + return -EINVAL; /* Unmatched reply. */ + + work->cm_event.event = IB_CM_APR_RECEIVED; + work->cm_event.param.apr_rcvd.ap_status = apr_msg->ap_status; + work->cm_event.param.apr_rcvd.apr_info = &apr_msg->info; + work->cm_event.param.apr_rcvd.info_len = apr_msg->info_length; + work->cm_event.private_data = &apr_msg->private_data; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id_priv->id.state != IB_CM_ESTABLISHED || @@ -1899,21 +2005,24 @@ static void cm_apr_handler(struct cm_rec goto out; } cm_id_priv->id.lap_state = IB_CM_LAP_IDLE; - msg = cm_id_priv->msg; + wr_id = (unsigned long) cm_id_priv->msg; cm_id_priv->msg = NULL; + + ret = atomic_inc_and_test(&cm_id_priv->work_count); + if (!ret) + list_add_tail(&work->list, &cm_id_priv->work_list); spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(recv_work->port->mad_agent, - (unsigned long) msg); + ib_cancel_mad(cm_id_priv->port->mad_agent, wr_id); - recv_work->cm_event.event = IB_CM_APR_RECEIVED; - recv_work->cm_event.param.apr_rcvd.ap_status = apr_msg->ap_status; - recv_work->cm_event.param.apr_rcvd.apr_info = &apr_msg->info; - recv_work->cm_event.param.apr_rcvd.info_len = apr_msg->info_length; - recv_work->cm_event.private_data = &apr_msg->private_data; - cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); + if (ret) + cm_process_work(cm_id_priv, work); + else + cm_deref_id(cm_id_priv); + return 0; out: cm_deref_id(cm_id_priv); + return -EINVAL; } static void cm_format_sidr_req(struct cm_sidr_req_msg *sidr_req_msg, @@ -1992,28 +2101,45 @@ out: } EXPORT_SYMBOL(ib_send_cm_sidr_req); -static void cm_sidr_req_handler(struct cm_recv_work *recv_work) +static void cm_format_sidr_req_event(struct cm_work *work, + struct ib_cm_id *listen_id) +{ + struct cm_sidr_req_msg *sidr_req_msg; + struct ib_cm_sidr_req_event_param *param; + + sidr_req_msg = (struct cm_sidr_req_msg *) + work->mad_recv_wc->recv_buf.mad; + work->cm_event.event = IB_CM_SIDR_REQ_RECEIVED; + param = &work->cm_event.param.sidr_req_rcvd; + param->pkey = sidr_req_msg->pkey; + param->listen_id = listen_id; + param->device = work->port->mad_agent->device; + param->port = work->port->port_num; + work->cm_event.private_data = &sidr_req_msg->private_data; +} + +static int cm_sidr_req_handler(struct cm_work *work) { struct ib_cm_id *cm_id; struct cm_id_private *cm_id_priv, *cur_cm_id_priv; struct cm_sidr_req_msg *sidr_req_msg; - struct ib_cm_sidr_req_event_param *param; struct ib_wc *wc; unsigned long flags; - int ret; cm_id = ib_create_cm_id(NULL, NULL); if (IS_ERR(cm_id)) - return; + return PTR_ERR(cm_id); cm_id_priv = container_of(cm_id, struct cm_id_private, id); /* Record SGID/SLID and request ID for lookup. */ sidr_req_msg = (struct cm_sidr_req_msg *) - recv_work->mad_recv_wc->recv_buf.mad; - wc = recv_work->mad_recv_wc->wc; + work->mad_recv_wc->recv_buf.mad; + wc = work->mad_recv_wc->wc; cm_id_priv->remote_port_gid.global.subnet_prefix = wc->slid; cm_id_priv->remote_port_gid.global.interface_id = 0; cm_id_priv->id.remote_id = sidr_req_msg->request_id; + cm_id_priv->id.state = IB_CM_SIDR_REQ_RCVD; + atomic_inc(&cm_id_priv->work_count); spin_lock_irqsave(&cm.lock, flags); cur_cm_id_priv = cm_insert_remote_sidr(cm_id_priv); @@ -2035,25 +2161,18 @@ static void cm_sidr_req_handler(struct c cm_id_priv->id.context = cur_cm_id_priv->id.context; cm_id_priv->id.service_id = sidr_req_msg->service_id; cm_id_priv->id.service_mask = ~0ULL; - cm_id_priv->id.state = IB_CM_SIDR_REQ_RCVD; - cm_id_priv->port = recv_work->port; + cm_id_priv->port = work->port; cm_id_priv->pkey_index = wc->pkey_index; - cm_set_ah_attr(&cm_id_priv->ah_attr, recv_work->port->port_num, + cm_set_ah_attr(&cm_id_priv->ah_attr, work->port->port_num, wc->slid, wc->sl, wc->dlid_path_bits); - recv_work->cm_event.event = IB_CM_SIDR_REQ_RECEIVED; - param = &recv_work->cm_event.param.sidr_req_rcvd; - param->pkey = sidr_req_msg->pkey; - param->listen_id = &cur_cm_id_priv->id; - param->device = recv_work->port->mad_agent->device; - param->port = recv_work->port->port_num; - recv_work->cm_event.private_data = &sidr_req_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); + cm_format_sidr_req_event(work, &cur_cm_id_priv->id); + cm_process_work(cm_id_priv, work); cm_deref_id(cur_cm_id_priv); - if (!ret) - return; + return 0; out: ib_destroy_cm_id(&cm_id_priv->id); + return -EINVAL; } static void cm_format_sidr_rep(struct cm_sidr_rep_msg *sidr_rep_msg, @@ -2122,19 +2241,34 @@ out: } EXPORT_SYMBOL(ib_send_cm_sidr_rep); -static void cm_sidr_rep_handler(struct cm_recv_work *recv_work) +static void cm_format_sidr_rep_event(struct cm_work *work) { - struct cm_id_private *cm_id_priv; struct cm_sidr_rep_msg *sidr_rep_msg; struct ib_cm_sidr_rep_event_param *param; + + sidr_rep_msg = (struct cm_sidr_rep_msg *) + work->mad_recv_wc->recv_buf.mad; + work->cm_event.event = IB_CM_SIDR_REP_RECEIVED; + param = &work->cm_event.param.sidr_rep_rcvd; + param->status = sidr_rep_msg->status; + param->qkey = be32_to_cpu(sidr_rep_msg->qkey); + param->qpn = be32_to_cpu(cm_sidr_rep_get_qpn(sidr_rep_msg)); + param->info = &sidr_rep_msg->info; + param->info_len = sidr_rep_msg->info_length; + work->cm_event.private_data = &sidr_rep_msg->private_data; +} + +static int cm_sidr_rep_handler(struct cm_work *work) +{ + struct cm_sidr_rep_msg *sidr_rep_msg; + struct cm_id_private *cm_id_priv; unsigned long flags; - int ret; sidr_rep_msg = (struct cm_sidr_rep_msg *) - recv_work->mad_recv_wc->recv_buf.mad; + work->mad_recv_wc->recv_buf.mad; cm_id_priv = cm_acquire_id_by_local_id(sidr_rep_msg->request_id); if (!cm_id_priv) - return; /* Unmatched reply. */ + return -EINVAL; /* Unmatched reply. */ spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id_priv->id.state != IB_CM_SIDR_REQ_SENT) { @@ -2144,25 +2278,14 @@ static void cm_sidr_rep_handler(struct c cm_id_priv->id.state = IB_CM_IDLE; spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(recv_work->port->mad_agent, + ib_cancel_mad(cm_id_priv->port->mad_agent, (unsigned long) cm_id_priv->msg); - - recv_work->cm_event.event = IB_CM_SIDR_REP_RECEIVED; - param = &recv_work->cm_event.param.sidr_rep_rcvd; - param->status = sidr_rep_msg->status; - param->qkey = be32_to_cpu(sidr_rep_msg->qkey); - param->qpn = be32_to_cpu(cm_sidr_rep_get_qpn(sidr_rep_msg)); - param->info = &sidr_rep_msg->info; - param->info_len = sidr_rep_msg->info_length; - recv_work->cm_event.private_data = &sidr_rep_msg->private_data; - ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &recv_work->cm_event); - if (ret) { - atomic_dec(&cm_id_priv->refcount); - ib_destroy_cm_id(&cm_id_priv->id); - return; - } + cm_format_sidr_rep_event(work); + cm_process_work(cm_id_priv, work); + return 0; out: cm_deref_id(cm_id_priv); + return -EINVAL; } static void cm_process_send_error(struct cm_msg *msg, @@ -2261,55 +2384,57 @@ static void cm_send_handler(struct ib_ma } } -static void cm_recv_work_handler(void *data) +static void cm_work_handler(void *data) { - struct cm_recv_work *recv_work = data; + struct cm_work *work = data; + int ret; - switch (recv_work->mad_recv_wc->recv_buf.mad->mad_hdr.attr_id) { + switch (work->mad_recv_wc->recv_buf.mad->mad_hdr.attr_id) { case CM_REQ_ATTR_ID: - cm_req_handler(recv_work); + ret = cm_req_handler(work); break; case CM_MRA_ATTR_ID: - cm_mra_handler(recv_work); + ret = cm_mra_handler(work); break; case CM_REJ_ATTR_ID: - cm_rej_handler(recv_work); + ret = cm_rej_handler(work); break; case CM_REP_ATTR_ID: - cm_rep_handler(recv_work); + ret = cm_rep_handler(work); break; case CM_RTU_ATTR_ID: - cm_rtu_handler(recv_work); + ret = cm_rtu_handler(work); break; case CM_DREQ_ATTR_ID: - cm_dreq_handler(recv_work); + ret = cm_dreq_handler(work); break; case CM_DREP_ATTR_ID: - cm_drep_handler(recv_work); + ret = cm_drep_handler(work); break; case CM_SIDR_REQ_ATTR_ID: - cm_sidr_req_handler(recv_work); + ret = cm_sidr_req_handler(work); break; case CM_SIDR_REP_ATTR_ID: - cm_sidr_rep_handler(recv_work); + ret = cm_sidr_rep_handler(work); break; case CM_LAP_ATTR_ID: - cm_lap_handler(recv_work); + ret = cm_lap_handler(work); break; case CM_APR_ATTR_ID: - cm_apr_handler(recv_work); + ret = cm_apr_handler(work); break; default: + ret = -EINVAL; break; } - ib_free_recv_mad(recv_work->mad_recv_wc); - kfree(recv_work); + if (ret) + cm_free_work(work); } static void cm_recv_handler(struct ib_mad_agent *mad_agent, struct ib_mad_recv_wc *mad_recv_wc) { - struct cm_recv_work *recv_work; + struct cm_work *work; int paths; switch (mad_recv_wc->recv_buf.mad->mad_hdr.attr_id) { @@ -2325,17 +2450,17 @@ static void cm_recv_handler(struct ib_ma break; } - recv_work = kmalloc(sizeof *recv_work + sizeof(struct ib_sa_path_rec) * - paths, GFP_KERNEL); - if (!recv_work) { + work = kmalloc(sizeof *work + sizeof(struct ib_sa_path_rec) * paths, + GFP_KERNEL); + if (!work) { ib_free_recv_mad(mad_recv_wc); return; } - INIT_WORK(&recv_work->work, cm_recv_work_handler, recv_work); - recv_work->mad_recv_wc = mad_recv_wc; - recv_work->port = (struct cm_port *)mad_agent->context; - queue_work(cm.wq, &recv_work->work); + INIT_WORK(&work->work, cm_work_handler, work); + work->mad_recv_wc = mad_recv_wc; + work->port = (struct cm_port *)mad_agent->context; + queue_work(cm.wq, &work->work); } static u64 cm_get_ca_guid(struct ib_device *device) From mshefty at ichips.intel.com Sat Jan 22 16:32:14 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Sat, 22 Jan 2005 16:32:14 -0800 Subject: [openib-general] bug loading mthca after cm Message-ID: <20050122163214.32fc81c4.mshefty@ichips.intel.com> I haven't looked into this, but the problem appears to be caused by the CM trying to modify the port when mthca is loaded. Loading in the opposite order avoids the issue. - Sean Jan 23 23:10:47 mshefty-linux1 kernel: kernel BUG at include/asm/spinlock.h:146! Jan 23 23:10:47 mshefty-linux1 kernel: invalid operand: 0000 [#1] Jan 23 23:10:47 mshefty-linux1 kernel: SMP Jan 23 23:10:47 mshefty-linux1 kernel: Modules linked in: ib_mthca ib_cm ib_mad ib_core edd joydev st sr_mod ide_cd cdrom nvram usbserial parport_pc lp parport ipv6 thermal processor fan button battery ac af_packet e1000 hw_random uhci_hcd usbcore evdev reiserfs aic7xxx sd_mod scsi_mod Jan 23 23:10:47 mshefty-linux1 kernel: CPU: 0 Jan 23 23:10:47 mshefty-linux1 kernel: EIP: 0060:[_spin_lock_irqsave+68/80] Not tainted VLI Jan 23 23:10:47 mshefty-linux1 kernel: EIP: 0060:[] Not tainted VLI Jan 23 23:10:47 mshefty-linux1 kernel: EFLAGS: 00010016 (2.6.9) Jan 23 23:10:47 mshefty-linux1 kernel: EIP is at _spin_lock_irqsave+0x44/0x50 Jan 23 23:10:47 mshefty-linux1 kernel: eax: c031a3b6 ebx: 00000246 ecx: c035438c edx: c030259c Jan 23 23:10:47 mshefty-linux1 kernel: esi: ee9932e8 edi: ee975dc8 ebp: ee975d9c esp: ee975d94 Jan 23 23:10:47 mshefty-linux1 kernel: ds: 007b es: 007b ss: 0068 Jan 23 23:10:47 mshefty-linux1 kernel: Process insmod (pid: 8295, threadinfo=ee974000 task=f783cdf0) Jan 23 23:10:47 mshefty-linux1 kernel: Stack: ee9932e8 ee9932e0 ee975de0 c030259c 00000000 ee974000 f783cdf0 00000000 Jan 23 23:10:47 mshefty-linux1 kernel: 00000000 f783cdf0 c0120650 00000000 00000000 ee975e3f 00000000 00000000 Jan 23 23:10:47 mshefty-linux1 kernel: ee9932e0 00000000 ee9930bc ee975df0 c0302696 ee9932e0 00000082 ee975e5c Jan 23 23:10:47 mshefty-linux1 kernel: Call Trace: Jan 23 23:10:47 mshefty-linux1 kernel: [show_stack+155/176] show_stack+0x9b/0xb0 Jan 23 23:10:47 mshefty-linux1 kernel: [] show_stack+0x9b/0xb0 Jan 23 23:10:47 mshefty-linux1 kernel: [show_registers+287/400] show_registers+0x11f/0x190 Jan 23 23:10:47 mshefty-linux1 kernel: [] show_registers+0x11f/0x190 Jan 23 23:10:47 mshefty-linux1 kernel: [die+227/352] die+0xe3/0x160 Jan 23 23:10:47 mshefty-linux1 kernel: [] die+0xe3/0x160 Jan 23 23:10:47 mshefty-linux1 kernel: [do_invalid_op+239/256] do_invalid_op+0xef/0x100 Jan 23 23:10:47 mshefty-linux1 kernel: [] do_invalid_op+0xef/0x100 Jan 23 23:10:47 mshefty-linux1 kernel: [error_code+45/64] error_code+0x2d/0x40 Jan 23 23:10:47 mshefty-linux1 kernel: [] error_code+0x2d/0x40 Jan 23 23:10:47 mshefty-linux1 kernel: [__down_interruptible+76/296] __down_interruptible+0x4c/0x128 Jan 23 23:10:47 mshefty-linux1 kernel: [] __down_interruptible+0x4c/0x128 Jan 23 23:10:47 mshefty-linux1 kernel: [__down_failed_interruptible+10/16] __down_failed_interruptible+0xa/0x10 Jan 23 23:10:47 mshefty-linux1 kernel: [] __down_failed_interruptible+0xa/0x10 Jan 23 23:10:47 mshefty-linux1 kernel: [pg0+951314750/1069265920] .text.lock.mthca_provider+0x5/0x17 [ib_mthca] Jan 23 23:10:47 mshefty-linux1 kernel: [] .text.lock.mthca_provider+0x5/0x17 [ib_mthca] Jan 23 23:10:47 mshefty-linux1 kernel: [pg0+949409971/1069265920] ib_modify_port+0x13/0x18 [ib_core] Jan 23 23:10:47 mshefty-linux1 kernel: [] ib_modify_port+0x13/0x18 [ib_core] Jan 23 23:10:47 mshefty-linux1 kernel: [pg0+949548098/1069265920] cm_add_one+0x112/0x1b0 [ib_cm] Jan 23 23:10:47 mshefty-linux1 kernel: [] cm_add_one+0x112/0x1b0 [ib_cm] Jan 23 23:10:47 mshefty-linux1 kernel: [pg0+949408647/1069265920] ib_register_device+0x117/0x150 [ib_core] Jan 23 23:10:47 mshefty-linux1 kernel: [] ib_register_device+0x117/0x150 [ib_core] Jan 23 23:10:47 mshefty-linux1 kernel: [pg0+951314614/1069265920] mthca_register_device+0x136/0x1b0 [ib_mthca] Jan 23 23:10:47 mshefty-linux1 kernel: [] mthca_register_device+0x136/0x1b0 [ib_mthca] Jan 23 23:10:47 mshefty-linux1 kernel: [pg0+951261985/1069265920] mthca_init_one+0x3f1/0x5c0 [ib_mthca] Jan 23 23:10:47 mshefty-linux1 kernel: [] mthca_init_one+0x3f1/0x5c0 [ib_mthca] Jan 23 23:10:47 mshefty-linux1 kernel: [pci_device_probe_static+52/80] pci_device_probe_static+0x34/0x50 Jan 23 23:10:47 mshefty-linux1 kernel: [] pci_device_probe_static+0x34/0x50 Jan 23 23:10:47 mshefty-linux1 kernel: [__pci_device_probe+39/64] __pci_device_probe+0x27/0x40 Jan 23 23:10:47 mshefty-linux1 kernel: [] __pci_device_probe+0x27/0x40 Jan 23 23:10:47 mshefty-linux1 kernel: [pci_device_probe+30/64] pci_device_probe+0x1e/0x40 Jan 23 23:10:47 mshefty-linux1 kernel: [] pci_device_probe+0x1e/0x40 Jan 23 23:10:47 mshefty-linux1 kernel: [bus_match+42/80] bus_match+0x2a/0x50 Jan 23 23:10:47 mshefty-linux1 kernel: [] bus_match+0x2a/0x50 Jan 23 23:10:47 mshefty-linux1 kernel: [driver_attach+79/144] driver_attach+0x4f/0x90 Jan 23 23:10:47 mshefty-linux1 kernel: [] driver_attach+0x4f/0x90 Jan 23 23:10:47 mshefty-linux1 kernel: [bus_add_driver+140/192] bus_add_driver+0x8c/0xc0 Jan 23 23:10:47 mshefty-linux1 kernel: [] bus_add_driver+0x8c/0xc0 Jan 23 23:10:47 mshefty-linux1 kernel: [pci_register_driver+116/160] pci_register_driver+0x74/0xa0 Jan 23 23:10:47 mshefty-linux1 kernel: [] pci_register_driver+0x74/0xa0 Jan 23 23:10:47 mshefty-linux1 kernel: [pg0+948166669/1069265920] mthca_init+0xd/0x1f [ib_mthca] Jan 23 23:10:47 mshefty-linux1 kernel: [] mthca_init+0xd/0x1f [ib_mthca] Jan 23 23:10:47 mshefty-linux1 kernel: [sys_init_module+377/560] sys_init_module+0x179/0x230 Jan 23 23:10:47 mshefty-linux1 kernel: [] sys_init_module+0x179/0x230 Jan 23 23:10:47 mshefty-linux1 kernel: [sysenter_past_esp+82/121] sysenter_past_esp+0x52/0x79 Jan 23 23:10:47 mshefty-linux1 kernel: [] sysenter_past_esp+0x52/0x79 Jan 23 23:10:47 mshefty-linux1 kernel: Code: c3 00 02 00 00 74 01 fb f3 90 80 3e 00 7e f9 fa eb e8 8d 65 f8 89 d8 5b 5e 5d c3 8b 4d 04 51 68 b6 a3 31 c0 e8 8e 0b e2 ff 58 5a <0f> 0b 92 00 8c 9c 31 c0 eb c5 89 f6 55 89 e5 53 89 c3 fa 81 78 Jan 23 23:11:51 mshefty-linux1 su: (to root) mshefty on /dev/pts/1 From iod00d at hp.com Sat Jan 22 16:15:00 2005 From: iod00d at hp.com (Grant Grundler) Date: Sat, 22 Jan 2005 16:15:00 -0800 Subject: [openib-general] Re: MMIO reads for IPoIB w/MSI-X In-Reply-To: <20050122220017.GA19455@mellanox.co.il> References: <20050122071503.GA8137@esmail.cup.hp.com> <20050122220017.GA19455@mellanox.co.il> Message-ID: <20050123001500.GD20015@esmail.cup.hp.com> On Sun, Jan 23, 2005 at 12:00:17AM +0200, Michael S. Tsirkin wrote: > Quoting r. Grant Grundler : > > Subject: MMIO reads for IPoIB w/MSI-X > > > > Hi all, > > In trying to understand why netperf TCP_STREAM sucks on the ia64 platform > > I'm slowly collecting more data. I didn't really have any time this > > week to poke at this issue. > > > > The follow data confirms in MSI-X mode mthca is essentially doing > > no MMIO reads. > > An additional advantage of MSI-X is that interrupts are not shared. > But how is this related to ia64? How is _what_ related to ia64? MMIO reads hurt perf. MSI-X shouldn't need any MMIO reads and I confirmed that is fact the case as a first step to understanding why ia64-linux perf is "suboptimal". grant From robert.j.woodruff at intel.com Sat Jan 22 17:29:45 2005 From: robert.j.woodruff at intel.com (Woodruff, Robert J) Date: Sat, 22 Jan 2005 17:29:45 -0800 Subject: [openib-general] Default of MSI on when MSI support is configured into the kernel Message-ID: <1AC79F16F5C5284499BB9591B33D6F00035ABE2C@orsmsx408> Robert> Is there any reason that we cannot just change the mtcha Robert> driver to use MSI by default when CONFIG_PCI_MSI is Robert> configured in the kernel ? People that don't support or Robert> want to use MSI can always disable it when the build their Robert> kernel, or override the values when they do the modprobe. Roland >It seems that at least the latest Fedora kernels for x86-64 turns on Roland>CONFIG_PCI_MSI, which means that turning MSI on would break things on Roland>Opteron systems using AMD-8131 PCI-X bridges. I think having the Roland>default be safe but possibly not maximum peformance is better than Roland>being broken on some systems. It should be possible to extend the Roland>interrupt test in the latest driver to set MSI automatically. Roland>Eventually I may code this up, or someone industrious can do it sooner. > - R. Ok, makes sense. woody From mst at mellanox.co.il Sun Jan 23 01:06:34 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 23 Jan 2005 11:06:34 +0200 Subject: [openib-general] Re: MMIO reads for IPoIB w/MSI-X In-Reply-To: <20050123001500.GD20015@esmail.cup.hp.com> References: <20050122071503.GA8137@esmail.cup.hp.com> <20050122220017.GA19455@mellanox.co.il> <20050123001500.GD20015@esmail.cup.hp.com> Message-ID: <20050123090634.GA3171@mellanox.co.il> Quoting r. Grant Grundler : > Subject: Re: MMIO reads for IPoIB w/MSI-X > > On Sun, Jan 23, 2005 at 12:00:17AM +0200, Michael S. Tsirkin wrote: > > Quoting r. Grant Grundler : > > > Subject: MMIO reads for IPoIB w/MSI-X > > > > > > Hi all, > > > In trying to understand why netperf TCP_STREAM sucks on the ia64 platform > > > I'm slowly collecting more data. I didn't really have any time this > > > week to poke at this issue. > > > > > > The follow data confirms in MSI-X mode mthca is essentially doing > > > no MMIO reads. > > > > An additional advantage of MSI-X is that interrupts are not shared. > > But how is this related to ia64? > > How is _what_ related to ia64? > > MMIO reads hurt perf. MSI-X shouldn't need any MMIO reads and > I confirmed that is fact the case as a first step to understanding > why ia64-linux perf is "suboptimal". > > grant I understand. But, do they hurt perf on ia64 more than on x86? -- I dont speak for Mellanox. From roland at topspin.com Sun Jan 23 22:14:23 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 23 Jan 2005 22:14:23 -0800 Subject: [openib-general] [PATCH][1/12] InfiniBand/core: compat_ioctl conversion minor fixes In-Reply-To: <20051232214.Ndv3rt3gl8fJimFA@topspin.com> Message-ID: <20051232214.3xuiAqAqwBM4Tlb4@topspin.com> Slightly tidy up Andi Kleen's compat_ioctl conversion for the InfiniBand MAD driver by removing the no-longer-needed include of ioctl32.h, killing unreachable code and doing some really anal whitespace fixing. Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/core/user_mad.c 2005-01-23 21:48:45.709546808 -0800 +++ linux-bk/drivers/infiniband/core/user_mad.c 2005-01-23 21:49:32.872376968 -0800 @@ -43,7 +43,6 @@ #include #include #include -#include #include @@ -502,14 +501,14 @@ } static struct file_operations umad_fops = { - .owner = THIS_MODULE, - .read = ib_umad_read, - .write = ib_umad_write, - .poll = ib_umad_poll, + .owner = THIS_MODULE, + .read = ib_umad_read, + .write = ib_umad_write, + .poll = ib_umad_poll, .unlocked_ioctl = ib_umad_ioctl, - .compat_ioctl = ib_umad_ioctl, - .open = ib_umad_open, - .release = ib_umad_close + .compat_ioctl = ib_umad_ioctl, + .open = ib_umad_open, + .release = ib_umad_close }; static struct ib_client umad_client = { @@ -705,8 +704,6 @@ return 0; - ib_unregister_client(&umad_client); - out_class: class_unregister(&umad_class); From roland at topspin.com Sun Jan 23 22:14:23 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 23 Jan 2005 22:14:23 -0800 Subject: [openib-general] [PATCH][0/12] InfiniBand: updates for 2.6.11-rc2 Message-ID: <20051232214.Ndv3rt3gl8fJimFA@topspin.com> Here are updates since the last merge of drivers/infiniband taken from the OpenIB repository. A couple small fixes, the addition of "issm" device support to allow userspace to set the IsSM port capability bit, and a bunch of mthca driver improvements. There shouldn't be anything risky (and it's all confined to drivers/infiniband). Thanks, Roland From roland at topspin.com Sun Jan 23 22:14:23 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 23 Jan 2005 22:14:23 -0800 Subject: [openib-general] [PATCH][4/12] InfiniBand/core: fix port capability enums bit order In-Reply-To: <20051232214.v4gD7pRb7UQo64yW@topspin.com> Message-ID: <20051232214.1JLCX02EnyVBhKBe@topspin.com> Correct defines of port capability mask enum values (bits were ordered backwards) and add new capability bits from IBA spec version 1.2. Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/include/ib_verbs.h 2005-01-23 08:30:22.000000000 -0800 +++ linux-bk/drivers/infiniband/include/ib_verbs.h 2005-01-23 20:46:23.606432952 -0800 @@ -154,25 +154,28 @@ }; enum ib_port_cap_flags { - IB_PORT_SM = (1<<31), - IB_PORT_NOTICE_SUP = (1<<30), - IB_PORT_TRAP_SUP = (1<<29), - IB_PORT_AUTO_MIGR_SUP = (1<<27), - IB_PORT_SL_MAP_SUP = (1<<26), - IB_PORT_MKEY_NVRAM = (1<<25), - IB_PORT_PKEY_NVRAM = (1<<24), - IB_PORT_LED_INFO_SUP = (1<<23), - IB_PORT_SM_DISABLED = (1<<22), - IB_PORT_SYS_IMAGE_GUID_SUP = (1<<21), - IB_PORT_PKEY_SW_EXT_PORT_TRAP_SUP = (1<<20), - IB_PORT_CM_SUP = (1<<16), - IB_PORT_SNMP_TUNNEL_SUP = (1<<15), - IB_PORT_REINIT_SUP = (1<<14), - IB_PORT_DEVICE_MGMT_SUP = (1<<13), - IB_PORT_VENDOR_CLASS_SUP = (1<<12), - IB_PORT_DR_NOTICE_SUP = (1<<11), - IB_PORT_PORT_NOTICE_SUP = (1<<10), - IB_PORT_BOOT_MGMT_SUP = (1<<9) + IB_PORT_SM = 1 << 1, + IB_PORT_NOTICE_SUP = 1 << 2, + IB_PORT_TRAP_SUP = 1 << 3, + IB_PORT_OPT_IPD_SUP = 1 << 4, + IB_PORT_AUTO_MIGR_SUP = 1 << 5, + IB_PORT_SL_MAP_SUP = 1 << 6, + IB_PORT_MKEY_NVRAM = 1 << 7, + IB_PORT_PKEY_NVRAM = 1 << 8, + IB_PORT_LED_INFO_SUP = 1 << 9, + IB_PORT_SM_DISABLED = 1 << 10, + IB_PORT_SYS_IMAGE_GUID_SUP = 1 << 11, + IB_PORT_PKEY_SW_EXT_PORT_TRAP_SUP = 1 << 12, + IB_PORT_CM_SUP = 1 << 16, + IB_PORT_SNMP_TUNNEL_SUP = 1 << 17, + IB_PORT_REINIT_SUP = 1 << 18, + IB_PORT_DEVICE_MGMT_SUP = 1 << 19, + IB_PORT_VENDOR_CLASS_SUP = 1 << 20, + IB_PORT_DR_NOTICE_SUP = 1 << 21, + IB_PORT_CAP_MASK_NOTICE_SUP = 1 << 22, + IB_PORT_BOOT_MGMT_SUP = 1 << 23, + IB_PORT_LINK_LATENCY_SUP = 1 << 24, + IB_PORT_CLIENT_REG_SUP = 1 << 25 }; enum ib_port_width { From roland at topspin.com Sun Jan 23 22:14:23 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 23 Jan 2005 22:14:23 -0800 Subject: [openib-general] [PATCH][2/12] InfiniBand/mthca: more Arbel Mem-Free support In-Reply-To: <20051232214.3xuiAqAqwBM4Tlb4@topspin.com> Message-ID: <20051232214.G5RSVEyRyy7IWtkk@topspin.com> Continue development of Arbel Mem-Free support: we now compute a valid profile, allocate context memory, map sufficient aux memory for HCA page tables, map sufficient context memory to cover all reserved firmware resources and successfully call the INIT_HCA and QUERY_ADAPTER firmware commands. Fix a few error gotos that unwound the wrong things. Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_cmd.h 2005-01-23 08:30:23.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_cmd.h 2005-01-23 20:26:07.036379712 -0800 @@ -174,27 +174,30 @@ struct mthca_init_hca_param { u64 qpc_base; - u8 log_num_qps; u64 eec_base; - u8 log_num_eecs; u64 srqc_base; - u8 log_num_srqs; u64 cqc_base; - u8 log_num_cqs; u64 eqpc_base; u64 eeec_base; u64 eqc_base; - u8 log_num_eqs; u64 rdb_base; u64 mc_base; + u64 mpt_base; + u64 mtt_base; + u64 uar_scratch_base; + u64 uarc_base; u16 log_mc_entry_sz; u16 mc_hash_sz; + u8 log_num_qps; + u8 log_num_eecs; + u8 log_num_srqs; + u8 log_num_cqs; + u8 log_num_eqs; u8 log_mc_table_sz; - u64 mpt_base; u8 mtt_seg_sz; u8 log_mpt_sz; - u64 mtt_base; - u64 uar_scratch_base; + u8 log_uar_sz; + u8 log_uarc_sz; }; struct mthca_init_ib_param { @@ -238,6 +241,13 @@ int port, u8 *status); int mthca_CLOSE_IB(struct mthca_dev *dev, int port, u8 *status); int mthca_CLOSE_HCA(struct mthca_dev *dev, int panic, u8 *status); +int mthca_MAP_ICM(struct mthca_dev *dev, struct mthca_icm *icm, u64 virt, u8 *status); +int mthca_MAP_ICM_page(struct mthca_dev *dev, u64 dma_addr, u64 virt, u8 *status); +int mthca_UNMAP_ICM(struct mthca_dev *dev, u64 virt, u32 page_count, u8 *status); +int mthca_MAP_ICM_AUX(struct mthca_dev *dev, struct mthca_icm *icm, u8 *status); +int mthca_UNMAP_ICM_AUX(struct mthca_dev *dev, u8 *status); +int mthca_SET_ICM_SIZE(struct mthca_dev *dev, u64 icm_size, u64 *aux_pages, + u8 *status); int mthca_SW2HW_MPT(struct mthca_dev *dev, void *mpt_entry, int mpt_index, u8 *status); int mthca_HW2SW_MPT(struct mthca_dev *dev, void *mpt_entry, --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_profile.c 2005-01-23 08:32:07.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_profile.c 2005-01-23 20:26:07.033380168 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -60,7 +60,7 @@ MTHCA_NUM_PDS = 1 << 15 }; -int mthca_make_profile(struct mthca_dev *dev, +u64 mthca_make_profile(struct mthca_dev *dev, struct mthca_profile *request, struct mthca_dev_lim *dev_lim, struct mthca_init_hca_param *init_hca) @@ -116,6 +116,8 @@ profile[i].type = i; profile[i].log_num = max(ffs(profile[i].num) - 1, 0); profile[i].size *= profile[i].num; + if (dev->hca_type == ARBEL_NATIVE) + profile[i].size = max(profile[i].size, (u64) PAGE_SIZE); } if (dev->hca_type == ARBEL_NATIVE) { @@ -239,6 +241,10 @@ case MTHCA_RES_UDAV: dev->av_table.ddr_av_base = profile[i].start; dev->av_table.num_ddr_avs = profile[i].num; + case MTHCA_RES_UARC: + init_hca->uarc_base = profile[i].start; + init_hca->log_uarc_sz = ffs(request->uarc_size) - 13; + init_hca->log_uar_sz = ffs(request->num_uar) - 1; default: break; } @@ -251,5 +257,5 @@ dev->limits.num_pds = MTHCA_NUM_PDS; kfree(profile); - return 0; + return total_size; } --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_memfree.c 2005-01-23 08:30:22.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_memfree.c 2005-01-23 20:26:07.037379560 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -34,6 +34,16 @@ #include "mthca_memfree.h" #include "mthca_dev.h" +#include "mthca_cmd.h" + +/* + * We allocate in as big chunks as we can, up to a maximum of 256 KB + * per chunk. + */ +enum { + MTHCA_ICM_ALLOC_SIZE = 1 << 18, + MTHCA_TABLE_CHUNK_SIZE = 1 << 18 +}; void mthca_free_icm(struct mthca_dev *dev, struct mthca_icm *icm) { @@ -71,11 +81,7 @@ INIT_LIST_HEAD(&icm->chunk_list); - /* - * We allocate in as big chunks as we can, up to a maximum of - * 256 KB per chunk. - */ - cur_order = get_order(1 << 18); + cur_order = get_order(MTHCA_ICM_ALLOC_SIZE); while (npages > 0) { if (!chunk) { @@ -131,3 +137,70 @@ mthca_free_icm(dev, icm); return NULL; } + +struct mthca_icm_table *mthca_alloc_icm_table(struct mthca_dev *dev, + u64 virt, unsigned size, + unsigned reserved, + int use_lowmem) +{ + struct mthca_icm_table *table; + int num_icm; + int i; + u8 status; + + num_icm = size / MTHCA_TABLE_CHUNK_SIZE; + + table = kmalloc(sizeof *table + num_icm * sizeof *table->icm, GFP_KERNEL); + if (!table) + return NULL; + + table->virt = virt; + table->num_icm = num_icm; + init_MUTEX(&table->sem); + + for (i = 0; i < num_icm; ++i) + table->icm[i] = NULL; + + for (i = 0; i < (reserved + MTHCA_TABLE_CHUNK_SIZE - 1) / MTHCA_TABLE_CHUNK_SIZE; ++i) { + table->icm[i] = mthca_alloc_icm(dev, MTHCA_TABLE_CHUNK_SIZE >> PAGE_SHIFT, + (use_lowmem ? GFP_KERNEL : GFP_HIGHUSER) | + __GFP_NOWARN); + if (!table->icm[i]) + goto err; + if (mthca_MAP_ICM(dev, table->icm[i], virt + i * MTHCA_TABLE_CHUNK_SIZE, + &status) || status) { + mthca_free_icm(dev, table->icm[i]); + table->icm[i] = NULL; + goto err; + } + } + + return table; + +err: + for (i = 0; i < num_icm; ++i) + if (table->icm[i]) { + mthca_UNMAP_ICM(dev, virt + i * MTHCA_TABLE_CHUNK_SIZE, + MTHCA_TABLE_CHUNK_SIZE >> 12, &status); + mthca_free_icm(dev, table->icm[i]); + } + + kfree(table); + + return NULL; +} + +void mthca_free_icm_table(struct mthca_dev *dev, struct mthca_icm_table *table) +{ + int i; + u8 status; + + for (i = 0; i < table->num_icm; ++i) + if (table->icm[i]) { + mthca_UNMAP_ICM(dev, table->virt + i * MTHCA_TABLE_CHUNK_SIZE, + MTHCA_TABLE_CHUNK_SIZE >> 12, &status); + mthca_free_icm(dev, table->icm[i]); + } + + kfree(table); +} --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_eq.c 2005-01-23 08:30:57.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_eq.c 2005-01-23 20:26:07.036379712 -0800 @@ -574,6 +574,50 @@ dev->eq_table.eq + i); } +int __devinit mthca_map_eq_icm(struct mthca_dev *dev, u64 icm_virt) +{ + int ret; + u8 status; + + /* + * We assume that mapping one page is enough for the whole EQ + * context table. This is fine with all current HCAs, because + * we only use 32 EQs and each EQ uses 32 bytes of context + * memory, or 1 KB total. + */ + dev->eq_table.icm_virt = icm_virt; + dev->eq_table.icm_page = alloc_page(GFP_HIGHUSER); + if (!dev->eq_table.icm_page) + return -ENOMEM; + dev->eq_table.icm_dma = pci_map_page(dev->pdev, dev->eq_table.icm_page, 0, + PAGE_SIZE, PCI_DMA_BIDIRECTIONAL); + if (pci_dma_mapping_error(dev->eq_table.icm_dma)) { + __free_page(dev->eq_table.icm_page); + return -ENOMEM; + } + + ret = mthca_MAP_ICM_page(dev, dev->eq_table.icm_dma, icm_virt, &status); + if (!ret && status) + ret = -EINVAL; + if (ret) { + pci_unmap_page(dev->pdev, dev->eq_table.icm_dma, PAGE_SIZE, + PCI_DMA_BIDIRECTIONAL); + __free_page(dev->eq_table.icm_page); + } + + return ret; +} + +void __devexit mthca_unmap_eq_icm(struct mthca_dev *dev) +{ + u8 status; + + mthca_UNMAP_ICM(dev, dev->eq_table.icm_virt, PAGE_SIZE / 4096, &status); + pci_unmap_page(dev->pdev, dev->eq_table.icm_dma, PAGE_SIZE, + PCI_DMA_BIDIRECTIONAL); + __free_page(dev->eq_table.icm_page); +} + int __devinit mthca_init_eq_table(struct mthca_dev *dev) { int err; --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_main.c 2005-01-23 08:30:33.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_main.c 2005-01-23 20:26:07.032380320 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -82,12 +82,9 @@ .num_cq = 1 << 16, .num_mcg = 1 << 13, .num_mpt = 1 << 17, - .num_mtt = 1 << 20 -}; - -enum { - MTHCA_TAVOR_NUM_UDAV = 1 << 15, - MTHCA_ARBEL_UARC_SIZE = 1 << 18 + .num_mtt = 1 << 20, + .num_udav = 1 << 15, /* Tavor only */ + .uarc_size = 1 << 18, /* Arbel only */ }; static int __devinit mthca_tune_pci(struct mthca_dev *mdev) @@ -207,58 +204,58 @@ err = mthca_QUERY_FW(mdev, &status); if (err) { mthca_err(mdev, "QUERY_FW command failed, aborting.\n"); - goto err_out_disable; + goto err_disable; } if (status) { mthca_err(mdev, "QUERY_FW returned status 0x%02x, " "aborting.\n", status); err = -EINVAL; - goto err_out_disable; + goto err_disable; } err = mthca_QUERY_DDR(mdev, &status); if (err) { mthca_err(mdev, "QUERY_DDR command failed, aborting.\n"); - goto err_out_disable; + goto err_disable; } if (status) { mthca_err(mdev, "QUERY_DDR returned status 0x%02x, " "aborting.\n", status); err = -EINVAL; - goto err_out_disable; + goto err_disable; } err = mthca_dev_lim(mdev, &dev_lim); profile = default_profile; - profile.num_uar = dev_lim.uar_size / PAGE_SIZE; - profile.num_udav = MTHCA_TAVOR_NUM_UDAV; + profile.num_uar = dev_lim.uar_size / PAGE_SIZE; + profile.uarc_size = 0; err = mthca_make_profile(mdev, &profile, &dev_lim, &init_hca); - if (err) - goto err_out_disable; + if (err < 0) + goto err_disable; err = mthca_INIT_HCA(mdev, &init_hca, &status); if (err) { mthca_err(mdev, "INIT_HCA command failed, aborting.\n"); - goto err_out_disable; + goto err_disable; } if (status) { mthca_err(mdev, "INIT_HCA returned status 0x%02x, " "aborting.\n", status); err = -EINVAL; - goto err_out_disable; + goto err_disable; } err = mthca_QUERY_ADAPTER(mdev, &adapter, &status); if (err) { mthca_err(mdev, "QUERY_ADAPTER command failed, aborting.\n"); - goto err_out_disable; + goto err_close; } if (status) { mthca_err(mdev, "QUERY_ADAPTER returned status 0x%02x, " "aborting.\n", status); err = -EINVAL; - goto err_out_close; + goto err_close; } mdev->eq_table.inta_pin = adapter.inta_pin; @@ -266,10 +263,10 @@ return 0; -err_out_close: +err_close: mthca_CLOSE_HCA(mdev, 0, &status); -err_out_disable: +err_disable: mthca_SYS_DIS(mdev, &status); return err; @@ -282,15 +279,15 @@ /* FIXME: use HCA-attached memory for FW if present */ - mdev->fw.arbel.icm = + mdev->fw.arbel.fw_icm = mthca_alloc_icm(mdev, mdev->fw.arbel.fw_pages, GFP_HIGHUSER | __GFP_NOWARN); - if (!mdev->fw.arbel.icm) { + if (!mdev->fw.arbel.fw_icm) { mthca_err(mdev, "Couldn't allocate FW area, aborting.\n"); return -ENOMEM; } - err = mthca_MAP_FA(mdev, mdev->fw.arbel.icm, &status); + err = mthca_MAP_FA(mdev, mdev->fw.arbel.fw_icm, &status); if (err) { mthca_err(mdev, "MAP_FA command failed, aborting.\n"); goto err_free; @@ -317,13 +314,146 @@ mthca_UNMAP_FA(mdev, &status); err_free: - mthca_free_icm(mdev, mdev->fw.arbel.icm); + mthca_free_icm(mdev, mdev->fw.arbel.fw_icm); + return err; +} + +static int __devinit mthca_init_icm(struct mthca_dev *mdev, + struct mthca_dev_lim *dev_lim, + struct mthca_init_hca_param *init_hca, + u64 icm_size) +{ + u64 aux_pages; + u8 status; + int err; + + err = mthca_SET_ICM_SIZE(mdev, icm_size, &aux_pages, &status); + if (err) { + mthca_err(mdev, "SET_ICM_SIZE command failed, aborting.\n"); + return err; + } + if (status) { + mthca_err(mdev, "SET_ICM_SIZE returned status 0x%02x, " + "aborting.\n", status); + return -EINVAL; + } + + mthca_dbg(mdev, "%lld KB of HCA context requires %lld KB aux memory.\n", + (unsigned long long) icm_size >> 10, + (unsigned long long) aux_pages << 2); + + mdev->fw.arbel.aux_icm = mthca_alloc_icm(mdev, aux_pages, + GFP_HIGHUSER | __GFP_NOWARN); + if (!mdev->fw.arbel.aux_icm) { + mthca_err(mdev, "Couldn't allocate aux memory, aborting.\n"); + return -ENOMEM; + } + + err = mthca_MAP_ICM_AUX(mdev, mdev->fw.arbel.aux_icm, &status); + if (err) { + mthca_err(mdev, "MAP_ICM_AUX command failed, aborting.\n"); + goto err_free_aux; + } + if (status) { + mthca_err(mdev, "MAP_ICM_AUX returned status 0x%02x, aborting.\n", status); + err = -EINVAL; + goto err_free_aux; + } + + err = mthca_map_eq_icm(mdev, init_hca->eqc_base); + if (err) { + mthca_err(mdev, "Failed to map EQ context memory, aborting.\n"); + goto err_unmap_aux; + } + + mdev->mr_table.mtt_table = mthca_alloc_icm_table(mdev, init_hca->mtt_base, + mdev->limits.num_mtt_segs * + init_hca->mtt_seg_sz, + mdev->limits.reserved_mtts * + init_hca->mtt_seg_sz, 1); + if (!mdev->mr_table.mtt_table) { + mthca_err(mdev, "Failed to map MTT context memory, aborting.\n"); + err = -ENOMEM; + goto err_unmap_eq; + } + + mdev->mr_table.mpt_table = mthca_alloc_icm_table(mdev, init_hca->mpt_base, + mdev->limits.num_mpts * + dev_lim->mpt_entry_sz, + mdev->limits.reserved_mrws * + dev_lim->mpt_entry_sz, 1); + if (!mdev->mr_table.mpt_table) { + mthca_err(mdev, "Failed to map MPT context memory, aborting.\n"); + err = -ENOMEM; + goto err_unmap_mtt; + } + + mdev->qp_table.qp_table = mthca_alloc_icm_table(mdev, init_hca->qpc_base, + mdev->limits.num_qps * + dev_lim->qpc_entry_sz, + mdev->limits.reserved_qps * + dev_lim->qpc_entry_sz, 1); + if (!mdev->qp_table.qp_table) { + mthca_err(mdev, "Failed to map QP context memory, aborting.\n"); + err = -ENOMEM; + goto err_unmap_mpt; + } + + mdev->qp_table.eqp_table = mthca_alloc_icm_table(mdev, init_hca->eqpc_base, + mdev->limits.num_qps * + dev_lim->eqpc_entry_sz, + mdev->limits.reserved_qps * + dev_lim->eqpc_entry_sz, 1); + if (!mdev->qp_table.eqp_table) { + mthca_err(mdev, "Failed to map EQP context memory, aborting.\n"); + err = -ENOMEM; + goto err_unmap_qp; + } + + mdev->cq_table.table = mthca_alloc_icm_table(mdev, init_hca->cqc_base, + mdev->limits.num_cqs * + dev_lim->cqc_entry_sz, + mdev->limits.reserved_cqs * + dev_lim->cqc_entry_sz, 1); + if (!mdev->cq_table.table) { + mthca_err(mdev, "Failed to map CQ context memory, aborting.\n"); + err = -ENOMEM; + goto err_unmap_eqp; + } + + return 0; + +err_unmap_eqp: + mthca_free_icm_table(mdev, mdev->qp_table.eqp_table); + +err_unmap_qp: + mthca_free_icm_table(mdev, mdev->qp_table.qp_table); + +err_unmap_mpt: + mthca_free_icm_table(mdev, mdev->mr_table.mpt_table); + +err_unmap_mtt: + mthca_free_icm_table(mdev, mdev->mr_table.mtt_table); + +err_unmap_eq: + mthca_unmap_eq_icm(mdev); + +err_unmap_aux: + mthca_UNMAP_ICM_AUX(mdev, &status); + +err_free_aux: + mthca_free_icm(mdev, mdev->fw.arbel.aux_icm); + return err; } static int __devinit mthca_init_arbel(struct mthca_dev *mdev) { - struct mthca_dev_lim dev_lim; + struct mthca_dev_lim dev_lim; + struct mthca_profile profile; + struct mthca_init_hca_param init_hca; + struct mthca_adapter adapter; + u64 icm_size; u8 status; int err; @@ -355,26 +485,77 @@ err = mthca_load_fw(mdev); if (err) { mthca_err(mdev, "Failed to start FW, aborting.\n"); - goto err_out_disable; + goto err_disable; } err = mthca_dev_lim(mdev, &dev_lim); if (err) { mthca_err(mdev, "QUERY_DEV_LIM command failed, aborting.\n"); - goto err_out_stop_fw; + goto err_stop_fw; } - mthca_warn(mdev, "Sorry, native MT25208 mode support is not done, " - "aborting.\n"); - err = -ENODEV; + profile = default_profile; + profile.num_uar = dev_lim.uar_size / PAGE_SIZE; + profile.num_udav = 0; -err_out_stop_fw: + icm_size = mthca_make_profile(mdev, &profile, &dev_lim, &init_hca); + if ((int) icm_size < 0) { + err = icm_size; + goto err_stop_fw; + } + + err = mthca_init_icm(mdev, &dev_lim, &init_hca, icm_size); + if (err) + goto err_stop_fw; + + err = mthca_INIT_HCA(mdev, &init_hca, &status); + if (err) { + mthca_err(mdev, "INIT_HCA command failed, aborting.\n"); + goto err_free_icm; + } + if (status) { + mthca_err(mdev, "INIT_HCA returned status 0x%02x, " + "aborting.\n", status); + err = -EINVAL; + goto err_free_icm; + } + + err = mthca_QUERY_ADAPTER(mdev, &adapter, &status); + if (err) { + mthca_err(mdev, "QUERY_ADAPTER command failed, aborting.\n"); + goto err_free_icm; + } + if (status) { + mthca_err(mdev, "QUERY_ADAPTER returned status 0x%02x, " + "aborting.\n", status); + err = -EINVAL; + goto err_free_icm; + } + + mdev->eq_table.inta_pin = adapter.inta_pin; + mdev->rev_id = adapter.revision_id; + + return 0; + +err_free_icm: + mthca_free_icm_table(mdev, mdev->cq_table.table); + mthca_free_icm_table(mdev, mdev->qp_table.eqp_table); + mthca_free_icm_table(mdev, mdev->qp_table.qp_table); + mthca_free_icm_table(mdev, mdev->mr_table.mpt_table); + mthca_free_icm_table(mdev, mdev->mr_table.mtt_table); + mthca_unmap_eq_icm(mdev); + + mthca_UNMAP_ICM_AUX(mdev, &status); + mthca_free_icm(mdev, mdev->fw.arbel.aux_icm); + +err_stop_fw: mthca_UNMAP_FA(mdev, &status); - mthca_free_icm(mdev, mdev->fw.arbel.icm); + mthca_free_icm(mdev, mdev->fw.arbel.fw_icm); -err_out_disable: +err_disable: if (!(mdev->mthca_flags & MTHCA_FLAG_NO_LAM)) mthca_DISABLE_LAM(mdev, &status); + return err; } @@ -403,82 +584,89 @@ if (err) { mthca_err(dev, "Failed to initialize " "memory region table, aborting.\n"); - goto err_out_pd_table_free; + goto err_pd_table_free; } err = mthca_pd_alloc(dev, &dev->driver_pd); if (err) { mthca_err(dev, "Failed to create driver PD, " "aborting.\n"); - goto err_out_mr_table_free; + goto err_mr_table_free; + } + + if (dev->hca_type == ARBEL_NATIVE) { + mthca_warn(dev, "Sorry, native MT25208 mode support is not done, " + "aborting.\n"); + err = -ENODEV; + goto err_pd_free; } err = mthca_init_eq_table(dev); if (err) { mthca_err(dev, "Failed to initialize " "event queue table, aborting.\n"); - goto err_out_pd_free; + goto err_pd_free; } err = mthca_cmd_use_events(dev); if (err) { mthca_err(dev, "Failed to switch to event-driven " "firmware commands, aborting.\n"); - goto err_out_eq_table_free; + goto err_eq_table_free; } err = mthca_init_cq_table(dev); if (err) { mthca_err(dev, "Failed to initialize " "completion queue table, aborting.\n"); - goto err_out_cmd_poll; + goto err_cmd_poll; } err = mthca_init_qp_table(dev); if (err) { mthca_err(dev, "Failed to initialize " "queue pair table, aborting.\n"); - goto err_out_cq_table_free; + goto err_cq_table_free; } err = mthca_init_av_table(dev); if (err) { mthca_err(dev, "Failed to initialize " "address vector table, aborting.\n"); - goto err_out_qp_table_free; + goto err_qp_table_free; } err = mthca_init_mcg_table(dev); if (err) { mthca_err(dev, "Failed to initialize " "multicast group table, aborting.\n"); - goto err_out_av_table_free; + goto err_av_table_free; } return 0; -err_out_av_table_free: +err_av_table_free: mthca_cleanup_av_table(dev); -err_out_qp_table_free: +err_qp_table_free: mthca_cleanup_qp_table(dev); -err_out_cq_table_free: +err_cq_table_free: mthca_cleanup_cq_table(dev); -err_out_cmd_poll: +err_cmd_poll: mthca_cmd_use_polling(dev); -err_out_eq_table_free: +err_eq_table_free: mthca_cleanup_eq_table(dev); -err_out_pd_free: +err_pd_free: mthca_pd_free(dev, &dev->driver_pd); -err_out_mr_table_free: +err_mr_table_free: mthca_cleanup_mr_table(dev); -err_out_pd_table_free: +err_pd_table_free: mthca_cleanup_pd_table(dev); return err; } @@ -507,32 +695,32 @@ MTHCA_CLR_INT_SIZE, DRV_NAME)) { err = -EBUSY; - goto err_out_bar0_beg; + goto err_bar0_beg; } err = pci_request_region(pdev, 2, DRV_NAME); if (err) - goto err_out_bar0_end; + goto err_bar0_end; if (!ddr_hidden) { err = pci_request_region(pdev, 4, DRV_NAME); if (err) - goto err_out_bar2; + goto err_bar2; } return 0; -err_out_bar0_beg: +err_bar0_beg: release_mem_region(pci_resource_start(pdev, 0) + MTHCA_HCR_BASE, MTHCA_MAP_HCR_SIZE); -err_out_bar0_end: +err_bar0_end: release_mem_region(pci_resource_start(pdev, 0) + MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE); -err_out_bar2: +err_bar2: pci_release_region(pdev, 2); return err; } @@ -582,8 +770,18 @@ mthca_CLOSE_HCA(mdev, 0, &status); if (mdev->hca_type == ARBEL_NATIVE) { + mthca_free_icm_table(mdev, mdev->cq_table.table); + mthca_free_icm_table(mdev, mdev->qp_table.eqp_table); + mthca_free_icm_table(mdev, mdev->qp_table.qp_table); + mthca_free_icm_table(mdev, mdev->mr_table.mpt_table); + mthca_free_icm_table(mdev, mdev->mr_table.mtt_table); + mthca_unmap_eq_icm(mdev); + + mthca_UNMAP_ICM_AUX(mdev, &status); + mthca_free_icm(mdev, mdev->fw.arbel.aux_icm); + mthca_UNMAP_FA(mdev, &status); - mthca_free_icm(mdev, mdev->fw.arbel.icm); + mthca_free_icm(mdev, mdev->fw.arbel.fw_icm); if (!(mdev->mthca_flags & MTHCA_FLAG_NO_LAM)) mthca_DISABLE_LAM(mdev, &status); @@ -623,13 +821,13 @@ pci_resource_len(pdev, 0) != 1 << 20) { dev_err(&pdev->dev, "Missing DCS, aborting."); err = -ENODEV; - goto err_out_disable_pdev; + goto err_disable_pdev; } if (!(pci_resource_flags(pdev, 2) & IORESOURCE_MEM) || pci_resource_len(pdev, 2) != 1 << 23) { dev_err(&pdev->dev, "Missing UAR, aborting."); err = -ENODEV; - goto err_out_disable_pdev; + goto err_disable_pdev; } if (!(pci_resource_flags(pdev, 4) & IORESOURCE_MEM)) ddr_hidden = 1; @@ -638,7 +836,7 @@ if (err) { dev_err(&pdev->dev, "Cannot obtain PCI resources, " "aborting.\n"); - goto err_out_disable_pdev; + goto err_disable_pdev; } pci_set_master(pdev); @@ -649,7 +847,7 @@ err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); if (err) { dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting.\n"); - goto err_out_free_res; + goto err_free_res; } } err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK); @@ -660,7 +858,7 @@ if (err) { dev_err(&pdev->dev, "Can't set consistent PCI DMA mask, " "aborting.\n"); - goto err_out_free_res; + goto err_free_res; } } @@ -669,7 +867,7 @@ dev_err(&pdev->dev, "Device struct alloc failed, " "aborting.\n"); err = -ENOMEM; - goto err_out_free_res; + goto err_free_res; } mdev->pdev = pdev; @@ -686,7 +884,7 @@ err = mthca_reset(mdev); if (err) { mthca_err(mdev, "Failed to reset HCA, aborting.\n"); - goto err_out_free_dev; + goto err_free_dev; } if (msi_x && !mthca_enable_msi_x(mdev)) @@ -705,7 +903,7 @@ mthca_err(mdev, "Couldn't map command register, " "aborting.\n"); err = -ENOMEM; - goto err_out_free_dev; + goto err_free_dev; } mdev->clr_base = ioremap(mthca_base + MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE); @@ -713,7 +911,7 @@ mthca_err(mdev, "Couldn't map command register, " "aborting.\n"); err = -ENOMEM; - goto err_out_iounmap; + goto err_iounmap; } mthca_base = pci_resource_start(pdev, 2); @@ -722,37 +920,37 @@ mthca_err(mdev, "Couldn't map kernel access region, " "aborting.\n"); err = -ENOMEM; - goto err_out_iounmap_clr; + goto err_iounmap_clr; } err = mthca_tune_pci(mdev); if (err) - goto err_out_iounmap_kar; + goto err_iounmap_kar; err = mthca_init_hca(mdev); if (err) - goto err_out_iounmap_kar; + goto err_iounmap_kar; err = mthca_setup_hca(mdev); if (err) - goto err_out_close; + goto err_close; err = mthca_register_device(mdev); if (err) - goto err_out_cleanup; + goto err_cleanup; err = mthca_create_agents(mdev); if (err) - goto err_out_unregister; + goto err_unregister; pci_set_drvdata(pdev, mdev); return 0; -err_out_unregister: +err_unregister: mthca_unregister_device(mdev); -err_out_cleanup: +err_cleanup: mthca_cleanup_mcg_table(mdev); mthca_cleanup_av_table(mdev); mthca_cleanup_qp_table(mdev); @@ -765,19 +963,19 @@ mthca_cleanup_mr_table(mdev); mthca_cleanup_pd_table(mdev); -err_out_close: +err_close: mthca_close_hca(mdev); -err_out_iounmap_kar: +err_iounmap_kar: iounmap(mdev->kar); -err_out_iounmap_clr: +err_iounmap_clr: iounmap(mdev->clr_base); -err_out_iounmap: +err_iounmap: iounmap(mdev->hcr); -err_out_free_dev: +err_free_dev: if (mdev->mthca_flags & MTHCA_FLAG_MSI_X) pci_disable_msix(pdev); if (mdev->mthca_flags & MTHCA_FLAG_MSI) @@ -785,10 +983,10 @@ ib_dealloc_device(&mdev->ib_dev); -err_out_free_res: +err_free_res: mthca_release_regions(pdev, ddr_hidden); -err_out_disable_pdev: +err_disable_pdev: pci_disable_device(pdev); pci_set_drvdata(pdev, NULL); return err; --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_profile.h 2005-01-23 08:31:33.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_profile.h 2005-01-23 20:26:07.035379864 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -50,7 +50,7 @@ int uarc_size; }; -int mthca_make_profile(struct mthca_dev *mdev, +u64 mthca_make_profile(struct mthca_dev *mdev, struct mthca_profile *request, struct mthca_dev_lim *dev_lim, struct mthca_init_hca_param *init_hca); --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_cmd.c 2005-01-23 08:31:13.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_cmd.c 2005-01-23 20:26:07.034380016 -0800 @@ -509,7 +509,8 @@ return mthca_cmd(dev, 0, 0, 0, CMD_SYS_DIS, HZ, status); } -int mthca_MAP_FA(struct mthca_dev *dev, struct mthca_icm *icm, u8 *status) +static int mthca_map_cmd(struct mthca_dev *dev, u16 op, struct mthca_icm *icm, + u64 virt, u8 *status) { u32 *inbox; dma_addr_t indma; @@ -518,12 +519,17 @@ int nent = 0; int i; int err = 0; - int ts = 0; + int ts = 0, tc = 0; inbox = pci_alloc_consistent(dev->pdev, PAGE_SIZE, &indma); + if (!inbox) + return -ENOMEM; + memset(inbox, 0, PAGE_SIZE); - for (mthca_icm_first(icm, &iter); !mthca_icm_last(&iter); mthca_icm_next(&iter)) { + for (mthca_icm_first(icm, &iter); + !mthca_icm_last(&iter); + mthca_icm_next(&iter)) { /* * We have to pass pages that are aligned to their * size, so find the least significant 1 in the @@ -538,13 +544,20 @@ goto out; } for (i = 0; i < mthca_icm_size(&iter) / (1 << lg); ++i, ++nent) { + if (virt != -1) { + *((__be64 *) (inbox + nent * 4)) = + cpu_to_be64(virt); + virt += 1 << lg; + } + *((__be64 *) (inbox + nent * 4 + 2)) = cpu_to_be64((mthca_icm_addr(&iter) + - (i << lg)) | - (lg - 12)); + (i << lg)) | (lg - 12)); ts += 1 << (lg - 10); + ++tc; + if (nent == PAGE_SIZE / 16) { - err = mthca_cmd(dev, indma, nent, 0, CMD_MAP_FA, + err = mthca_cmd(dev, indma, nent, 0, op, CMD_TIME_CLASS_B, status); if (err || *status) goto out; @@ -553,18 +566,33 @@ } } - if (nent) { - err = mthca_cmd(dev, indma, nent, 0, CMD_MAP_FA, + if (nent) + err = mthca_cmd(dev, indma, nent, 0, op, CMD_TIME_CLASS_B, status); - } - mthca_dbg(dev, "Mapped %d KB of host memory for FW.\n", ts); + switch (op) { + case CMD_MAP_FA: + mthca_dbg(dev, "Mapped %d chunks/%d KB for FW.\n", tc, ts); + break; + case CMD_MAP_ICM_AUX: + mthca_dbg(dev, "Mapped %d chunks/%d KB for ICM aux.\n", tc, ts); + break; + case CMD_MAP_ICM: + mthca_dbg(dev, "Mapped %d chunks/%d KB at %llx for ICM.\n", + tc, ts, (unsigned long long) virt - (ts << 10)); + break; + } out: pci_free_consistent(dev->pdev, PAGE_SIZE, inbox, indma); return err; } +int mthca_MAP_FA(struct mthca_dev *dev, struct mthca_icm *icm, u8 *status) +{ + return mthca_map_cmd(dev, CMD_MAP_FA, icm, -1, status); +} + int mthca_UNMAP_FA(struct mthca_dev *dev, u8 *status) { return mthca_cmd(dev, 0, 0, 0, CMD_UNMAP_FA, CMD_TIME_CLASS_B, status); @@ -1068,8 +1096,11 @@ #define INIT_HCA_MTT_BASE_OFFSET (INIT_HCA_TPT_OFFSET + 0x10) #define INIT_HCA_UAR_OFFSET 0x120 #define INIT_HCA_UAR_BASE_OFFSET (INIT_HCA_UAR_OFFSET + 0x00) +#define INIT_HCA_UARC_SZ_OFFSET (INIT_HCA_UAR_OFFSET + 0x09) +#define INIT_HCA_LOG_UAR_SZ_OFFSET (INIT_HCA_UAR_OFFSET + 0x0a) #define INIT_HCA_UAR_PAGE_SZ_OFFSET (INIT_HCA_UAR_OFFSET + 0x0b) #define INIT_HCA_UAR_SCATCH_BASE_OFFSET (INIT_HCA_UAR_OFFSET + 0x10) +#define INIT_HCA_UAR_CTX_BASE_OFFSET (INIT_HCA_UAR_OFFSET + 0x18) inbox = pci_alloc_consistent(dev->pdev, INIT_HCA_IN_SIZE, &indma); if (!inbox) @@ -1117,7 +1148,8 @@ /* TPT attributes */ MTHCA_PUT(inbox, param->mpt_base, INIT_HCA_MPT_BASE_OFFSET); - MTHCA_PUT(inbox, param->mtt_seg_sz, INIT_HCA_MTT_SEG_SZ_OFFSET); + if (dev->hca_type != ARBEL_NATIVE) + MTHCA_PUT(inbox, param->mtt_seg_sz, INIT_HCA_MTT_SEG_SZ_OFFSET); MTHCA_PUT(inbox, param->log_mpt_sz, INIT_HCA_LOG_MPT_SZ_OFFSET); MTHCA_PUT(inbox, param->mtt_base, INIT_HCA_MTT_BASE_OFFSET); @@ -1125,7 +1157,14 @@ { u8 uar_page_sz = PAGE_SHIFT - 12; MTHCA_PUT(inbox, uar_page_sz, INIT_HCA_UAR_PAGE_SZ_OFFSET); - MTHCA_PUT(inbox, param->uar_scratch_base, INIT_HCA_UAR_SCATCH_BASE_OFFSET); + } + + MTHCA_PUT(inbox, param->uar_scratch_base, INIT_HCA_UAR_SCATCH_BASE_OFFSET); + + if (dev->hca_type == ARBEL_NATIVE) { + MTHCA_PUT(inbox, param->log_uarc_sz, INIT_HCA_UARC_SZ_OFFSET); + MTHCA_PUT(inbox, param->log_uar_sz, INIT_HCA_LOG_UAR_SZ_OFFSET); + MTHCA_PUT(inbox, param->uarc_base, INIT_HCA_UAR_CTX_BASE_OFFSET); } err = mthca_cmd(dev, indma, 0, 0, CMD_INIT_HCA, @@ -1199,6 +1238,68 @@ return mthca_cmd(dev, 0, 0, panic, CMD_CLOSE_HCA, HZ, status); } +int mthca_MAP_ICM(struct mthca_dev *dev, struct mthca_icm *icm, u64 virt, u8 *status) +{ + return mthca_map_cmd(dev, CMD_MAP_ICM, icm, virt, status); +} + +int mthca_MAP_ICM_page(struct mthca_dev *dev, u64 dma_addr, u64 virt, u8 *status) +{ + u64 *inbox; + dma_addr_t indma; + int err; + + inbox = pci_alloc_consistent(dev->pdev, 16, &indma); + if (!inbox) + return -ENOMEM; + + inbox[0] = cpu_to_be64(virt); + inbox[1] = cpu_to_be64(dma_addr | (PAGE_SHIFT - 12)); + + err = mthca_cmd(dev, indma, 1, 0, CMD_MAP_ICM, CMD_TIME_CLASS_B, status); + + pci_free_consistent(dev->pdev, 16, inbox, indma); + + if (!err) + mthca_dbg(dev, "Mapped page at %llx for ICM.\n", + (unsigned long long) virt); + + return err; +} + +int mthca_UNMAP_ICM(struct mthca_dev *dev, u64 virt, u32 page_count, u8 *status) +{ + return mthca_cmd(dev, virt, page_count, 0, CMD_UNMAP_ICM, CMD_TIME_CLASS_B, status); +} + +int mthca_MAP_ICM_AUX(struct mthca_dev *dev, struct mthca_icm *icm, u8 *status) +{ + return mthca_map_cmd(dev, CMD_MAP_ICM_AUX, icm, -1, status); +} + +int mthca_UNMAP_ICM_AUX(struct mthca_dev *dev, u8 *status) +{ + return mthca_cmd(dev, 0, 0, 0, CMD_UNMAP_ICM_AUX, CMD_TIME_CLASS_B, status); +} + +int mthca_SET_ICM_SIZE(struct mthca_dev *dev, u64 icm_size, u64 *aux_pages, + u8 *status) +{ + int ret = mthca_cmd_imm(dev, icm_size, aux_pages, 0, 0, CMD_SET_ICM_SIZE, + CMD_TIME_CLASS_A, status); + + if (ret || status) + return ret; + + /* + * Arbel page size is always 4 KB; round up number of system + * pages needed. + */ + *aux_pages = (*aux_pages + (1 << (PAGE_SHIFT - 12)) - 1) >> (PAGE_SHIFT - 12); + + return 0; +} + int mthca_SW2HW_MPT(struct mthca_dev *dev, void *mpt_entry, int mpt_index, u8 *status) { --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_memfree.h 2005-01-23 08:31:06.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_memfree.h 2005-01-23 20:26:07.032380320 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -38,8 +38,10 @@ #include #include +#include + #define MTHCA_ICM_CHUNK_LEN \ - ((512 - sizeof (struct list_head) - 2 * sizeof (int)) / \ + ((256 - sizeof (struct list_head) - 2 * sizeof (int)) / \ (sizeof (struct scatterlist))) struct mthca_icm_chunk { @@ -53,6 +55,13 @@ struct list_head chunk_list; }; +struct mthca_icm_table { + u64 virt; + int num_icm; + struct semaphore sem; + struct mthca_icm *icm[0]; +}; + struct mthca_icm_iter { struct mthca_icm *icm; struct mthca_icm_chunk *chunk; @@ -65,6 +74,12 @@ unsigned int gfp_mask); void mthca_free_icm(struct mthca_dev *dev, struct mthca_icm *icm); +struct mthca_icm_table *mthca_alloc_icm_table(struct mthca_dev *dev, + u64 virt, unsigned size, + unsigned reserved, + int use_lowmem); +void mthca_free_icm_table(struct mthca_dev *dev, struct mthca_icm_table *table); + static inline void mthca_icm_first(struct mthca_icm *icm, struct mthca_icm_iter *iter) { --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_dev.h 2005-01-23 08:30:19.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_dev.h 2005-01-23 20:26:07.030380624 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004 Topspin Communications. All rights reserved. + * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU @@ -153,10 +153,12 @@ }; struct mthca_mr_table { - struct mthca_alloc mpt_alloc; - int max_mtt_order; - unsigned long **mtt_buddy; - u64 mtt_base; + struct mthca_alloc mpt_alloc; + int max_mtt_order; + unsigned long **mtt_buddy; + u64 mtt_base; + struct mthca_icm_table *mtt_table; + struct mthca_icm_table *mpt_table; }; struct mthca_eq_table { @@ -164,23 +166,29 @@ void __iomem *clr_int; u32 clr_mask; struct mthca_eq eq[MTHCA_NUM_EQ]; + u64 icm_virt; + struct page *icm_page; + dma_addr_t icm_dma; int have_irq; u8 inta_pin; }; struct mthca_cq_table { - struct mthca_alloc alloc; - spinlock_t lock; - struct mthca_array cq; + struct mthca_alloc alloc; + spinlock_t lock; + struct mthca_array cq; + struct mthca_icm_table *table; }; struct mthca_qp_table { - struct mthca_alloc alloc; - u32 rdb_base; - int rdb_shift; - int sqp_start; - spinlock_t lock; - struct mthca_array qp; + struct mthca_alloc alloc; + u32 rdb_base; + int rdb_shift; + int sqp_start; + spinlock_t lock; + struct mthca_array qp; + struct mthca_icm_table *qp_table; + struct mthca_icm_table *eqp_table; }; struct mthca_av_table { @@ -216,7 +224,8 @@ u64 clr_int_base; u64 eq_arm_base; u64 eq_set_ci_base; - struct mthca_icm *icm; + struct mthca_icm *fw_icm; + struct mthca_icm *aux_icm; u16 fw_pages; } arbel; } fw; @@ -329,6 +338,9 @@ u32 access, struct mthca_mr *mr); void mthca_free_mr(struct mthca_dev *dev, struct mthca_mr *mr); +int mthca_map_eq_icm(struct mthca_dev *dev, u64 icm_virt); +void mthca_unmap_eq_icm(struct mthca_dev *dev); + int mthca_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *entry); void mthca_arm_cq(struct mthca_dev *dev, struct mthca_cq *cq, From roland at topspin.com Sun Jan 23 22:14:23 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 23 Jan 2005 22:14:23 -0800 Subject: [openib-general] [PATCH][5/12] InfiniBand/mthca: don't write ECR in MSI-X mode In-Reply-To: <20051232214.1JLCX02EnyVBhKBe@topspin.com> Message-ID: <20051232214.2iCZjnfrVaRa2RW5@topspin.com> From: "Michael S. Tsirkin" We don't need to write to the ECR to clear events when using MSI-X, since we never read the ECR anyway. Signed-off-by: Michael S. Tsirkin Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_eq.c 2005-01-23 20:38:50.946247760 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_eq.c 2005-01-23 20:47:40.946675448 -0800 @@ -381,7 +381,6 @@ struct mthca_eq *eq = eq_ptr; struct mthca_dev *dev = eq->dev; - writel(eq->ecr_mask, dev->hcr + MTHCA_ECR_CLR_OFFSET + 4); mthca_eq_int(dev, eq); /* MSI-X vectors always belong to us */ From roland at topspin.com Sun Jan 23 22:14:23 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 23 Jan 2005 22:14:23 -0800 Subject: [openib-general] [PATCH][6/12] InfiniBand/mthca: pass full process_mad info to firmware In-Reply-To: <20051232214.2iCZjnfrVaRa2RW5@topspin.com> Message-ID: <20051232214.2ZjgnbDloKBl5KUG@topspin.com> From: "Michael S. Tsirkin" Pass full extended MAD information to firmware when a work completion is supplied to the MAD_IFC command. This allows B_Key checking/trap generation. Signed-off-by: Michael S. Tsirkin Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_cmd.h 2005-01-23 20:39:02.039561320 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_cmd.h 2005-01-23 20:49:34.829362648 -0800 @@ -280,7 +280,8 @@ void *qp_context, u8 *status); int mthca_CONF_SPECIAL_QP(struct mthca_dev *dev, int type, u32 qpn, u8 *status); -int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int port, +int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int ignore_bkey, + int port, struct ib_wc* in_wc, struct ib_grh* in_grh, void *in_mad, void *response_mad, u8 *status); int mthca_READ_MGM(struct mthca_dev *dev, int index, void *mgm, u8 *status); --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_provider.c 2005-01-23 20:39:02.036561776 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_provider.c 2005-01-23 20:49:34.826363104 -0800 @@ -59,8 +59,8 @@ in_mad->method = IB_MGMT_METHOD_GET; in_mad->attr_id = IB_SMP_ATTR_NODE_INFO; - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - 1, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + 1, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -104,8 +104,8 @@ in_mad->attr_id = IB_SMP_ATTR_PORT_INFO; in_mad->attr_mod = cpu_to_be32(port); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -189,8 +189,8 @@ in_mad->attr_id = IB_SMP_ATTR_PKEY_TABLE; in_mad->attr_mod = cpu_to_be32(index / 32); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -228,8 +228,8 @@ in_mad->attr_id = IB_SMP_ATTR_PORT_INFO; in_mad->attr_mod = cpu_to_be32(port); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; @@ -248,8 +248,8 @@ in_mad->attr_id = IB_SMP_ATTR_GUID_INFO; in_mad->attr_mod = cpu_to_be32(index / 8); - err = mthca_MAD_IFC(to_mdev(ibdev), 1, - port, in_mad, out_mad, + err = mthca_MAD_IFC(to_mdev(ibdev), 1, 1, + port, NULL, NULL, in_mad, out_mad, &status); if (err) goto out; --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_cmd.c 2005-01-23 20:39:02.038561472 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_cmd.c 2005-01-23 20:49:34.828362800 -0800 @@ -36,6 +36,7 @@ #include #include #include +#include #include "mthca_dev.h" #include "mthca_config_reg.h" @@ -1626,13 +1627,24 @@ CMD_TIME_CLASS_B, status); } -int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int port, - void *in_mad, void *response_mad, u8 *status) { +int mthca_MAD_IFC(struct mthca_dev *dev, int ignore_mkey, int ignore_bkey, + int port, struct ib_wc* in_wc, struct ib_grh* in_grh, + void *in_mad, void *response_mad, u8 *status) +{ void *box; dma_addr_t dma; int err; + u32 in_modifier = port; + u8 op_modifier = 0; -#define MAD_IFC_BOX_SIZE 512 +#define MAD_IFC_BOX_SIZE 0x400 +#define MAD_IFC_MY_QPN_OFFSET 0x100 +#define MAD_IFC_RQPN_OFFSET 0x104 +#define MAD_IFC_SL_OFFSET 0x108 +#define MAD_IFC_G_PATH_OFFSET 0x109 +#define MAD_IFC_RLID_OFFSET 0x10a +#define MAD_IFC_PKEY_OFFSET 0x10e +#define MAD_IFC_GRH_OFFSET 0x140 box = pci_alloc_consistent(dev->pdev, MAD_IFC_BOX_SIZE, &dma); if (!box) @@ -1640,11 +1652,46 @@ memcpy(box, in_mad, 256); - err = mthca_cmd_box(dev, dma, dma + 256, port, !!ignore_mkey, + /* + * Key check traps can't be generated unless we have in_wc to + * tell us where to send the trap. + */ + if (ignore_mkey || !in_wc) + op_modifier |= 0x1; + if (ignore_bkey || !in_wc) + op_modifier |= 0x2; + + if (in_wc) { + u8 val; + + memset(box + 256, 0, 256); + + MTHCA_PUT(box, in_wc->qp_num, MAD_IFC_MY_QPN_OFFSET); + MTHCA_PUT(box, in_wc->src_qp, MAD_IFC_RQPN_OFFSET); + + val = in_wc->sl << 4; + MTHCA_PUT(box, val, MAD_IFC_SL_OFFSET); + + val = in_wc->dlid_path_bits | + (in_wc->wc_flags & IB_WC_GRH ? 0x80 : 0); + MTHCA_PUT(box, val, MAD_IFC_GRH_OFFSET); + + MTHCA_PUT(box, in_wc->slid, MAD_IFC_RLID_OFFSET); + MTHCA_PUT(box, in_wc->pkey_index, MAD_IFC_PKEY_OFFSET); + + if (in_grh) + memcpy((u8 *) box + MAD_IFC_GRH_OFFSET, in_grh, 40); + + op_modifier |= 0x10; + + in_modifier |= in_wc->slid << 16; + } + + err = mthca_cmd_box(dev, dma, dma + 512, in_modifier, op_modifier, CMD_MAD_IFC, CMD_TIME_CLASS_C, status); if (!err && !*status) - memcpy(response_mad, box + 256, 256); + memcpy(response_mad, box + 512, 256); pci_free_consistent(dev->pdev, MAD_IFC_BOX_SIZE, box, dma); return err; --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_mad.c 2005-01-23 08:31:45.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_mad.c 2005-01-23 20:49:34.827362952 -0800 @@ -232,8 +232,9 @@ return IB_MAD_RESULT_SUCCESS; err = mthca_MAD_IFC(to_mdev(ibdev), - !!(mad_flags & IB_MAD_IGNORE_MKEY), - port_num, in_mad, out_mad, + mad_flags & IB_MAD_IGNORE_MKEY, + mad_flags & IB_MAD_IGNORE_BKEY, + port_num, in_wc, in_grh, in_mad, out_mad, &status); if (err) { mthca_err(to_mdev(ibdev), "MAD_IFC failed\n"); From roland at topspin.com Sun Jan 23 22:14:23 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 23 Jan 2005 22:14:23 -0800 Subject: [openib-general] [PATCH][3/12] InfiniBand/mthca: implement modifying port attributes In-Reply-To: <20051232214.G5RSVEyRyy7IWtkk@topspin.com> Message-ID: <20051232214.v4gD7pRb7UQo64yW@topspin.com> Implement the port_modify() device method for mthca using the SET_IB firmware command. In particular this allows changing the port capability mask. Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_cmd.h 2005-01-23 20:38:50.944248064 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_cmd.h 2005-01-23 20:39:02.039561320 -0800 @@ -215,6 +215,13 @@ u64 si_guid; }; +struct mthca_set_ib_param { + int set_si_guid; + int reset_qkey_viol; + u64 si_guid; + u32 cap_mask; +}; + int mthca_cmd_use_events(struct mthca_dev *dev); void mthca_cmd_use_polling(struct mthca_dev *dev); void mthca_cmd_event(struct mthca_dev *dev, u16 token, @@ -241,6 +248,8 @@ int port, u8 *status); int mthca_CLOSE_IB(struct mthca_dev *dev, int port, u8 *status); int mthca_CLOSE_HCA(struct mthca_dev *dev, int panic, u8 *status); +int mthca_SET_IB(struct mthca_dev *dev, struct mthca_set_ib_param *param, + int port, u8 *status); int mthca_MAP_ICM(struct mthca_dev *dev, struct mthca_icm *icm, u64 virt, u8 *status); int mthca_MAP_ICM_page(struct mthca_dev *dev, u64 dma_addr, u64 virt, u8 *status); int mthca_UNMAP_ICM(struct mthca_dev *dev, u64 virt, u32 page_count, u8 *status); --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_provider.c 2005-01-23 20:38:25.991041528 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_provider.c 2005-01-23 20:39:02.036561776 -0800 @@ -137,7 +137,35 @@ u8 port, int port_modify_mask, struct ib_port_modify *props) { - return 0; + struct mthca_set_ib_param set_ib; + struct ib_port_attr attr; + int err; + u8 status; + + if (down_interruptible(&to_mdev(ibdev)->cap_mask_mutex)) + return -ERESTARTSYS; + + err = mthca_query_port(ibdev, port, &attr); + if (err) + goto out; + + set_ib.set_si_guid = 0; + set_ib.reset_qkey_viol = !!(port_modify_mask & IB_PORT_RESET_QKEY_CNTR); + + set_ib.cap_mask = (attr.port_cap_flags | props->set_port_cap_mask) & + ~props->clr_port_cap_mask; + + err = mthca_SET_IB(to_mdev(ibdev), &set_ib, port, &status); + if (err) + goto out; + if (status) { + err = -EINVAL; + goto out; + } + +out: + up(&to_mdev(ibdev)->cap_mask_mutex); + return err; } static int mthca_query_pkey(struct ib_device *ibdev, @@ -619,6 +647,8 @@ } } + init_MUTEX(&dev->cap_mask_mutex); + return 0; } --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_cmd.c 2005-01-23 20:38:50.949247304 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_cmd.c 2005-01-23 20:39:02.038561472 -0800 @@ -1238,6 +1238,41 @@ return mthca_cmd(dev, 0, 0, panic, CMD_CLOSE_HCA, HZ, status); } +int mthca_SET_IB(struct mthca_dev *dev, struct mthca_set_ib_param *param, + int port, u8 *status) +{ + u32 *inbox; + dma_addr_t indma; + int err; + u32 flags = 0; + +#define SET_IB_IN_SIZE 0x40 +#define SET_IB_FLAGS_OFFSET 0x00 +#define SET_IB_FLAG_SIG (1 << 18) +#define SET_IB_FLAG_RQK (1 << 0) +#define SET_IB_CAP_MASK_OFFSET 0x04 +#define SET_IB_SI_GUID_OFFSET 0x08 + + inbox = pci_alloc_consistent(dev->pdev, SET_IB_IN_SIZE, &indma); + if (!inbox) + return -ENOMEM; + + memset(inbox, 0, SET_IB_IN_SIZE); + + flags |= param->set_si_guid ? SET_IB_FLAG_SIG : 0; + flags |= param->reset_qkey_viol ? SET_IB_FLAG_RQK : 0; + MTHCA_PUT(inbox, flags, SET_IB_FLAGS_OFFSET); + + MTHCA_PUT(inbox, param->cap_mask, SET_IB_CAP_MASK_OFFSET); + MTHCA_PUT(inbox, param->si_guid, SET_IB_SI_GUID_OFFSET); + + err = mthca_cmd(dev, indma, port, 0, CMD_SET_IB, + CMD_TIME_CLASS_B, status); + + pci_free_consistent(dev->pdev, INIT_HCA_IN_SIZE, inbox, indma); + return err; +} + int mthca_MAP_ICM(struct mthca_dev *dev, struct mthca_icm *icm, u64 virt, u8 *status) { return mthca_map_cmd(dev, CMD_MAP_ICM, icm, virt, status); --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_dev.h 2005-01-23 20:38:50.950247152 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_dev.h 2005-01-23 20:39:02.036561776 -0800 @@ -234,6 +234,7 @@ u64 ddr_end; MTHCA_DECLARE_DOORBELL_LOCK(doorbell_lock) + struct semaphore cap_mask_mutex; void __iomem *hcr; void __iomem *clr_base; From roland at topspin.com Sun Jan 23 22:14:24 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 23 Jan 2005 22:14:24 -0800 Subject: [openib-general] [PATCH][8/12] InfiniBand/mthca: test IRQ routing during initialization In-Reply-To: <20051232214.JlqWjfrLoi3PpTCk@topspin.com> Message-ID: <20051232214.WfzWlq9JcWt0oefR@topspin.com> When we switch to interrupt-driven command mode, test interrupt generation with a NOP firmware command. Broken MSI/MSI-X and interrupt line routing problems seem to be very common, and this makes the error message much clearer -- before this change we would mysteriously fail when initializing the QP table. Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_cmd.h 2005-01-23 20:49:34.829362648 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_cmd.h 2005-01-23 20:52:01.964994632 -0800 @@ -289,6 +289,7 @@ u8 *status); int mthca_MGID_HASH(struct mthca_dev *dev, void *gid, u16 *hash, u8 *status); +int mthca_NOP(struct mthca_dev *dev, u8 *status); #define MAILBOX_ALIGN(x) ((void *) ALIGN((unsigned long) (x), MTHCA_CMD_MAILBOX_ALIGN)) --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_main.c 2005-01-23 20:38:50.947247608 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_main.c 2005-01-23 20:52:01.962994936 -0800 @@ -570,6 +570,7 @@ static int __devinit mthca_setup_hca(struct mthca_dev *dev) { int err; + u8 status; MTHCA_INIT_DOORBELL_LOCK(&dev->doorbell_lock); @@ -615,6 +616,18 @@ goto err_eq_table_free; } + err = mthca_NOP(dev, &status); + if (err || status) { + mthca_err(dev, "NOP command failed to generate interrupt, aborting.\n"); + if (dev->mthca_flags & (MTHCA_FLAG_MSI | MTHCA_FLAG_MSI_X)) + mthca_err(dev, "Try again with MSI/MSI-X disabled.\n"); + else + mthca_err(dev, "BIOS or ACPI interrupt routing problem?\n"); + + goto err_cmd_poll; + } else + mthca_dbg(dev, "NOP command IRQ test passed\n"); + err = mthca_init_cq_table(dev); if (err) { mthca_err(dev, "Failed to initialize " --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_cmd.c 2005-01-23 20:49:34.828362800 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_cmd.c 2005-01-23 20:52:01.963994784 -0800 @@ -1757,3 +1757,8 @@ pci_unmap_single(dev->pdev, indma, 16, PCI_DMA_TODEVICE); return err; } + +int mthca_NOP(struct mthca_dev *dev, u8 *status) +{ + return mthca_cmd(dev, 0, 0x1f, 0, CMD_NOP, msecs_to_jiffies(100), status); +} From roland at topspin.com Sun Jan 23 22:14:24 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 23 Jan 2005 22:14:24 -0800 Subject: [openib-general] [PATCH][7/12] InfiniBand/mthca: optimize event queue handling In-Reply-To: <20051232214.2ZjgnbDloKBl5KUG@topspin.com> Message-ID: <20051232214.JlqWjfrLoi3PpTCk@topspin.com> From: "Michael S. Tsirkin" Event queue handling performance improvements: - Only calculate EQ entry address once, and don't truncate the consumer index until we really need to. - Only read ECR once. If a new event occurs while we're in the interrupt handler, we'll get another interrupt anyway, since we only clear events once. Signed-off-by: Michael S. Tsirkin Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_provider.h 2005-01-23 08:30:27.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_provider.h 2005-01-23 20:51:23.739805744 -0800 @@ -66,11 +66,11 @@ struct mthca_dev *dev; int eqn; u32 ecr_mask; + u32 cons_index; u16 msi_x_vector; u16 msi_x_entry; int have_irq; int nent; - int cons_index; struct mthca_buf_list *page_list; struct mthca_mr mr; }; --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_eq.c 2005-01-23 20:47:40.946675448 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_eq.c 2005-01-23 20:51:23.740805592 -0800 @@ -164,12 +164,12 @@ MTHCA_ASYNC_EVENT_MASK; } -static inline void set_eq_ci(struct mthca_dev *dev, int eqn, int ci) +static inline void set_eq_ci(struct mthca_dev *dev, struct mthca_eq *eq, u32 ci) { u32 doorbell[2]; - doorbell[0] = cpu_to_be32(MTHCA_EQ_DB_SET_CI | eqn); - doorbell[1] = cpu_to_be32(ci); + doorbell[0] = cpu_to_be32(MTHCA_EQ_DB_SET_CI | eq->eqn); + doorbell[1] = cpu_to_be32(ci & (eq->nent - 1)); mthca_write64(doorbell, dev->kar + MTHCA_EQ_DOORBELL, @@ -200,21 +200,22 @@ MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock)); } -static inline struct mthca_eqe *get_eqe(struct mthca_eq *eq, int entry) +static inline struct mthca_eqe *get_eqe(struct mthca_eq *eq, u32 entry) { - return eq->page_list[entry * MTHCA_EQ_ENTRY_SIZE / PAGE_SIZE].buf - + (entry * MTHCA_EQ_ENTRY_SIZE) % PAGE_SIZE; + unsigned long off = (entry & (eq->nent - 1)) * MTHCA_EQ_ENTRY_SIZE; + return eq->page_list[off / PAGE_SIZE].buf + off % PAGE_SIZE; } -static inline int next_eqe_sw(struct mthca_eq *eq) +static inline struct mthca_eqe* next_eqe_sw(struct mthca_eq *eq) { - return !(MTHCA_EQ_ENTRY_OWNER_HW & - get_eqe(eq, eq->cons_index)->owner); + struct mthca_eqe* eqe; + eqe = get_eqe(eq, eq->cons_index); + return (MTHCA_EQ_ENTRY_OWNER_HW & eqe->owner) ? NULL : eqe; } -static inline void set_eqe_hw(struct mthca_eq *eq, int entry) +static inline void set_eqe_hw(struct mthca_eqe *eqe) { - get_eqe(eq, entry)->owner = MTHCA_EQ_ENTRY_OWNER_HW; + eqe->owner = MTHCA_EQ_ENTRY_OWNER_HW; } static void port_change(struct mthca_dev *dev, int port, int active) @@ -235,10 +236,10 @@ { struct mthca_eqe *eqe; int disarm_cqn; + int eqes_found = 0; - while (next_eqe_sw(eq)) { + while ((eqe = next_eqe_sw(eq))) { int set_ci = 0; - eqe = get_eqe(eq, eq->cons_index); /* * Make sure we read EQ entry contents after we've @@ -328,12 +329,13 @@ break; }; - set_eqe_hw(eq, eq->cons_index); - eq->cons_index = (eq->cons_index + 1) & (eq->nent - 1); + set_eqe_hw(eqe); + ++eq->cons_index; + eqes_found = 1; if (set_ci) { wmb(); /* see comment below */ - set_eq_ci(dev, eq->eqn, eq->cons_index); + set_eq_ci(dev, eq, eq->cons_index); set_ci = 0; } } @@ -347,8 +349,10 @@ * possibility of the HCA writing an entry and then * having set_eqe_hw() overwrite the owner field. */ - wmb(); - set_eq_ci(dev, eq->eqn, eq->cons_index); + if (likely(eqes_found)) { + wmb(); + set_eq_ci(dev, eq, eq->cons_index); + } eq_req_not(dev, eq->eqn); } @@ -362,7 +366,7 @@ if (dev->eq_table.clr_mask) writel(dev->eq_table.clr_mask, dev->eq_table.clr_int); - while ((ecr = readl(dev->hcr + MTHCA_ECR_OFFSET + 4)) != 0) { + if ((ecr = readl(dev->hcr + MTHCA_ECR_OFFSET + 4)) != 0) { work = 1; writel(ecr, dev->hcr + MTHCA_ECR_CLR_OFFSET + 4); @@ -440,7 +444,7 @@ } for (i = 0; i < nent; ++i) - set_eqe_hw(eq, i); + set_eqe_hw(get_eqe(eq, i)); eq->eqn = mthca_alloc(&dev->eq_table.alloc); if (eq->eqn == -1) From roland at topspin.com Sun Jan 23 22:14:24 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 23 Jan 2005 22:14:24 -0800 Subject: [openib-general] [PATCH][9/12] InfiniBand/ipoib: remove uses of yield() In-Reply-To: <20051232214.WfzWlq9JcWt0oefR@topspin.com> Message-ID: <20051232214.j7TLAr2Uqj9NHnIa@topspin.com> Replace uses of yield() with msleep(1) as suggested by kernel janitors. Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/ulp/ipoib/ipoib_ib.c 2005-01-23 08:31:58.000000000 -0800 +++ linux-bk/drivers/infiniband/ulp/ipoib/ipoib_ib.c 2005-01-23 20:52:46.294255560 -0800 @@ -509,7 +509,7 @@ goto timeout; } - yield(); + msleep(1); } ipoib_dbg(priv, "All sends and receives done.\n"); @@ -535,7 +535,7 @@ break; } - yield(); + msleep(1); } return 0; From roland at topspin.com Sun Jan 23 22:14:24 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 23 Jan 2005 22:14:24 -0800 Subject: [openib-general] [PATCH][11/12] InfiniBand/mthca: clean up ioremap()/request_region() usage In-Reply-To: <20051232214.MwCsxKOebnykJtRc@topspin.com> Message-ID: <20051232214.3TWW9w76vhKgw1zV@topspin.com> From: "Michael S. Tsirkin" Here are misc fixes for mthca mapping: 1. Thinkably, MSI tables or another region could fall between HCR and ECR tables. Thus its arguably wrong to map both tables in one region. So, do it separately. I think its also more readable to have ecr_base and access ecr there, not access ecr with hcr pointer. 2. mthca_request_regions error handling was borken (wrong order of cleanups). For example on all errors pci_release_region was called which is wrong if the region was not yet mapped. And other such cleanups. 3. Fixed some error messages too. Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_eq.c 2005-01-23 20:51:23.740805592 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_eq.c 2005-01-23 20:58:55.772086392 -0800 @@ -366,10 +366,11 @@ if (dev->eq_table.clr_mask) writel(dev->eq_table.clr_mask, dev->eq_table.clr_int); - if ((ecr = readl(dev->hcr + MTHCA_ECR_OFFSET + 4)) != 0) { + if ((ecr = readl(dev->ecr_base + 4)) != 0) { work = 1; - writel(ecr, dev->hcr + MTHCA_ECR_CLR_OFFSET + 4); + writel(ecr, dev->ecr_base + + MTHCA_ECR_CLR_BASE - MTHCA_ECR_BASE + 4); for (i = 0; i < MTHCA_NUM_EQ; ++i) if (ecr & dev->eq_table.eq[i].ecr_mask) --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_main.c 2005-01-23 20:52:01.962994936 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_main.c 2005-01-23 20:58:55.771086544 -0800 @@ -699,57 +699,83 @@ */ if (!request_mem_region(pci_resource_start(pdev, 0) + MTHCA_HCR_BASE, - MTHCA_MAP_HCR_SIZE, - DRV_NAME)) - return -EBUSY; + MTHCA_HCR_SIZE, + DRV_NAME)) { + err = -EBUSY; + goto err_hcr_failed; + } + + if (!request_mem_region(pci_resource_start(pdev, 0) + + MTHCA_ECR_BASE, + MTHCA_MAP_ECR_SIZE, + DRV_NAME)) { + err = -EBUSY; + goto err_ecr_failed; + } if (!request_mem_region(pci_resource_start(pdev, 0) + MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE, DRV_NAME)) { err = -EBUSY; - goto err_bar0_beg; + goto err_int_failed; } + err = pci_request_region(pdev, 2, DRV_NAME); if (err) - goto err_bar0_end; + goto err_bar2_failed; if (!ddr_hidden) { err = pci_request_region(pdev, 4, DRV_NAME); if (err) - goto err_bar2; + goto err_bar4_failed; } return 0; -err_bar0_beg: - release_mem_region(pci_resource_start(pdev, 0) + - MTHCA_HCR_BASE, - MTHCA_MAP_HCR_SIZE); +err_bar4_failed: + + pci_release_region(pdev, 2); +err_bar2_failed: -err_bar0_end: release_mem_region(pci_resource_start(pdev, 0) + MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE); +err_int_failed: + + release_mem_region(pci_resource_start(pdev, 0) + + MTHCA_ECR_BASE, + MTHCA_MAP_ECR_SIZE); +err_ecr_failed: + + release_mem_region(pci_resource_start(pdev, 0) + + MTHCA_HCR_BASE, + MTHCA_HCR_SIZE); +err_hcr_failed: -err_bar2: - pci_release_region(pdev, 2); return err; } static void mthca_release_regions(struct pci_dev *pdev, int ddr_hidden) { - release_mem_region(pci_resource_start(pdev, 0) + - MTHCA_HCR_BASE, - MTHCA_MAP_HCR_SIZE); + if (!ddr_hidden) + pci_release_region(pdev, 4); + + pci_release_region(pdev, 2); + release_mem_region(pci_resource_start(pdev, 0) + MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE); - pci_release_region(pdev, 2); - if (!ddr_hidden) - pci_release_region(pdev, 4); + + release_mem_region(pci_resource_start(pdev, 0) + + MTHCA_ECR_BASE, + MTHCA_MAP_ECR_SIZE); + + release_mem_region(pci_resource_start(pdev, 0) + + MTHCA_HCR_BASE, + MTHCA_HCR_SIZE); } static int __devinit mthca_enable_msi_x(struct mthca_dev *mdev) @@ -911,29 +937,39 @@ mdev->cmd.use_events = 0; mthca_base = pci_resource_start(pdev, 0); - mdev->hcr = ioremap(mthca_base + MTHCA_HCR_BASE, MTHCA_MAP_HCR_SIZE); + mdev->hcr = ioremap(mthca_base + MTHCA_HCR_BASE, MTHCA_HCR_SIZE); if (!mdev->hcr) { mthca_err(mdev, "Couldn't map command register, " "aborting.\n"); err = -ENOMEM; goto err_free_dev; } + mdev->clr_base = ioremap(mthca_base + MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE); if (!mdev->clr_base) { - mthca_err(mdev, "Couldn't map command register, " + mthca_err(mdev, "Couldn't map interrupt clear register, " "aborting.\n"); err = -ENOMEM; goto err_iounmap; } + mdev->ecr_base = ioremap(mthca_base + MTHCA_ECR_BASE, + MTHCA_ECR_SIZE + MTHCA_ECR_CLR_SIZE); + if (!mdev->ecr_base) { + mthca_err(mdev, "Couldn't map ecr register, " + "aborting.\n"); + err = -ENOMEM; + goto err_iounmap_clr; + } + mthca_base = pci_resource_start(pdev, 2); mdev->kar = ioremap(mthca_base + PAGE_SIZE * MTHCA_KAR_PAGE, PAGE_SIZE); if (!mdev->kar) { mthca_err(mdev, "Couldn't map kernel access region, " "aborting.\n"); err = -ENOMEM; - goto err_iounmap_clr; + goto err_iounmap_ecr; } err = mthca_tune_pci(mdev); @@ -982,6 +1018,9 @@ err_iounmap_kar: iounmap(mdev->kar); +err_iounmap_ecr: + iounmap(mdev->ecr_base); + err_iounmap_clr: iounmap(mdev->clr_base); @@ -1033,6 +1072,7 @@ mthca_close_hca(mdev); iounmap(mdev->hcr); + iounmap(mdev->ecr_base); iounmap(mdev->clr_base); if (mdev->mthca_flags & MTHCA_FLAG_MSI_X) --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_config_reg.h 2005-01-23 08:30:41.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_config_reg.h 2005-01-23 20:58:55.772086392 -0800 @@ -43,13 +43,8 @@ #define MTHCA_ECR_SIZE 0x00008 #define MTHCA_ECR_CLR_BASE 0x80708 #define MTHCA_ECR_CLR_SIZE 0x00008 -#define MTHCA_ECR_OFFSET (MTHCA_ECR_BASE - MTHCA_HCR_BASE) -#define MTHCA_ECR_CLR_OFFSET (MTHCA_ECR_CLR_BASE - MTHCA_HCR_BASE) +#define MTHCA_MAP_ECR_SIZE (MTHCA_ECR_SIZE + MTHCA_ECR_CLR_SIZE) #define MTHCA_CLR_INT_BASE 0xf00d8 #define MTHCA_CLR_INT_SIZE 0x00008 -#define MTHCA_MAP_HCR_SIZE (MTHCA_ECR_CLR_BASE + \ - MTHCA_ECR_CLR_SIZE - \ - MTHCA_HCR_BASE) - #endif /* MTHCA_CONFIG_REG_H */ --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_dev.h 2005-01-23 20:39:02.036561776 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_dev.h 2005-01-23 20:58:55.770086696 -0800 @@ -237,6 +237,7 @@ struct semaphore cap_mask_mutex; void __iomem *hcr; + void __iomem *ecr_base; void __iomem *clr_base; void __iomem *kar; From roland at topspin.com Sun Jan 23 22:14:24 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 23 Jan 2005 22:14:24 -0800 Subject: [openib-general] [PATCH][10/12] InfiniBand/core: add IsSM userspace support In-Reply-To: <20051232214.j7TLAr2Uqj9NHnIa@topspin.com> Message-ID: <20051232214.MwCsxKOebnykJtRc@topspin.com> Implement setting/clearing IsSM port capability bit from userspace via "issm" special files (set IsSM bit on open, clear on close). Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/core/user_mad.c 2005-01-23 20:57:19.946654072 -0800 +++ linux-bk/drivers/infiniband/core/user_mad.c 2005-01-23 20:57:56.183145288 -0800 @@ -45,6 +45,7 @@ #include #include +#include #include #include @@ -54,7 +55,7 @@ MODULE_LICENSE("Dual BSD/GPL"); enum { - IB_UMAD_MAX_PORTS = 256, + IB_UMAD_MAX_PORTS = 64, IB_UMAD_MAX_AGENTS = 32 }; @@ -62,6 +63,12 @@ int devnum; struct cdev dev; struct class_device class_dev; + + int sm_devnum; + struct cdev sm_dev; + struct class_device sm_class_dev; + struct semaphore sm_sem; + struct ib_device *ib_dev; struct ib_umad_device *umad_dev; u8 port_num; @@ -92,7 +99,7 @@ static dev_t base_dev; static spinlock_t map_lock; -static DECLARE_BITMAP(dev_map, IB_UMAD_MAX_PORTS); +static DECLARE_BITMAP(dev_map, IB_UMAD_MAX_PORTS * 2); static void ib_umad_add_one(struct ib_device *device); static void ib_umad_remove_one(struct ib_device *device); @@ -511,6 +518,54 @@ .release = ib_umad_close }; +static int ib_umad_sm_open(struct inode *inode, struct file *filp) +{ + struct ib_umad_port *port = + container_of(inode->i_cdev, struct ib_umad_port, sm_dev); + struct ib_port_modify props = { + .set_port_cap_mask = IB_PORT_SM + }; + int ret; + + if (filp->f_flags & O_NONBLOCK) { + if (down_trylock(&port->sm_sem)) + return -EAGAIN; + } else { + if (down_interruptible(&port->sm_sem)) + return -ERESTARTSYS; + } + + ret = ib_modify_port(port->ib_dev, port->port_num, 0, &props); + if (ret) { + up(&port->sm_sem); + return ret; + } + + filp->private_data = port; + + return 0; +} + +static int ib_umad_sm_close(struct inode *inode, struct file *filp) +{ + struct ib_umad_port *port = filp->private_data; + struct ib_port_modify props = { + .clr_port_cap_mask = IB_PORT_SM + }; + int ret; + + ret = ib_modify_port(port->ib_dev, port->port_num, 0, &props); + up(&port->sm_sem); + + return ret; +} + +static struct file_operations umad_sm_fops = { + .owner = THIS_MODULE, + .open = ib_umad_sm_open, + .release = ib_umad_sm_close +}; + static struct ib_client umad_client = { .name = "umad", .add = ib_umad_add_one, @@ -519,17 +574,18 @@ static ssize_t show_dev(struct class_device *class_dev, char *buf) { - struct ib_umad_port *port = - container_of(class_dev, struct ib_umad_port, class_dev); + struct ib_umad_port *port = class_get_devdata(class_dev); - return print_dev_t(buf, port->dev.dev); + if (class_dev == &port->class_dev) + return print_dev_t(buf, port->dev.dev); + else + return print_dev_t(buf, port->sm_dev.dev); } static CLASS_DEVICE_ATTR(dev, S_IRUGO, show_dev, NULL); static ssize_t show_ibdev(struct class_device *class_dev, char *buf) { - struct ib_umad_port *port = - container_of(class_dev, struct ib_umad_port, class_dev); + struct ib_umad_port *port = class_get_devdata(class_dev); return sprintf(buf, "%s\n", port->ib_dev->name); } @@ -537,8 +593,7 @@ static ssize_t show_port(struct class_device *class_dev, char *buf) { - struct ib_umad_port *port = - container_of(class_dev, struct ib_umad_port, class_dev); + struct ib_umad_port *port = class_get_devdata(class_dev); return sprintf(buf, "%d\n", port->port_num); } @@ -554,11 +609,16 @@ static void ib_umad_release_port(struct class_device *class_dev) { - struct ib_umad_port *port = - container_of(class_dev, struct ib_umad_port, class_dev); + struct ib_umad_port *port = class_get_devdata(class_dev); + + if (class_dev == &port->class_dev) { + cdev_del(&port->dev); + clear_bit(port->devnum, dev_map); + } else { + cdev_del(&port->sm_dev); + clear_bit(port->sm_devnum, dev_map); + } - cdev_del(&port->dev); - clear_bit(port->devnum, dev_map); kref_put(&port->umad_dev->ref, ib_umad_release_dev); } @@ -573,6 +633,94 @@ } static CLASS_ATTR(abi_version, S_IRUGO, show_abi_version, NULL); +static int ib_umad_init_port(struct ib_device *device, int port_num, + struct ib_umad_port *port) +{ + spin_lock(&map_lock); + port->devnum = find_first_zero_bit(dev_map, IB_UMAD_MAX_PORTS); + if (port->devnum >= IB_UMAD_MAX_PORTS) { + spin_unlock(&map_lock); + return -1; + } + port->sm_devnum = find_next_zero_bit(dev_map, IB_UMAD_MAX_PORTS * 2, IB_UMAD_MAX_PORTS); + if (port->sm_devnum >= IB_UMAD_MAX_PORTS * 2) { + spin_unlock(&map_lock); + return -1; + } + set_bit(port->devnum, dev_map); + set_bit(port->sm_devnum, dev_map); + spin_unlock(&map_lock); + + port->ib_dev = device; + port->port_num = port_num; + init_MUTEX(&port->sm_sem); + + cdev_init(&port->dev, &umad_fops); + port->dev.owner = THIS_MODULE; + kobject_set_name(&port->dev.kobj, "umad%d", port->devnum); + if (cdev_add(&port->dev, base_dev + port->devnum, 1)) + return -1; + + port->class_dev.class = &umad_class; + port->class_dev.dev = device->dma_device; + + snprintf(port->class_dev.class_id, BUS_ID_SIZE, "umad%d", port->devnum); + + if (class_device_register(&port->class_dev)) + goto err_cdev; + + class_set_devdata(&port->class_dev, port); + kref_get(&port->umad_dev->ref); + + if (class_device_create_file(&port->class_dev, &class_device_attr_dev)) + goto err_class; + if (class_device_create_file(&port->class_dev, &class_device_attr_ibdev)) + goto err_class; + if (class_device_create_file(&port->class_dev, &class_device_attr_port)) + goto err_class; + + cdev_init(&port->sm_dev, &umad_sm_fops); + port->sm_dev.owner = THIS_MODULE; + kobject_set_name(&port->dev.kobj, "issm%d", port->sm_devnum - IB_UMAD_MAX_PORTS); + if (cdev_add(&port->sm_dev, base_dev + port->sm_devnum, 1)) + return -1; + + port->sm_class_dev.class = &umad_class; + port->sm_class_dev.dev = device->dma_device; + + snprintf(port->sm_class_dev.class_id, BUS_ID_SIZE, "issm%d", port->sm_devnum - IB_UMAD_MAX_PORTS); + + if (class_device_register(&port->sm_class_dev)) + goto err_sm_cdev; + + class_set_devdata(&port->sm_class_dev, port); + kref_get(&port->umad_dev->ref); + + if (class_device_create_file(&port->sm_class_dev, &class_device_attr_dev)) + goto err_sm_class; + if (class_device_create_file(&port->sm_class_dev, &class_device_attr_ibdev)) + goto err_sm_class; + if (class_device_create_file(&port->sm_class_dev, &class_device_attr_port)) + goto err_sm_class; + + return 0; + +err_sm_class: + class_device_unregister(&port->sm_class_dev); + +err_sm_cdev: + cdev_del(&port->sm_dev); + +err_class: + class_device_unregister(&port->class_dev); + +err_cdev: + cdev_del(&port->dev); + clear_bit(port->devnum, dev_map); + + return -1; +} + static void ib_umad_add_one(struct ib_device *device) { struct ib_umad_device *umad_dev; @@ -601,58 +749,20 @@ for (i = s; i <= e; ++i) { umad_dev->port[i - s].umad_dev = umad_dev; - kref_get(&umad_dev->ref); - - spin_lock(&map_lock); - umad_dev->port[i - s].devnum = - find_first_zero_bit(dev_map, IB_UMAD_MAX_PORTS); - if (umad_dev->port[i - s].devnum >= IB_UMAD_MAX_PORTS) { - spin_unlock(&map_lock); - goto err; - } - set_bit(umad_dev->port[i - s].devnum, dev_map); - spin_unlock(&map_lock); - umad_dev->port[i - s].ib_dev = device; - umad_dev->port[i - s].port_num = i; - - cdev_init(&umad_dev->port[i - s].dev, &umad_fops); - umad_dev->port[i - s].dev.owner = THIS_MODULE; - kobject_set_name(&umad_dev->port[i - s].dev.kobj, - "umad%d", umad_dev->port[i - s].devnum); - if (cdev_add(&umad_dev->port[i - s].dev, base_dev + - umad_dev->port[i - s].devnum, 1)) + if (ib_umad_init_port(device, i, &umad_dev->port[i - s])) goto err; - - umad_dev->port[i - s].class_dev.class = &umad_class; - umad_dev->port[i - s].class_dev.dev = device->dma_device; - snprintf(umad_dev->port[i - s].class_dev.class_id, - BUS_ID_SIZE, "umad%d", umad_dev->port[i - s].devnum); - if (class_device_register(&umad_dev->port[i - s].class_dev)) - goto err_class; - - if (class_device_create_file(&umad_dev->port[i - s].class_dev, - &class_device_attr_dev)) - goto err_class; - if (class_device_create_file(&umad_dev->port[i - s].class_dev, - &class_device_attr_ibdev)) - goto err_class; - if (class_device_create_file(&umad_dev->port[i - s].class_dev, - &class_device_attr_port)) - goto err_class; } ib_set_client_data(device, &umad_client, umad_dev); return; -err_class: - cdev_del(&umad_dev->port[i - s].dev); - clear_bit(umad_dev->port[i - s].devnum, dev_map); - err: - while (--i >= s) + while (--i >= s) { class_device_unregister(&umad_dev->port[i - s].class_dev); + class_device_unregister(&umad_dev->port[i - s].sm_class_dev); + } kref_put(&umad_dev->ref, ib_umad_release_dev); } @@ -665,8 +775,10 @@ if (!umad_dev) return; - for (i = 0; i <= umad_dev->end_port - umad_dev->start_port; ++i) + for (i = 0; i <= umad_dev->end_port - umad_dev->start_port; ++i) { class_device_unregister(&umad_dev->port[i].class_dev); + class_device_unregister(&umad_dev->port[i].sm_class_dev); + } kref_put(&umad_dev->ref, ib_umad_release_dev); } @@ -677,7 +789,7 @@ spin_lock_init(&map_lock); - ret = alloc_chrdev_region(&base_dev, 0, IB_UMAD_MAX_PORTS, + ret = alloc_chrdev_region(&base_dev, 0, IB_UMAD_MAX_PORTS * 2, "infiniband_mad"); if (ret) { printk(KERN_ERR "user_mad: couldn't get device number\n"); @@ -708,7 +820,7 @@ class_unregister(&umad_class); out_chrdev: - unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS); + unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2); out: return ret; @@ -718,7 +830,7 @@ { ib_unregister_client(&umad_client); class_unregister(&umad_class); - unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS); + unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2); } module_init(ib_umad_init); --- linux-bk.orig/Documentation/infiniband/user_mad.txt 2005-01-23 08:30:27.000000000 -0800 +++ linux-bk/Documentation/infiniband/user_mad.txt 2005-01-23 20:57:46.505616496 -0800 @@ -2,9 +2,10 @@ Device files - Each port of each InfiniBand device has a "umad" device attached. - For example, a two-port HCA will have two devices, while a switch - will have one device (for switch port 0). + Each port of each InfiniBand device has a "umad" device and an + "issm" device attached. For example, a two-port HCA will have two + umad devices and two issm devices, while a switch will have one + device of each type (for switch port 0). Creating MAD agents @@ -63,19 +64,36 @@ if (ret != sizeof mad) perror("write"); +Setting IsSM Capability Bit + + To set the IsSM capability bit for a port, simply open the + corresponding issm device file. If the IsSM bit is already set, + then the open call will block until the bit is cleared (or return + immediately with errno set to EAGAIN if the O_NONBLOCK flag is + passed to open()). The IsSM bit will be cleared when the issm file + is closed. No read, write or other operations can be performed on + the issm file. + /dev files To create the appropriate character device files automatically with udev, a rule like KERNEL="umad*", NAME="infiniband/%k" + KERNEL="issm*", NAME="infiniband/%k" - can be used. This will create a device node named + can be used. This will create device nodes named /dev/infiniband/umad0 + /dev/infiniband/issm0 for the first port, and so on. The InfiniBand device and port - associated with this device can be determined from the files + associated with these devices can be determined from the files /sys/class/infiniband_mad/umad0/ibdev /sys/class/infiniband_mad/umad0/port + + and + + /sys/class/infiniband_mad/issm0/ibdev + /sys/class/infiniband_mad/issm0/port From roland at topspin.com Sun Jan 23 22:14:24 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 23 Jan 2005 22:14:24 -0800 Subject: [openib-general] [PATCH][12/12] InfiniBand/mthca: remove x86 SSE pessimization In-Reply-To: <20051232214.3TWW9w76vhKgw1zV@topspin.com> Message-ID: <20051232214.rXeANNOMpj6wmqS6@topspin.com> Get rid of the x86 SSE code for atomic 64-bit writes to doorbell registers. Saving/setting CR0 plus a clts instruction are too expensive for it to ever be a win, and the config option was just confusing. Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/hw/mthca/Kconfig 2005-01-23 08:30:27.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/Kconfig 2005-01-23 21:00:44.744520064 -0800 @@ -14,13 +14,3 @@ This option causes the mthca driver produce a bunch of debug messages. Select this is you are developing the driver or trying to diagnose a problem. - -config INFINIBAND_MTHCA_SSE_DOORBELL - bool "SSE doorbell code" - depends on INFINIBAND_MTHCA && X86 && !X86_64 - default n - ---help--- - This option will have the mthca driver use SSE instructions - to ring hardware doorbell registers. This may improve - performance for some workloads, but the driver will not run - on processors without SSE instructions. --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_main.c 2005-01-23 20:58:55.771086544 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_main.c 2005-01-23 21:00:44.745519912 -0800 @@ -40,10 +40,6 @@ #include #include -#ifdef CONFIG_INFINIBAND_MTHCA_SSE_DOORBELL -#include -#endif - #include "mthca_dev.h" #include "mthca_config_reg.h" #include "mthca_cmd.h" @@ -1117,22 +1113,6 @@ { int ret; - /* - * TODO: measure whether dynamically choosing doorbell code at - * runtime affects our performance. Is there a "magic" way to - * choose without having to follow a function pointer every - * time we ring a doorbell? - */ -#ifdef CONFIG_INFINIBAND_MTHCA_SSE_DOORBELL - if (!cpu_has_xmm) { - printk(KERN_ERR PFX "mthca was compiled with SSE doorbell code, but\n"); - printk(KERN_ERR PFX "the current CPU does not support SSE.\n"); - printk(KERN_ERR PFX "Turn off CONFIG_INFINIBAND_MTHCA_SSE_DOORBELL " - "and recompile.\n"); - return -ENODEV; - } -#endif - ret = pci_register_driver(&mthca_driver); return ret < 0 ? ret : 0; } --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_doorbell.h 2005-01-23 08:30:38.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_doorbell.h 2005-01-23 21:00:44.746519760 -0800 @@ -32,9 +32,7 @@ * $Id: mthca_doorbell.h 1349 2004-12-16 21:09:43Z roland $ */ -#include #include -#include #define MTHCA_RD_DOORBELL 0x00 #define MTHCA_SEND_DOORBELL 0x10 @@ -59,51 +57,13 @@ __raw_writeq(*(u64 *) val, dest); } -#elif defined(CONFIG_INFINIBAND_MTHCA_SSE_DOORBELL) -/* Use SSE to write 64 bits atomically without a lock. */ - -#define MTHCA_DECLARE_DOORBELL_LOCK(name) -#define MTHCA_INIT_DOORBELL_LOCK(ptr) do { } while (0) -#define MTHCA_GET_DOORBELL_LOCK(ptr) (NULL) - -static inline unsigned long mthca_get_fpu(void) -{ - unsigned long cr0; - - preempt_disable(); - asm volatile("mov %%cr0,%0; clts" : "=r" (cr0)); - return cr0; -} - -static inline void mthca_put_fpu(unsigned long cr0) -{ - asm volatile("mov %0,%%cr0" : : "r" (cr0)); - preempt_enable(); -} - -static inline void mthca_write64(u32 val[2], void __iomem *dest, - spinlock_t *doorbell_lock) -{ - /* i386 stack is aligned to 8 bytes, so this should be OK: */ - u8 xmmsave[8] __attribute__((aligned(8))); - unsigned long cr0; - - cr0 = mthca_get_fpu(); - - asm volatile ( - "movlps %%xmm0,(%0); \n\t" - "movlps (%1),%%xmm0; \n\t" - "movlps %%xmm0,(%2); \n\t" - "movlps (%0),%%xmm0; \n\t" - : - : "r" (xmmsave), "r" (val), "r" (dest) - : "memory" ); - - mthca_put_fpu(cr0); -} - #else -/* Just fall back to a spinlock to protect the doorbell */ + +/* + * Just fall back to a spinlock to protect the doorbell if + * BITS_PER_LONG is 32 -- there's no portable way to do atomic 64-bit + * MMIO writes. + */ #define MTHCA_DECLARE_DOORBELL_LOCK(name) spinlock_t name; #define MTHCA_INIT_DOORBELL_LOCK(ptr) spin_lock_init(ptr) From mst at mellanox.co.il Sun Jan 23 23:46:44 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 24 Jan 2005 09:46:44 +0200 Subject: [openib-general] module refcounting Message-ID: <20050124074644.GA4340@mellanox.co.il> Hi! It seems currently I am unable to remove the ib_mthca modules if opensm is running. # lsmod | grep mthca ib_mthca 85408 0 ib_mad 31528 3 ib_sa,ib_umad,ib_mthca ib_core 48128 5 ib_ipoib,ib_sa,ib_umad,ib_mthca,ib_mad opensm & # lsmod | grep mthca ib_mthca 85408 9 ib_mad 31528 3 ib_sa,ib_umad,ib_mthca ib_core 48128 77 ib_ipoib,ib_sa,ib_umad,ib_mthca,ib_mad Since everyone is working with the core only, I would expect to be able to remove/replace the hardware driver without taking the sm down. Are there reasons to prevent this? MST From vonwyl at EIG.UNIGE.CH Mon Jan 24 06:40:58 2005 From: vonwyl at EIG.UNIGE.CH (Marc von Wyl) Date: Mon, 24 Jan 2005 15:40:58 +0100 Subject: [openib-general] openIB + RTAI, kernel freezing... In-Reply-To: <1106324781.4648.1616.camel@localhost.localdomain> References: <506C3D7B14CDD411A52C00025558DED6064BED71@mtlex01.yok.mtl.com> <1105381618.8427.1.camel@duffman> <41E3E179.7000407@eig.unige.ch> <1105457796.11083.2.camel@duffman> <41EE7906.5080703@eig.unige.ch> <1106154877.7680.3.camel@duffman> <41F11D5F.9010307@eig.unige.ch> <1106324023.27916.38.camel@duffman> <1106324781.4648.1616.camel@localhost.localdomain> Message-ID: <41F508FA.7040602@eig.unige.ch> Hal Rosenstock a écrit : >On Fri, 2005-01-21 at 11:13, Tom Duffy wrote: > > >>Please keep this discussion *on list* as I am not a one man openib >>support team. >> >> Ok, sorry for disturbing. >Is there a reason for using the roland_merge branch ? The most up to >date, active, and best supported is gen2/trunk. I think roland_merge was >abandoned when trunk was started. It looks like left off at 2.6.9. > >-- Hal > > > > I tried it too. I installed opensm (I still can't make it work but it is a matter of time...). I just wanted to know if there were support for the VAPI and CMAPI in the actual version of gen2 (it seems that libibverb is not working yet). Thanks. From halr at voltaire.com Mon Jan 24 06:42:23 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 24 Jan 2005 09:42:23 -0500 Subject: [openib-general] openIB + RTAI, kernel freezing... In-Reply-To: <41F508FA.7040602@eig.unige.ch> References: <506C3D7B14CDD411A52C00025558DED6064BED71@mtlex01.yok.mtl.com> <1105381618.8427.1.camel@duffman> <41E3E179.7000407@eig.unige.ch> <1105457796.11083.2.camel@duffman> <41EE7906.5080703@eig.unige.ch> <1106154877.7680.3.camel@duffman> <41F11D5F.9010307@eig.unige.ch> <1106324023.27916.38.camel@duffman> <1106324781.4648.1616.camel@localhost.localdomain> <41F508FA.7040602@eig.unige.ch> Message-ID: <1106577743.4648.2238.camel@localhost.localdomain> On Mon, 2005-01-24 at 09:40, Marc von Wyl wrote: > I tried it too. I installed opensm (I still can't make it work but it is > a matter of time...). This should work. Can you send any details about what didn't ? > I just wanted to know if there were support for > the VAPI and CMAPI in the actual version of gen2 (it seems that > libibverb is not working yet). The OpenIB gen2 equivalent of VAPI is libibverbs and this work is currently proceeding on roland-uverbs branch. This should be available for general consumption in the not too distant future. What is your timeframe ? Also, kernel CM is actively being debugged now. User CM will follow this work. -- Hal From roland at topspin.com Mon Jan 24 07:55:48 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 24 Jan 2005 07:55:48 -0800 Subject: [openib-general] module refcounting In-Reply-To: <20050124074644.GA4340@mellanox.co.il> (Michael S. Tsirkin's message of "Mon, 24 Jan 2005 09:46:44 +0200") References: <20050124074644.GA4340@mellanox.co.il> Message-ID: <524qh6x1mj.fsf@topspin.com> Michael> Hi! It seems currently I am unable to remove the Michael> ib_mthca modules if opensm is running. I actually don't know what is incrementing the reference count of the ib_mthca module. However it's probably a good thing because all sorts of problems will arise if ib_mthca is removed while opensm is still running and trying to send MADs, etc. - R. From mst at mellanox.co.il Mon Jan 24 08:03:26 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 24 Jan 2005 18:03:26 +0200 Subject: [openib-general] module refcounting In-Reply-To: <524qh6x1mj.fsf@topspin.com> References: <20050124074644.GA4340@mellanox.co.il> <524qh6x1mj.fsf@topspin.com> Message-ID: <20050124160326.GB13643@mellanox.co.il> Quoting r. Roland Dreier : > Subject: Re: [openib-general] module refcounting > > Michael> Hi! It seems currently I am unable to remove the > Michael> ib_mthca modules if opensm is running. > > I actually don't know what is incrementing the reference count of the > ib_mthca module. However it's probably a good thing because all sorts > of problems will arise if ib_mthca is removed while opensm is still > running and trying to send MADs, etc. > > - R. Hmm. Not sure how important it is for sm (probably only root runs it), but for other ulps I think you dont want a regular user to be able to prevent root from unloading the driver, right? mst -- I dont speak for Mellanox. From roland at topspin.com Mon Jan 24 08:05:36 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 24 Jan 2005 08:05:36 -0800 Subject: [openib-general] module refcounting In-Reply-To: <20050124160326.GB13643@mellanox.co.il> (Michael S. Tsirkin's message of "Mon, 24 Jan 2005 18:03:26 +0200") References: <20050124074644.GA4340@mellanox.co.il> <524qh6x1mj.fsf@topspin.com> <20050124160326.GB13643@mellanox.co.il> Message-ID: <52zmyyvmlr.fsf@topspin.com> Michael> Not sure how important it is for sm (probably only root Michael> runs it), but for other ulps I think you dont want a Michael> regular user to be able to prevent root from unloading Michael> the driver, right? Why not? Everything works that way. For example, if I run xmms then my sound driver can't be unloaded. Root could always use lsof or something and kill and processes causing problems if need be. - R. From mst at mellanox.co.il Mon Jan 24 08:12:48 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 24 Jan 2005 18:12:48 +0200 Subject: [openib-general] module refcounting In-Reply-To: <52zmyyvmlr.fsf@topspin.com> References: <20050124074644.GA4340@mellanox.co.il> <524qh6x1mj.fsf@topspin.com> <20050124160326.GB13643@mellanox.co.il> <52zmyyvmlr.fsf@topspin.com> Message-ID: <20050124161247.GA13942@mellanox.co.il> Quoting r. Roland Dreier : > Subject: Re: [openib-general] module refcounting > > Michael> Not sure how important it is for sm (probably only root > Michael> runs it), but for other ulps I think you dont want a > Michael> regular user to be able to prevent root from unloading > Michael> the driver, right? > > Why not? Everything works that way. For example, if I run xmms then > my sound driver can't be unloaded. On the other hand, I can unload the NIC driver while someone has an open socket (and this also works for ip over ib). > Root could always use lsof or > something and kill and processes causing problems if need be. > > - R. Kill them? Okay, but killing opensm may interfere with other HCAs I have. It would be a bit nicer if all users went to sleep while I replace the hardware driver. But I am not saying this is mandatory. MST -- I dont speak for Mellanox. From mst at mellanox.co.il Mon Jan 24 09:19:34 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 24 Jan 2005 19:19:34 +0200 Subject: [openib-general] ibv_reg_mr/ memory locking Message-ID: <20050124171934.GA14336@mellanox.co.il> Hi! I'm looking at libibverbs/include/infiniband/verbs.h and I'm wandering what ibv_reg_mr does. Specifically, if it exposes to the user the ability to lock raw physical memory, how do you plan to prevent a DOS by locking all memory? The architecture document says it is done with mlock from userspace, so I thought for a bit that driver may simply require that user mlocks the relevant memory, but then I understood that its easy to bypass by munlocking the registered memory. MST -- I dont speak for Mellanox. From iod00d at hp.com Mon Jan 24 09:52:21 2005 From: iod00d at hp.com (Grant Grundler) Date: Mon, 24 Jan 2005 09:52:21 -0800 Subject: [openib-general] Re: MMIO reads for IPoIB w/MSI-X In-Reply-To: <20050123090634.GA3171@mellanox.co.il> References: <20050122071503.GA8137@esmail.cup.hp.com> <20050122220017.GA19455@mellanox.co.il> <20050123001500.GD20015@esmail.cup.hp.com> <20050123090634.GA3171@mellanox.co.il> Message-ID: <20050124175221.GB26386@esmail.cup.hp.com> On Sun, Jan 23, 2005 at 11:06:34AM +0200, Michael S. Tsirkin wrote: > But, do they hurt perf on ia64 more than on x86? It does NOT depend on the CPU architecture. It depends on how many bridge chips are between the CPU and IO device and which type of bus the MMIO read has to flow through. For ZX1 it's normally two (unless we add a PCI-PCI Bridge as well). Most x86 chipsets only have one unless they use the north/south bridge designs. IIRC, x86-64 with a single CPU also has one bridge. For more discussion on HP ZX1 chips WRT MMIO reads, see: http://iou.parisc-linux.org/ols2002/ hth, grant From mshefty at ichips.intel.com Mon Jan 24 11:04:16 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Mon, 24 Jan 2005 11:04:16 -0800 Subject: [openib-general] [PATCH] CM: transition to timewait when receiving DREP from DREQ_RCVD Message-ID: <20050124110416.0b87427f.mshefty@ichips.intel.com> Change to transition to the timewait state when receiving a DREP from the DREQ_RCVD state. signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1636) +++ core/cm.c (working copy) @@ -1533,7 +1533,8 @@ work->cm_event.private_data = &drep_msg->private_data; spin_lock_irqsave(&cm_id_priv->lock, flags); - if (cm_id_priv->id.state != IB_CM_DREQ_SENT) { + if (cm_id_priv->id.state != IB_CM_DREQ_SENT && + cm_id_priv->id.state != IB_CM_DREQ_RCVD) { spin_unlock_irqrestore(&cm_id_priv->lock, flags); goto out; } From roland at topspin.com Mon Jan 24 10:37:45 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 24 Jan 2005 10:37:45 -0800 Subject: [openib-general] ibv_reg_mr/ memory locking In-Reply-To: <20050124171934.GA14336@mellanox.co.il> (Michael S. Tsirkin's message of "Mon, 24 Jan 2005 19:19:34 +0200") References: <20050124171934.GA14336@mellanox.co.il> Message-ID: <528y6i7jwm.fsf@topspin.com> Michael> Specifically, if it exposes to the user the ability to Michael> lock raw physical memory, how do you plan to prevent a Michael> DOS by locking all memory? Michael> The architecture document says it is done with mlock from Michael> userspace, so I thought for a bit that driver may simply Michael> require that user mlocks the relevant memory, but then I Michael> understood that its easy to bypass by munlocking the Michael> registered memory. This is a good question. Userspace does need to do mlock() to get correct results (otherwise the kernel may map new pages at a given virtual address, even if the old pages are locked). However the kernel side will do get_user_pages() to keep the pages present. So if a rogue process does munlock(), the only problem it can cause is to screw itself up. There is a possibility of userspace possibly pinning a lot of pages this way, but it would have to allocate the memory first. I think there are a lot of local DOS attacks like this that people just don't worry about too much. - R. From krause at cup.hp.com Mon Jan 24 10:39:46 2005 From: krause at cup.hp.com (Michael Krause) Date: Mon, 24 Jan 2005 10:39:46 -0800 Subject: [openib-general] Re: MMIO reads for IPoIB w/MSI-X In-Reply-To: <20050124175221.GB26386@esmail.cup.hp.com> References: <20050122071503.GA8137@esmail.cup.hp.com> <20050122220017.GA19455@mellanox.co.il> <20050123001500.GD20015@esmail.cup.hp.com> <20050123090634.GA3171@mellanox.co.il> <20050124175221.GB26386@esmail.cup.hp.com> Message-ID: <6.2.0.14.2.20050124103501.02956210@esmail.cup.hp.com> It is the consensus within the industry that PIO Reads (MMIO) are pure "evil" and should be avoided in any main line data path including the interrupt path. They should be confined to configuration / status / etc. checks and thus are very infrequent. Designs that rely upon PIO Reads for anything in the performance path tend to not succeed that well within the industry. This is true across all processor architectures including x86 itself. The problem only gets worse (not just because of the number of chip crossings) but also because the amount of cycles stalled as clock speeds increase. Some might contend that technology such as multi-thread or predicted / delayed loads can mitigate this problem but I have yet to see any real data to support such assertions. In general, designs need to avoid using PIO Reads in the main data path period. I believe most I/O and system architects from all companies will agree on this point (I also know that many server IHV will also agree). Mike At 09:52 AM 1/24/2005, Grant Grundler wrote: >On Sun, Jan 23, 2005 at 11:06:34AM +0200, Michael S. Tsirkin wrote: > > But, do they hurt perf on ia64 more than on x86? > >It does NOT depend on the CPU architecture. >It depends on how many bridge chips are between the CPU and IO device >and which type of bus the MMIO read has to flow through. > >For ZX1 it's normally two (unless we add a PCI-PCI Bridge as well). >Most x86 chipsets only have one unless they use the north/south >bridge designs. IIRC, x86-64 with a single CPU also has one bridge. > >For more discussion on HP ZX1 chips WRT MMIO reads, see: > http://iou.parisc-linux.org/ols2002/ > >hth, >grant >_______________________________________________ >openib-general mailing list >openib-general at openib.org >http://openib.org/mailman/listinfo/openib-general > >To unsubscribe, please visit >http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From roland at topspin.com Mon Jan 24 10:44:52 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 24 Jan 2005 10:44:52 -0800 Subject: [openib-general] [PATCH][13/12] InfiniBand/mthca: initialize mutex earlier In-Reply-To: <20051232214.rXeANNOMpj6wmqS6@topspin.com> (Roland Dreier's message of "Sun, 23 Jan 2005 22:14:24 -0800") References: <20051232214.rXeANNOMpj6wmqS6@topspin.com> Message-ID: <521xca7jkr.fsf@topspin.com> One more bug that slipped in... The cap_mask_mutex needs to be initialized before ib_register_device(), because device registration will call client init functions that may try to modify the capability mask. Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_provider.c 2005-01-23 21:51:46.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_provider.c 2005-01-24 10:39:12.623987624 -0800 @@ -634,6 +634,8 @@ dev->ib_dev.detach_mcast = mthca_multicast_detach; dev->ib_dev.process_mad = mthca_process_mad; + init_MUTEX(&dev->cap_mask_mutex); + ret = ib_register_device(&dev->ib_dev); if (ret) return ret; @@ -647,8 +649,6 @@ } } - init_MUTEX(&dev->cap_mask_mutex); - return 0; } From roland at topspin.com Mon Jan 24 10:45:04 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 24 Jan 2005 10:45:04 -0800 Subject: [openib-general] Re: bug loading mthca after cm In-Reply-To: <20050122163214.32fc81c4.mshefty@ichips.intel.com> (Sean Hefty's message of "Sat, 22 Jan 2005 16:32:14 -0800") References: <20050122163214.32fc81c4.mshefty@ichips.intel.com> Message-ID: <52zmyy64zz.fsf@topspin.com> Sean> I haven't looked into this, but the problem appears to be Sean> caused by the CM trying to modify the port when mthca is Sean> loaded. Loading in the opposite order avoids the issue. I think the cap_mask_mutex was initialized too late. This patch (already committed) should fix the problem. - R. --- linux-bk.orig/drivers/infiniband/hw/mthca/mthca_provider.c 2005-01-23 21:51:46.000000000 -0800 +++ linux-bk/drivers/infiniband/hw/mthca/mthca_provider.c 2005-01-24 10:39:12.623987624 -0800 @@ -634,6 +634,8 @@ dev->ib_dev.detach_mcast = mthca_multicast_detach; dev->ib_dev.process_mad = mthca_process_mad; + init_MUTEX(&dev->cap_mask_mutex); + ret = ib_register_device(&dev->ib_dev); if (ret) return ret; @@ -647,8 +649,6 @@ } } - init_MUTEX(&dev->cap_mask_mutex); - return 0; } From mst at mellanox.co.il Mon Jan 24 13:18:32 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 24 Jan 2005 23:18:32 +0200 Subject: [openib-general] Re: ibv_reg_mr/ memory locking In-Reply-To: <528y6i7jwm.fsf@topspin.com> References: <20050124171934.GA14336@mellanox.co.il> <528y6i7jwm.fsf@topspin.com> Message-ID: <20050124211832.GA15117@mellanox.co.il> Quoting r. Roland Dreier : > Subject: Re: ibv_reg_mr/ memory locking > > Michael> Specifically, if it exposes to the user the ability to > Michael> lock raw physical memory, how do you plan to prevent a > Michael> DOS by locking all memory? > > Michael> The architecture document says it is done with mlock from > Michael> userspace, so I thought for a bit that driver may simply > Michael> require that user mlocks the relevant memory, but then I > Michael> understood that its easy to bypass by munlocking the > Michael> registered memory. > > This is a good question. Userspace does need to do mlock() to get > correct results (otherwise the kernel may map new pages at a given > virtual address, even if the old pages are locked). Are you aware of the fact that mlock wont always be sufficient for this (notably COW)? And, pages may be, or become, COW, often without the user knowing. > However the > kernel side will do get_user_pages() to keep the pages present. So if > a rogue process does munlock(), the only problem it can cause is to > screw itself up. I was referring to the fact that event if kernel would like to help by checking VMA is locked, it cant. > There is a possibility of userspace possibly pinning a lot of pages > this way, but it would have to allocate the memory first. I think > there are a lot of local DOS attacks like this that people just don't > worry about too much. > > - R. Some people do care about it http://kerneltrap.org/node/4540 I dont know how reasonable it is to make this unfixable by design. -- I dont speak for Mellanox. From rminnich at lanl.gov Mon Jan 24 14:22:26 2005 From: rminnich at lanl.gov (Ronald G. Minnich) Date: Mon, 24 Jan 2005 15:22:26 -0700 (MST) Subject: [openib-general] Re: MMIO reads for IPoIB w/MSI-X In-Reply-To: <6.2.0.14.2.20050124103501.02956210@esmail.cup.hp.com> References: <20050122071503.GA8137@esmail.cup.hp.com> <20050122220017.GA19455@mellanox.co.il> <20050123001500.GD20015@esmail.cup.hp.com> <20050123090634.GA3171@mellanox.co.il> <20050124175221.GB26386@esmail.cup.hp.com> <6.2.0.14.2.20050124103501.02956210@esmail.cup.hp.com> Message-ID: MMIO PIO is not just bad from the processor side, it is bad from the NIC side; i.e. it is bad all around. So, even if you fix it on the processor, you've only fixed at most 1/2 the problem ron From roland at topspin.com Mon Jan 24 14:41:20 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 24 Jan 2005 14:41:20 -0800 Subject: [openib-general] Re: ibv_reg_mr/ memory locking In-Reply-To: <20050124211832.GA15117@mellanox.co.il> (Michael S. Tsirkin's message of "Mon, 24 Jan 2005 23:18:32 +0200") References: <20050124171934.GA14336@mellanox.co.il> <528y6i7jwm.fsf@topspin.com> <20050124211832.GA15117@mellanox.co.il> Message-ID: <52zmyy4fhr.fsf@topspin.com> Michael> Are you aware of the fact that mlock wont always be Michael> sufficient for this (notably COW)? And, pages may be, or Michael> become, COW, often without the user knowing. Yes, in fact I think I was the one who originally debugged this. However I consider stuff like perfect fork() support a second-order issue. Most likely we will need a new VM operation that combines mlock and setting VM_DONTCOPY atomically, but I would hold off on that until we have a better understanding of the problems and solutions. Michael> Some people do care about it Michael> http://kerneltrap.org/node/4540 I dont know how Michael> reasonable it is to make this unfixable by design. This is all pretty encapsulated and can be ripped out later. Although if there are better ideas now, please bring them out... - R. From halr at voltaire.com Mon Jan 24 14:35:09 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 24 Jan 2005 17:35:09 -0500 Subject: [openib-general] [PATCH] agent: Eliminate unneeded MAD agent registration Message-ID: <1106606109.4648.3620.camel@localhost.localdomain> agent: Eliminate unneeded MAD agent registration Signed-off-by: Hal Rosenstock Index: agent_priv.h =================================================================== --- agent_priv.h (revision 1639) +++ agent_priv.h (working copy) @@ -55,8 +55,7 @@ struct list_head send_posted_list; spinlock_t send_list_lock; int port_num; - struct ib_mad_agent *dr_smp_agent; /* DR SM class */ - struct ib_mad_agent *lr_smp_agent; /* LR SM class */ + struct ib_mad_agent *smp_agent; /* SM class */ struct ib_mad_agent *perf_mgmt_agent; /* PerfMgmt class */ struct ib_mr *mr; }; Index: agent.c =================================================================== --- agent.c (revision 1639) +++ agent.c (working copy) @@ -66,14 +66,13 @@ if (device) { list_for_each_entry(entry, &ib_agent_port_list, port_list) { - if (entry->dr_smp_agent->device == device && + if (entry->smp_agent->device == device && entry->port_num == port_num) return entry; } } else { list_for_each_entry(entry, &ib_agent_port_list, port_list) { - if ((entry->dr_smp_agent == mad_agent) || - (entry->lr_smp_agent == mad_agent) || + if ((entry->smp_agent == mad_agent) || (entry->perf_mgmt_agent == mad_agent)) return entry; } @@ -111,7 +110,7 @@ return 1; } - return smi_check_local_smp(port_priv->dr_smp_agent, smp); + return smi_check_local_smp(port_priv->smp_agent, smp); } static int agent_mad_send(struct ib_mad_agent *mad_agent, @@ -231,10 +230,8 @@ /* Get mad agent based on mgmt_class in MAD */ switch (mad->mad.mad.mad_hdr.mgmt_class) { case IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE: - mad_agent = port_priv->dr_smp_agent; - break; case IB_MGMT_CLASS_SUBN_LID_ROUTED: - mad_agent = port_priv->lr_smp_agent; + mad_agent = port_priv->smp_agent; break; case IB_MGMT_CLASS_PERF_MGMT: mad_agent = port_priv->perf_mgmt_agent; @@ -284,7 +281,6 @@ { int ret; struct ib_agent_port_private *port_priv; - struct ib_mad_reg_req reg_req; unsigned long flags; /* First, check if port already open for SMI */ @@ -308,35 +304,19 @@ spin_lock_init(&port_priv->send_list_lock); INIT_LIST_HEAD(&port_priv->send_posted_list); - /* Obtain MAD agent for directed route SM class */ - reg_req.mgmt_class = IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE; - reg_req.mgmt_class_version = 1; + /* Obtain send only MAD agent for SM class (SMI QP) */ + port_priv->smp_agent = ib_register_mad_agent(device, port_num, + IB_QPT_SMI, + NULL, 0, + &agent_send_handler, + NULL, NULL); - port_priv->dr_smp_agent = ib_register_mad_agent(device, port_num, - IB_QPT_SMI, - NULL, 0, - &agent_send_handler, - NULL, NULL); - - if (IS_ERR(port_priv->dr_smp_agent)) { - ret = PTR_ERR(port_priv->dr_smp_agent); + if (IS_ERR(port_priv->smp_agent)) { + ret = PTR_ERR(port_priv->smp_agent); goto error2; } - /* Obtain MAD agent for LID routed SM class */ - reg_req.mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED; - port_priv->lr_smp_agent = ib_register_mad_agent(device, port_num, - IB_QPT_SMI, - NULL, 0, - &agent_send_handler, - NULL, NULL); - if (IS_ERR(port_priv->lr_smp_agent)) { - ret = PTR_ERR(port_priv->lr_smp_agent); - goto error3; - } - - /* Obtain MAD agent for PerfMgmt class */ - reg_req.mgmt_class = IB_MGMT_CLASS_PERF_MGMT; + /* Obtain send only MAD agent for PerfMgmt class (GSI QP) */ port_priv->perf_mgmt_agent = ib_register_mad_agent(device, port_num, IB_QPT_GSI, NULL, 0, @@ -344,15 +324,15 @@ NULL, NULL); if (IS_ERR(port_priv->perf_mgmt_agent)) { ret = PTR_ERR(port_priv->perf_mgmt_agent); - goto error4; + goto error3; } - port_priv->mr = ib_get_dma_mr(port_priv->dr_smp_agent->qp->pd, + port_priv->mr = ib_get_dma_mr(port_priv->smp_agent->qp->pd, IB_ACCESS_LOCAL_WRITE); if (IS_ERR(port_priv->mr)) { printk(KERN_ERR SPFX "Couldn't get DMA MR\n"); ret = PTR_ERR(port_priv->mr); - goto error5; + goto error4; } spin_lock_irqsave(&ib_agent_port_list_lock, flags); @@ -361,12 +341,10 @@ return 0; -error5: - ib_unregister_mad_agent(port_priv->perf_mgmt_agent); error4: - ib_unregister_mad_agent(port_priv->lr_smp_agent); + ib_unregister_mad_agent(port_priv->perf_mgmt_agent); error3: - ib_unregister_mad_agent(port_priv->dr_smp_agent); + ib_unregister_mad_agent(port_priv->smp_agent); error2: kfree(port_priv); error1: @@ -391,8 +369,7 @@ ib_dereg_mr(port_priv->mr); ib_unregister_mad_agent(port_priv->perf_mgmt_agent); - ib_unregister_mad_agent(port_priv->lr_smp_agent); - ib_unregister_mad_agent(port_priv->dr_smp_agent); + ib_unregister_mad_agent(port_priv->smp_agent); kfree(port_priv); return 0; From tduffy at sun.com Mon Jan 24 15:31:19 2005 From: tduffy at sun.com (Tom Duffy) Date: Mon, 24 Jan 2005 15:31:19 -0800 Subject: [openib-general] Re: osm log In-Reply-To: <1106361026.4648.1805.camel@localhost.localdomain> References: <1106340999.28559.17.camel@duffman> <1106345818.4648.1777.camel@localhost.localdomain> <1106352862.28559.51.camel@duffman> <1106361026.4648.1805.camel@localhost.localdomain> Message-ID: <1106609479.4339.14.camel@duffman> On Fri, 2005-01-21 at 21:30 -0500, Hal Rosenstock wrote: > > I should simplify my topology. I will plug in my solaris box back to > > back with a linux box and retest. Can I run opensm on port 2? > > Yes. You need to use -g and port 2's GUID. (You can even run on a second > HCA). Cool. Thanks. > OK. That's pretty simple but can you just start with 1 Linux machine and > 1 Solaris machine plugged together back to back and see if things work > and then move on. I've set this up and am testing. Still not having Solaris bring up its ipoib devices...will try to figure out what is going on. > You can use smpdump from the Linux machine on attribute 0x14 to the LID > of the Solaris machine > /usr/local/ib/bin/smpdump 3 0x15 > if Solaris is LID 3 > Send me the output as there is no pretty decode right now. The output is > the raw MAD data. > > /usr/local/ib/bin/smpdump -D 0 0x15 > 0000 0000 0000 0000 fe80 0000 0000 0000 > 0002 0001 0050 0a68 0000 0000 0103 0301 > 1122 0011 4040 0008 0804 f410 0000 0000 > 0000 2012 1088 0000 0000 0000 0000 0000 > > PortState starts at bit 260 (byte 32.5) for 4 bits and PortPhysicalState > starts at bit 264 (byte 33) for 4 bits. > > PortState is 1 (Down) and PortPhysicalState is 2 (Polling) in the above. [root at flopteron2 bin]# ./smpdump 3 0x15 0000 0000 0000 0000 fe80 0000 0000 0000 0003 0001 0000 024c 0000 0000 0700 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0012 0300 0000 0000 0000 0000 0000 [root at flopteron2 bin]# ./smpdump -D 0 0x15 0000 0000 0000 0000 fe80 0000 0000 0000 0001 0001 0050 0a6a 0000 0000 0103 0302 1452 0011 4040 0008 0804 f410 0000 0000 0000 2012 1088 0000 0000 0000 0000 0000 -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From halr at voltaire.com Mon Jan 24 15:36:12 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 24 Jan 2005 18:36:12 -0500 Subject: [openib-general] Re: osm log In-Reply-To: <1106609479.4339.14.camel@duffman> References: <1106340999.28559.17.camel@duffman> <1106345818.4648.1777.camel@localhost.localdomain> <1106352862.28559.51.camel@duffman> <1106361026.4648.1805.camel@localhost.localdomain> <1106609479.4339.14.camel@duffman> Message-ID: <1106609772.4648.3688.camel@localhost.localdomain> On Mon, 2005-01-24 at 18:31, Tom Duffy wrote: > > You can use smpdump from the Linux machine on attribute 0x14 to the LID > > of the Solaris machine > > /usr/local/ib/bin/smpdump 3 0x15 > > if Solaris is LID 3 > > Send me the output as there is no pretty decode right now. The output is > > the raw MAD data. > > > > /usr/local/ib/bin/smpdump -D 0 0x15 > > 0000 0000 0000 0000 fe80 0000 0000 0000 > > 0002 0001 0050 0a68 0000 0000 0103 0301 > > 1122 0011 4040 0008 0804 f410 0000 0000 > > 0000 2012 1088 0000 0000 0000 0000 0000 > > > > PortState starts at bit 260 (byte 32.5) for 4 bits and PortPhysicalState > > starts at bit 264 (byte 33) for 4 bits. > > > > PortState is 1 (Down) and PortPhysicalState is 2 (Polling) in the above. > > [root at flopteron2 bin]# ./smpdump 3 0x15 > 0000 0000 0000 0000 fe80 0000 0000 0000 > 0003 0001 0000 024c 0000 0000 0700 0000 > 0000 0000 0000 0000 0000 0000 0000 0000 > 0000 0012 0300 0000 0000 0000 0000 0000 > [root at flopteron2 bin]# ./smpdump -D 0 0x15 > 0000 0000 0000 0000 fe80 0000 0000 0000 > 0001 0001 0050 0a6a 0000 0000 0103 0302 > 1452 0011 4040 0008 0804 f410 0000 0000 > 0000 2012 1088 0000 0000 0000 0000 0000 -D 0 is your local HCA which appears to be PortState 4 (Active) (which should agree with ibstatus/ibstat). LID 3 is returning PortState 0 and PortPhysicalState 0 which is no state change, which is only valid on a Set not a Get :-( Is that the Solaris HCA port ? If so, it looks to me like there is a SMA problem to be fixed first. -- Hal From iod00d at hp.com Mon Jan 24 17:04:55 2005 From: iod00d at hp.com (Grant Grundler) Date: Mon, 24 Jan 2005 17:04:55 -0800 Subject: [openib-general] Re: MMIO reads for IPoIB w/MSI-X In-Reply-To: <6.2.0.14.2.20050124103501.02956210@esmail.cup.hp.com> References: <20050122071503.GA8137@esmail.cup.hp.com> <20050122220017.GA19455@mellanox.co.il> <20050123001500.GD20015@esmail.cup.hp.com> <20050123090634.GA3171@mellanox.co.il> <20050124175221.GB26386@esmail.cup.hp.com> <6.2.0.14.2.20050124103501.02956210@esmail.cup.hp.com> Message-ID: <20050125010455.GC20528@esmail.cup.hp.com> On Mon, Jan 24, 2005 at 10:39:46AM -0800, Michael Krause wrote: > It is the consensus within the industry that PIO Reads (MMIO) are pure > "evil" "evil" is relative and I considered "udelay()" much more evil. I'm happy most of the linux kernel is using MMIO instead of IO Port space. To be really clear, I agree MMIO reads are bad and want to discourage use of MMIO reads where I can. I was just using an available tool (pfmon) to quantify how many MMIO reads Openib/mthca driver was performing (none). > and should be avoided in any main line data path including the > interrupt path. They should be confined to configuration / status / etc. > checks and thus are very infrequent. Totally agree. But that doesn't prevent SW from using MMIO reads because the programmer didn't know any better (no offense roland, you obviously do) or to work around HW bugs. e.g. See tg3 driver and how it support BCM5700 chips. > The problem only gets worse (not just because of the number of > chip crossings) but also because the amount of cycles stalled as clock > speeds increase. Yes - the URL I posted has some real life examples in the section *after* "CPU vs IO Clock speeds": http://iou.parisc-linux.org/ols2002/www/index.html ugh...I need to rewrite that bit - it could be alot clearer. grant From peter at pantasys.com Mon Jan 24 17:11:21 2005 From: peter at pantasys.com (Peter Buckingham) Date: Mon, 24 Jan 2005 17:11:21 -0800 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: <52u0pkmuls.fsf@topspin.com> References: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> <523bx5s5p1.fsf@topspin.com> <52u0pkmuls.fsf@topspin.com> Message-ID: <41F59CB9.8040609@pantasys.com> Roland Dreier wrote: > If anyone has an nForce4 mobo, I would be _very_ interested to see the > output of lspci -vvxxx, especially using lspci from the latest > pciutils 2.1.99 (available from /pub/software/utils/pciutils/alpha on > ftp.kernel.org). I finally got a chance to do this on our nforce4 based system. see attached. can you tell me what are the relevant bits that you are looking at? peter -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: lspci.txt URL: From roland at topspin.com Mon Jan 24 17:20:48 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 24 Jan 2005 17:20:48 -0800 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: <41F59CB9.8040609@pantasys.com> (Peter Buckingham's message of "Mon, 24 Jan 2005 17:11:21 -0800") References: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> <523bx5s5p1.fsf@topspin.com> <52u0pkmuls.fsf@topspin.com> <41F59CB9.8040609@pantasys.com> Message-ID: <52651m483z.fsf@topspin.com> Peter> I finally got a chance to do this on our nforce4 based Peter> system. see attached. Peter> can you tell me what are the relevant bits that you are Peter> looking at? Thanks. By the way, does the HCA work in this system? Does it work with MSI-X? Can you share which motherboard you're using? I was curious to see the HyperTransport capabilities in the nForce4 PCIe bridge, specifically to see whether it reports an "MSI Mapping" HT capability. Unfortunately checking this requires a dump of the whole PCI tree, not just the HCA part. Fortunately I did receive a dump of an nForce4 system and it does show that the bridge has an MSI Mapping cap, which means that there's hope of using MSI-X on nForce4 systems. However, the dump was for an unreleased preproduction system so I can't share it yet. Thanks, Roland From peter at pantasys.com Mon Jan 24 17:43:57 2005 From: peter at pantasys.com (Peter Buckingham) Date: Mon, 24 Jan 2005 17:43:57 -0800 Subject: [openib-general] has anyone tried MSI-X on Opteron? In-Reply-To: <52651m483z.fsf@topspin.com> References: <506C3D7B14CDD411A52C00025558DED6064BEDB5@mtlex01.yok.mtl.com> <523bx5s5p1.fsf@topspin.com> <52u0pkmuls.fsf@topspin.com> <41F59CB9.8040609@pantasys.com> <52651m483z.fsf@topspin.com> Message-ID: <41F5A45D.2020908@pantasys.com> Hi Roland, Roland Dreier wrote: > Thanks. By the way, does the HCA work in this system? Does it work > with MSI-X? I haven't had a chance to do much testing on this. most of the testing that has been done is with gen1. i have compiled gen2 in there at the moment and i see the appropriate ib0, /proc/infiniband, etc. i may be able to do a little testing with this later in the week. > Can you share which motherboard you're using? it is one that we've built ourselves. > I was curious to see the HyperTransport capabilities in the nForce4 > PCIe bridge, specifically to see whether it reports an "MSI Mapping" > HT capability. okay. > Unfortunately checking this requires a dump of the whole PCI tree, not > just the HCA part. Fortunately I did receive a dump of an nForce4 > system and it does show that the bridge has an MSI Mapping cap, which > means that there's hope of using MSI-X on nForce4 systems. However, > the dump was for an unreleased preproduction system so I can't share > it yet. okay, no problems. peter From mst at mellanox.co.il Tue Jan 25 04:37:02 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Tue, 25 Jan 2005 14:37:02 +0200 Subject: [openib-general] Re: ibv_reg_mr/ memory locking In-Reply-To: <52zmyy4fhr.fsf@topspin.com> References: <20050124171934.GA14336@mellanox.co.il> <528y6i7jwm.fsf@topspin.com> <20050124211832.GA15117@mellanox.co.il> <52zmyy4fhr.fsf@topspin.com> Message-ID: <20050125123702.GA27027@mellanox.co.il> Quoting r. Roland Dreier : > Subject: Re: ibv_reg_mr/ memory locking > > Michael> Are you aware of the fact that mlock wont always be > Michael> sufficient for this (notably COW)? And, pages may be, or > Michael> become, COW, often without the user knowing. > > Yes, in fact I think I was the one who originally debugged this. > However I consider stuff like perfect fork() support a second-order > issue. > Most likely we will need a new VM operation that combines > mlock and setting VM_DONTCOPY atomically, but I would hold off on that > until we have a better understanding of the problems and solutions. This is possible. But I think that VM_DONTCOPY affects whole pages. So ibv_reg_mr would have to require page -aligned memory. Not a huge problem in and of itself, but affects the API. > Michael> Some people do care about it > Michael> http://kerneltrap.org/node/4540 I dont know how > Michael> reasonable it is to make this unfixable by design. > > This is all pretty encapsulated and can be ripped out later. > Although > if there are better ideas now, please bring them out... > > - R. Okay. I think its clear that if the doorbell itself was done from the kernel context, we could lock the memory just before the doorbell and unlock when that is done (and do a copy if physical address moved). So the administrator could limit the ability for raw memory registrations to more priviledged users (we may need a new rlimit for this, or something like that), and let others get a bit higher latency but without the risk of a DOS, and with lower memory requirements. MST -- I dont speak for Mellanox. From torben.mathiasen at hp.com Tue Jan 25 05:19:54 2005 From: torben.mathiasen at hp.com (Torben Mathiasen) Date: Tue, 25 Jan 2005 14:19:54 +0100 Subject: [openib-general] Re: InfiniBand MAD device number request In-Reply-To: <527jmfn9q0.fsf@topspin.com> References: <52brcce5b9.fsf@topspin.com> <20050107120451.GK4592@linux2> <52oefz23fr.fsf@topspin.com> <20050111145814.GP4249@linux2> <52y8exot3v.fsf@topspin.com> <20050114101650.GB4102@linux2> <527jmfn9q0.fsf@topspin.com> Message-ID: <20050125131954.GB4158@linux2> On Fri, Jan 14 2005, Roland Dreier wrote: > Torben> But, initially we were talking 32 or 64 minors, now its 2K > Torben> or 4K? If you really need that many, no problem, but try > Torben> to think about if its really necessary. Thats a LOT of > Torben> minors. > > Fair enough, I was just getting overexcited by all the space that's > available up there. Let's just allocate 64 minors for > /dev/infiniband/umad0 ... /dev/infiniband/umad63 and be ready to > allocate at least two or three more chunks for 64 minors soon. > Ok here's the deal. I started a new 2.6+ device list. This list will start to have more 2.6+ specific entries. You new major/minors are: 231 char InfiniBand MAD 0 = /dev/infiniband/umad0 1 = /dev/infiniband/umad1 ... So far you have the whole major. The updated list is available at lanana.org. Thanks, Torben From tduffy at sun.com Tue Jan 25 09:58:14 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 25 Jan 2005 09:58:14 -0800 Subject: [openib-general] Re: [openib-commits] r1642 - in gen2/trunk/src/userspace/management: . diags/host/ibstat diags/net diags/net/ibnetdiscover diags/net/sminfo diags/net/smpdump diags/net/smpquery include libcommon libmad libmad/not_yet libumad In-Reply-To: <20050125175438.2C77222834D@openib.ca.sandia.gov> References: <20050125175438.2C77222834D@openib.ca.sandia.gov> Message-ID: <1106675894.22477.1.camel@duffman> On Tue, 2005-01-25 at 09:54 -0800, shaharf at openib.org wrote: > smpquery added gcc sminfo.o -o sminfo -L/build1/tduffy/openib-work/gen2/trunk/src/lib /build1/tduffy/openib-work/gen2/trunk/src/lib/libcommon.so /build1/tduffy/openib-work/gen2/trunk/src/lib/libumad.so /build1/tduffy/openib-work/gen2/trunk/src/lib/libmad.so -lm -Wl,--rpath -Wl,/build1/tduffy/openib-work/gen2/trunk/src/lib -Wl,--rpath -Wl,/build1/tduffy/openib-work/gen2/trunk/src/lib sminfo.o(.text+0x387): In function `main': /build1/tduffy/openib-work/gen2/trunk/src/userspace/management/diags/net/sminfo/sminfo.c:146: undefined reference to `ib_resolve_portid_str' sminfo.o(.text+0x3b2):/build1/tduffy/openib-work/gen2/trunk/src/userspace/management/diags/net/sminfo/sminfo.c:149: undefined reference to `ib_resolve_smlid' collect2: ld returned 1 exit status make[1]: *** [sminfo] Error 1 make[1]: Leaving directory `/build1/tduffy/openib-work/gen2/trunk/src/userspace/management/diags/net/sminfo' make: *** [subdirs] Error 1 -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From shaharf at voltaire.com Tue Jan 25 10:04:29 2005 From: shaharf at voltaire.com (shaharf) Date: Tue, 25 Jan 2005 20:04:29 +0200 Subject: [openib-general] RE: [openib-commits] r1642 - ingen2/trunk/src/userspace/management: . diags/host/ibstat diags/netdiags/net/ibnetdiscover diags/net/sminfo diags/net/smpdumpdiags/net/smpquery include libcommon libmad libmad/not_yet libumad Message-ID: > work/gen2/trunk/src/userspace/management/diags/net/sminfo/sminfo.c:146: > undefined reference to `ib_resolve_portid_str' > sminfo.o(.text+0x3b2):/build1/tduffy/openib- > work/gen2/trunk/src/userspace/management/diags/net/sminfo/sminfo.c:149: > undefined reference to `ib_resolve_smlid' > collect2: ld returned 1 exit status > make[1]: *** [sminfo] Error 1 > make[1]: Leaving directory `/build1/tduffy/openib- > work/gen2/trunk/src/userspace/management/diags/net/sminfo' > make: *** [subdirs] Error 1 Tom, Some files were missing. I already checked them in. Please update. Shahar From shaharf at voltaire.com Tue Jan 25 10:05:42 2005 From: shaharf at voltaire.com (shaharf) Date: Tue, 25 Jan 2005 20:05:42 +0200 Subject: [openib-general] FW: [openib-commits] r1642 Message-ID: -----Original Message----- From: shaharf Sent: Tuesday, January 25, 2005 8:04 PM To: 'Tom Duffy' Cc: 'openib-general at openib.org' Subject: RE: [openib-commits] r1642 - ingen2/trunk/src/userspace/management: . diags/host/ibstat diags/netdiags/net/ibnetdiscover diags/net/sminfo diags/net/smpdumpdiags/net/smpquery include libcommon libmad libmad/not_yet libumad > work/gen2/trunk/src/userspace/management/diags/net/sminfo/sminfo.c:146: > undefined reference to `ib_resolve_portid_str' > sminfo.o(.text+0x3b2):/build1/tduffy/openib- > work/gen2/trunk/src/userspace/management/diags/net/sminfo/sminfo.c:149: > undefined reference to `ib_resolve_smlid' > collect2: ld returned 1 exit status > make[1]: *** [sminfo] Error 1 > make[1]: Leaving directory `/build1/tduffy/openib- > work/gen2/trunk/src/userspace/management/diags/net/sminfo' > make: *** [subdirs] Error 1 Tom, Some files were missing. I already checked them in. Please update. Shahar From mshefty at ichips.intel.com Tue Jan 25 11:11:19 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Tue, 25 Jan 2005 11:11:19 -0800 Subject: [openib-general] [PATCH] [RFC] new CM API to format QP attributes Message-ID: <20050125111119.3a965e62.mshefty@ichips.intel.com> Here's a new API to the CM to format QP attributes required to transition a QP to a specified state. Only a transition to the INIT state is coded currently. I'll add in the other transitions shortly. - Sean Index: include/ib_cm.h =================================================================== --- include/ib_cm.h (revision 1636) +++ include/ib_cm.h (working copy) @@ -473,6 +473,26 @@ u8 private_data_len); /** + * ib_cm_init_qp_attr - Initializes the QP attributes for use in transitioning + * to a specified QP state. + * @cm_id: Communication identifier associated with the QP attributes to + * initialize. + * @qp_attr: On input, specifies the desired QP state. On output, the + * mandatory and desired optional attributes will be set in order to + * modify the QP to the specified state. + * @qp_attr_mask: The QP attribute mask that may be used to transition the + * QP to the specified state. + * + * Users must set the @qp_attr->qp_state to the desired QP state. This call + * will set all required attributes for the given transition, along with + * known optional attributes. Users may override the attributes returned from + * this call before calling ib_modify_qp. + */ +int ib_cm_init_qp_attr(struct ib_cm_id *cm_id, + struct ib_qp_attr *qp_attr, + int *qp_attr_mask); + +/** * ib_send_cm_apr - Sends an alternate path response message in response to * a load alternate path request. * @cm_id: Connection identifier associated with the alternate path response. Index: core/cm.c =================================================================== --- core/cm.c (revision 1637) +++ core/cm.c (working copy) @@ -111,6 +111,8 @@ u8 max_cm_retries; u8 passive; u8 peer_to_peer; + u8 responder_resources; + u8 initiator_depth; struct list_head work_list; atomic_t work_count; @@ -779,6 +781,7 @@ param->remote_cm_response_timeout); cm_id_priv->max_cm_retries = param->max_cm_retries; cm_id_priv->local_qpn = cpu_to_be32(param->qp->qp_num); + cm_id_priv->initiator_depth = param->initiator_depth; path = param->primary_path; cm_set_ah_attr(&cm_id_priv->ah_attr, cm_id_priv->port->port_num, path->dlid, path->sl, path->slid & 0x7F); @@ -2464,6 +2467,80 @@ queue_work(cm.wq, &work->work); } +static int cm_init_qp_init_attr(struct cm_id_private *cm_id_priv, + struct ib_qp_attr *qp_attr, + int *qp_attr_mask) +{ + unsigned long flags; + int ret; + + spin_lock_irqsave(&cm_id_priv->lock, flags); + switch (cm_id_priv->id.state) { + case IB_CM_REQ_SENT: + case IB_CM_MRA_REQ_RCVD: + case IB_CM_REQ_RCVD: + case IB_CM_MRA_REQ_SENT: + case IB_CM_REP_RCVD: + case IB_CM_MRA_REP_SENT: + case IB_CM_REP_SENT: + case IB_CM_MRA_REP_RCVD: + qp_attr->pkey_index = cm_id_priv->pkey_index; + qp_attr->port_num = cm_id_priv->port->port_num; + *qp_attr_mask = IB_QP_STATE | IB_QP_PKEY_INDEX | IB_QP_PORT; + if (cm_id_priv->initiator_depth) { + qp_attr->max_rd_atomic = cm_id_priv->initiator_depth; + *qp_attr_mask |= IB_QP_MAX_QP_RD_ATOMIC; + } + ret = 0; + break; + default: + ret = -EINVAL; + break; + } + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + return ret; +} + +static int cm_init_qp_rtr_attr(struct cm_id_private *cm_id_priv, + struct ib_qp_attr *qp_attr, + int *qp_attr_mask) +{ + return -EINVAL; +} + +static int cm_init_qp_rts_attr(struct cm_id_private *cm_id_priv, + struct ib_qp_attr *qp_attr, + int *qp_attr_mask) +{ + return -EINVAL; +} + +int ib_cm_init_qp_attr(struct ib_cm_id *cm_id, + struct ib_qp_attr *qp_attr, + int *qp_attr_mask) +{ + struct cm_id_private *cm_id_priv; + int ret; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + switch (qp_attr->qp_state) { + case IB_QPS_INIT: + ret = cm_init_qp_init_attr(cm_id_priv, qp_attr, qp_attr_mask); + break; + case IB_QPS_RTR: + ret = cm_init_qp_rtr_attr(cm_id_priv, qp_attr, qp_attr_mask); + break; + case IB_QPS_RTS: + ret = cm_init_qp_rts_attr(cm_id_priv, qp_attr, qp_attr_mask); + break; + default: + ret = -EINVAL; + break; + } + return ret; +} +EXPORT_SYMBOL(ib_cm_init_qp_attr); + static u64 cm_get_ca_guid(struct ib_device *device) { struct ib_device_attr *device_attr; From tduffy at sun.com Tue Jan 25 10:21:12 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 25 Jan 2005 10:21:12 -0800 Subject: [openib-general] RE: [openib-commits] r1642 - ingen2/trunk/src/userspace/management: . diags/host/ibstat diags/netdiags/net/ibnetdiscover diags/net/sminfo diags/net/smpdumpdiags/net/smpquery include libcommon libmad libmad/not_yet libumad In-Reply-To: References: Message-ID: <1106677272.8043.4.camel@duffman> On Tue, 2005-01-25 at 20:04 +0200, shaharf wrote: > Some files were missing. I already checked them in. Please > update. Ok, thanks. It is now building fine. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From halr at voltaire.com Tue Jan 25 10:52:32 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 25 Jan 2005 13:52:32 -0500 Subject: [openib-general] RE: [openib-commits] r1642 - ingen2/trunk/src/userspace/management: . diags/host/ibstat diags/netdiags/net/ibnetdiscover diags/net/sminfo diags/net/smpdumpdiags/net/smpquery include libcommon libmad libmad/not_yet libumad In-Reply-To: <1106677272.8043.4.camel@duffman> References: <1106677272.8043.4.camel@duffman> Message-ID: <1106679152.4648.5241.camel@localhost.localdomain> Hi Tom, You can now run smpquery portinfo 3 for full PortInfo decode (where LID 3 is the target machine) rather than smpdump 0x15 3 and decode by "hand". -- Hal From tduffy at sun.com Tue Jan 25 13:54:11 2005 From: tduffy at sun.com (Tom Duffy) Date: Tue, 25 Jan 2005 13:54:11 -0800 Subject: [openib-general] Business inquiry. In-Reply-To: <621.379607.845904@gtlaser.com> References: <621.379607.845904@gtlaser.com> Message-ID: <1106690051.8043.20.camel@duffman> On Tue, 2005-01-25 at 12:36 -0800, john at gtlaser.com wrote: > John Smirley > Sales Manager > 888-662-2256 This guy actually picked up. Give him a call ;) -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From mshefty at ichips.intel.com Tue Jan 25 15:05:20 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Tue, 25 Jan 2005 15:05:20 -0800 Subject: [openib-general] [PATCH] [RFC] new CM API to format QP attributes In-Reply-To: <20050125111119.3a965e62.mshefty@ichips.intel.com> References: <20050125111119.3a965e62.mshefty@ichips.intel.com> Message-ID: <41F6D0B0.2070405@ichips.intel.com> Sean Hefty wrote: > Here's a new API to the CM to format QP attributes required to transition > a QP to a specified state. Only a transition to the INIT state is coded > currently. I'll add in the other transitions shortly. > > +int ib_cm_init_qp_attr(struct ib_cm_id *cm_id, > + struct ib_qp_attr *qp_attr, > + int *qp_attr_mask); > + With respect to the QP attributes being set, the CM is missing the minimum RNR NAK timer field, which is needed to transition the QP to RTR, but not needed by the CM. A few options: * Let the CM set the value to a default, such as 1. I'm leaning towards a low value here, because I'm questioning the usefulness of RNR NAK. * Extend the CM API to let the user specify the value. The CM would only use this value to return it in the qp_attr if this call were made. This makes it explicit to the user that they need to provide a value. * Do nothing and make the user set the value in the qp_attr after calling the above function, but before calling ib_modify_qp. I'm leaning towards the first option at this point. - Sean From ftillier at infiniconsys.com Tue Jan 25 15:21:58 2005 From: ftillier at infiniconsys.com (Fab Tillier) Date: Tue, 25 Jan 2005 15:21:58 -0800 Subject: [openib-general] [PATCH] [RFC] new CM API to format QP attributes In-Reply-To: <41F6D0B0.2070405@ichips.intel.com> Message-ID: <000001c50334$ab7c7410$8d5aa8c0@infiniconsys.com> > From: Sean Hefty [mailto:mshefty at ichips.intel.com] > Sent: Tuesday, January 25, 2005 3:05 PM > > With respect to the QP attributes being set, the CM is missing the > minimum RNR NAK timer field, which is needed to transition the QP to > RTR, but not needed by the CM. A few options: > > * Let the CM set the value to a default, such as 1. I'm leaning > towards a low value here, because I'm questioning the usefulness of RNR > NAK. > > * Extend the CM API to let the user specify the value. The CM would > only use this value to return it in the qp_attr if this call were made. > This makes it explicit to the user that they need to provide a value. > > * Do nothing and make the user set the value in the qp_attr after > calling the above function, but before calling ib_modify_qp. > > I'm leaning towards the first option at this point. I'm for the first and third options - the CM sets a reasonable default and users can still override it if they care. - Fab From libor at topspin.com Tue Jan 25 15:39:10 2005 From: libor at topspin.com (Libor Michalek) Date: Tue, 25 Jan 2005 15:39:10 -0800 Subject: [openib-general] [PATCH] [RFC] new CM API to format QP attributes In-Reply-To: <41F6D0B0.2070405@ichips.intel.com>; from mshefty@ichips.intel.com on Tue, Jan 25, 2005 at 03:05:20PM -0800 References: <20050125111119.3a965e62.mshefty@ichips.intel.com> <41F6D0B0.2070405@ichips.intel.com> Message-ID: <20050125153910.A26189@topspin.com> On Tue, Jan 25, 2005 at 03:05:20PM -0800, Sean Hefty wrote: > > With respect to the QP attributes being set, the CM is missing the > minimum RNR NAK timer field, which is needed to transition the QP to > RTR, but not needed by the CM. A few options: > > * Let the CM set the value to a default, such as 1. I'm leaning > towards a low value here, because I'm questioning the usefulness of RNR > NAK. > > * Extend the CM API to let the user specify the value. The CM would > only use this value to return it in the qp_attr if this call were made. > This makes it explicit to the user that they need to provide a value. > > * Do nothing and make the user set the value in the qp_attr after > calling the above function, but before calling ib_modify_qp. > > I'm leaning towards the first option at this point. I would suggest the first option, which best matches purpose of the API as a set of helper functions. Also, a default of 1 sounds most reasonable for the reason you state. -Libor From roland at topspin.com Tue Jan 25 18:54:32 2005 From: roland at topspin.com (Roland Dreier) Date: Tue, 25 Jan 2005 18:54:32 -0800 Subject: [openib-general] [PATCH] [RFC] new CM API to format QP attributes In-Reply-To: <41F6D0B0.2070405@ichips.intel.com> (Sean Hefty's message of "Tue, 25 Jan 2005 15:05:20 -0800") References: <20050125111119.3a965e62.mshefty@ichips.intel.com> <41F6D0B0.2070405@ichips.intel.com> Message-ID: <52is5k3no7.fsf@topspin.com> Sean> * Let the CM set the value to a default, such as 1. I'm Sean> leaning towards a low value here, because I'm questioning Sean> the usefulness of RNR NAK. A default of 1 is probably fine. However RNR NAKs are actually pretty important for the RC protocol, especially when SRQs are being used. - R. From davem at davemloft.net Tue Jan 25 22:27:05 2005 From: davem at davemloft.net (David S. Miller) Date: Tue, 25 Jan 2005 22:27:05 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050121105452.GA12988@xi.wantstofly.org> References: <527jmu8nbw.fsf@topspin.com> <5cac192f0501030907c755135@mail.gmail.com> <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> <20050120085611.33f9485e@dxpl.pdx.osdl.net> <20050121105452.GA12988@xi.wantstofly.org> Message-ID: <20050125222705.1ee878fd.davem@davemloft.net> On Fri, 21 Jan 2005 11:54:52 +0100 Lennert Buytenhek wrote: > If multiple CPUs can call into the tunneling drivers without taking > any locks, we'd need some extra locking in there, or just do what > Alexey describes and keep track of recursion in the skb. Another idea is that, just like how loopback made it's statistics per-cpu for LLTX support, this recursion variable could be per-cpu as well. From mshefty at ichips.intel.com Wed Jan 26 02:38:49 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 02:38:49 -0800 Subject: [openib-general] [PATCH] CM: new call to return QP attributes for use modifying the QP Message-ID: <20050126023849.02da3323.mshefty@ichips.intel.com> This patch implements the new CM call to return a default set of QP attributes that can be used to call ib_modify_qp. The code was restructured in areas as a result of saving the necessary data. I have test code that is nearly complete that will exercise the CM APIs and can be used as sample code. It runs in the kernel only, but shouldn't be too difficult to port to user-mode. signed-off-by: Sean Hefty Index: include/ib_cm.h =================================================================== --- include/ib_cm.h (revision 1653) +++ include/ib_cm.h (working copy) @@ -473,6 +473,26 @@ u8 private_data_len); /** + * ib_cm_init_qp_attr - Initializes the QP attributes for use in transitioning + * to a specified QP state. + * @cm_id: Communication identifier associated with the QP attributes to + * initialize. + * @qp_attr: On input, specifies the desired QP state. On output, the + * mandatory and desired optional attributes will be set in order to + * modify the QP to the specified state. + * @qp_attr_mask: The QP attribute mask that may be used to transition the + * QP to the specified state. + * + * Users must set the @qp_attr->qp_state to the desired QP state. This call + * will set all required attributes for the given transition, along with + * known optional attributes. Users may override the attributes returned from + * this call before calling ib_modify_qp. + */ +int ib_cm_init_qp_attr(struct ib_cm_id *cm_id, + struct ib_qp_attr *qp_attr, + int *qp_attr_mask); + +/** * ib_send_cm_apr - Sends an alternate path response message in response to * a load alternate path request. * @cm_id: Connection identifier associated with the alternate path response. Index: core/cm.c =================================================================== --- core/cm.c (revision 1653) +++ core/cm.c (working copy) @@ -87,6 +87,13 @@ struct ib_mad mad; }; +struct cm_av { + struct cm_port *port; + union ib_gid dgid; + struct ib_ah_attr ah_attr; + u16 pkey_index; +}; + struct cm_id_private { struct ib_cm_id id; @@ -97,20 +104,25 @@ wait_queue_head_t wait; atomic_t refcount; - /* todo: use alternate port on send failure */ - struct cm_port *port; struct cm_msg *msg; + /* todo: use alternate port on send failure */ + struct cm_av av; + struct cm_av alt_av; - struct ib_ah_attr ah_attr; - u16 pkey_index; u32 local_qpn; u32 remote_qpn; + u32 send_psn; + u32 recv_psn; u64 remote_ca_guid; - union ib_gid remote_port_gid; int timeout_ms; u8 max_cm_retries; u8 passive; u8 peer_to_peer; + u8 responder_resources; + u8 initiator_depth; + u8 local_ack_timeout; + u8 retry_count; + u8 rnr_retry_count; struct list_head work_list; atomic_t work_count; @@ -143,9 +155,9 @@ return -ENOMEM; memset(m, 0, sizeof *m); - mad_agent = cm_id_priv->port->mad_agent; + mad_agent = cm_id_priv->av.port->mad_agent; m->send_wr.wr.ud.ah = ib_create_ah(mad_agent->qp->pd, - &cm_id_priv->ah_attr); + &cm_id_priv->av.ah_attr); if (IS_ERR(m->send_wr.wr.ud.ah)) { ret = PTR_ERR(m->send_wr.wr.ud.ah); kfree(m); @@ -157,7 +169,7 @@ DMA_TO_DEVICE); pci_unmap_addr_set(msg, mapping, m->sge.addr); m->sge.length = sizeof m->mad; - m->sge.lkey = cm_id_priv->port->mr->lkey; + m->sge.lkey = cm_id_priv->av.port->mr->lkey; m->send_wr.wr_id = (unsigned long) msg; m->send_wr.sg_list = &m->sge; @@ -168,7 +180,7 @@ m->send_wr.wr.ud.remote_qpn = 1; m->send_wr.wr.ud.remote_qkey = IB_QP1_QKEY; /* Timeout set by caller if response is expected. */ - m->send_wr.wr.ud.pkey_index = cm_id_priv->pkey_index; + m->send_wr.wr.ud.pkey_index = cm_id_priv->av.pkey_index; atomic_inc(&cm_id_priv->refcount); m->cm_id_priv = cm_id_priv; @@ -178,25 +190,16 @@ static void cm_free_msg(struct cm_msg *msg) { - ib_destroy_ah(msg->send_wr.wr.ud.ah); - dma_unmap_single(msg->cm_id_priv->port->mad_agent->device->dma_device, - pci_unmap_addr(msg, mapping), sizeof msg->mad, - DMA_TO_DEVICE); + struct ib_device *device; + ib_destroy_ah(msg->send_wr.wr.ud.ah); + device = msg->cm_id_priv->av.port->mad_agent->device; + dma_unmap_single(device->dma_device, pci_unmap_addr(msg, mapping), + sizeof msg->mad, DMA_TO_DEVICE); cm_deref_id(msg->cm_id_priv); kfree(msg); } -static void cm_set_ah_attr(struct ib_ah_attr *ah_attr, u8 port_num, - u16 dlid, u8 sl, u16 src_path_bits) -{ - memset(ah_attr, 0, sizeof ah_attr); - ah_attr->dlid = be16_to_cpu(dlid); - ah_attr->sl = sl; - ah_attr->src_path_bits = src_path_bits; - ah_attr->port_num = port_num; -} - static struct cm_port * cm_find_port(struct ib_device *device, union ib_gid *gid) { @@ -239,6 +242,36 @@ return 0; } +static void cm_set_ah_attr(struct ib_ah_attr *ah_attr, u8 port_num, + u16 dlid, u8 sl, u16 src_path_bits) +{ + memset(ah_attr, 0, sizeof ah_attr); + ah_attr->dlid = be16_to_cpu(dlid); + ah_attr->sl = sl; + ah_attr->src_path_bits = src_path_bits; + ah_attr->port_num = port_num; +} + +static int cm_init_av(struct ib_device *device, struct ib_sa_path_rec *path, + struct cm_av *av) +{ + int ret; + + av->port = cm_find_port(device, &path->sgid); + if (!av->port) + return -EINVAL; + + ret = ib_find_cached_pkey(device, av->port->port_num, path->pkey, + &av->pkey_index); + if (ret) + return ret; + + av->dgid = path->dgid; + cm_set_ah_attr(&av->ah_attr, av->port->port_num, path->dlid, + path->sl, path->slid & 0x7F); + return 0; +} + static int cm_alloc_id(struct cm_id_private *cm_id_priv) { unsigned long flags; @@ -388,7 +421,7 @@ struct rb_node **link = &cm.remote_qp_table.rb_node; struct rb_node *parent = NULL; struct cm_id_private *cur_cm_id_priv; - union ib_gid *port_gid = &cm_id_priv->remote_port_gid; + union ib_gid *port_gid = &cm_id_priv->dgid; u32 remote_qpn = cm_id_priv->remote_qpn; while (*link) { @@ -401,7 +434,7 @@ link = &(*link)->rb_right; else { int cmp; - cmp = memcmp(port_gid, &cur_cm_id_priv->remote_port_gid, + cmp = memcmp(port_gid, &cur_cm_id_priv->dgid, sizeof *port_gid); if (cmp < 0) link = &(*link)->rb_left; @@ -431,7 +464,7 @@ node = node->rb_right; else { int cmp; - cmp = memcmp(port_gid, &cm_id_priv->remote_port_gid, + cmp = memcmp(port_gid, &cm_id_priv->dgid, sizeof *port_gid); if (cmp < 0) node = node->rb_left; @@ -451,7 +484,7 @@ struct rb_node **link = &cm.remote_sidr_table.rb_node; struct rb_node *parent = NULL; struct cm_id_private *cur_cm_id_priv; - union ib_gid *port_gid = &cm_id_priv->remote_port_gid; + union ib_gid *port_gid = &cm_id_priv->av.dgid; u32 remote_id = cm_id_priv->id.remote_id; while (*link) { @@ -464,7 +497,7 @@ link = &(*link)->rb_right; else { int cmp; - cmp = memcmp(port_gid, &cur_cm_id_priv->remote_port_gid, + cmp = memcmp(port_gid, &cur_cm_id_priv->av.dgid, sizeof *port_gid); if (cmp < 0) link = &(*link)->rb_left; @@ -558,7 +591,7 @@ case IB_CM_SIDR_REQ_SENT: cm_id->state = IB_CM_IDLE; spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(cm_id_priv->port->mad_agent, + ib_cancel_mad(cm_id_priv->av.port->mad_agent, (unsigned long) cm_id_priv->msg); break; case IB_CM_SIDR_REQ_RCVD: @@ -575,8 +608,8 @@ case IB_CM_MRA_REP_RCVD: spin_unlock_irqrestore(&cm_id_priv->lock, flags); ib_send_cm_rej(cm_id, IB_CM_REJ_TIMEOUT, - &cm_id_priv->port->ca_guid, - sizeof &cm_id_priv->port->ca_guid, NULL, 0); + &cm_id_priv->av.port->ca_guid, + sizeof &cm_id_priv->av.port->ca_guid, NULL, 0); break; case IB_CM_ESTABLISHED: spin_unlock_irqrestore(&cm_id_priv->lock, flags); @@ -653,7 +686,7 @@ hdr->method = IB_MGMT_METHOD_SEND; hdr->attr_id = attr_id; - hi_tid = ((u64) cm_id_priv->port->mad_agent->hi_tid) << 32; + hi_tid = ((u64) cm_id_priv->av.port->mad_agent->hi_tid) << 32; low_tid = (u64) (cm_id_priv->id.local_id | (msg_seq << 30)); hdr->tid = cpu_to_be64(hi_tid | low_tid); } @@ -667,7 +700,7 @@ req_msg->local_comm_id = cm_id_priv->id.local_id; req_msg->service_id = param->service_id; - req_msg->local_ca_guid = cm_id_priv->port->ca_guid; + req_msg->local_ca_guid = cm_id_priv->av.port->ca_guid; cm_req_set_local_qpn(req_msg, cpu_to_be32(param->qp->qp_num)); cm_req_set_resp_res(req_msg, param->responder_resources); cm_req_set_init_depth(req_msg, param->initiator_depth); @@ -675,7 +708,7 @@ param->remote_cm_response_timeout); cm_req_set_qp_type(req_msg, param->qp->qp_type); cm_req_set_flow_ctrl(req_msg, param->flow_control); - cm_req_set_starting_psn(req_msg, param->starting_send_psn); + cm_req_set_starting_psn(req_msg, cpu_to_be32(param->starting_send_psn)); cm_req_set_local_resp_timeout(req_msg, param->local_cm_response_timeout); cm_req_set_retry_count(req_msg, param->retry_count); @@ -731,6 +764,10 @@ param->private_data_len > IB_CM_REQ_PRIVATE_DATA_SIZE) return -EINVAL; + if (param->alternate_path && + param->alternate_path->pkey != param->primary_path->pkey) + return -EINVAL; + return 0; } @@ -739,7 +776,7 @@ { struct cm_id_private *cm_id_priv; struct ib_send_wr *bad_send_wr; - struct ib_sa_path_rec *path; + struct cm_req_msg *req_msg; unsigned long flags; int ret; @@ -757,20 +794,16 @@ } spin_unlock_irqrestore(&cm_id_priv->lock, flags); - cm_id_priv->port = cm_find_port(param->qp->device, - ¶m->primary_path->sgid); - if (!cm_id_priv->port) { - ret = -EINVAL; - goto out; - } - - ret = ib_find_cached_pkey(param->qp->device, - cm_id_priv->port->port_num, - param->primary_path->pkey, - &cm_id_priv->pkey_index); + ret = cm_init_av(param->qp->device, param->primary_path, + &cm_id_priv->av); if (ret) goto out; - + if (param->alternate_path) { + ret = cm_init_av(param->qp->device, param->alternate_path, + &cm_id_priv->alt_av); + if (ret) + goto out; + } cm_id->service_id = param->service_id; cm_id->service_mask = ~0ULL; cm_id_priv->timeout_ms = cm_convert_to_ms( @@ -778,19 +811,24 @@ cm_convert_to_ms( param->remote_cm_response_timeout); cm_id_priv->max_cm_retries = param->max_cm_retries; - cm_id_priv->local_qpn = cpu_to_be32(param->qp->qp_num); - path = param->primary_path; - cm_set_ah_attr(&cm_id_priv->ah_attr, cm_id_priv->port->port_num, - path->dlid, path->sl, path->slid & 0x7F); + cm_id_priv->initiator_depth = param->initiator_depth; + cm_id_priv->responder_resources = param->responder_resources; + cm_id_priv->retry_count = param->retry_count; + ret = cm_alloc_msg(cm_id_priv, &cm_id_priv->msg); if (ret) goto out; - cm_format_req((struct cm_req_msg *)&cm_id_priv->msg->mad, - cm_id_priv, param); + req_msg = (struct cm_req_msg *)&cm_id_priv->msg->mad; + cm_format_req(req_msg, cm_id_priv, param); cm_id_priv->msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; cm_id_priv->msg->sent_state = IB_CM_REQ_SENT; + cm_id_priv->local_qpn = cm_req_get_local_qpn(req_msg); + cm_id_priv->send_psn = cm_req_get_starting_psn(req_msg); + cm_id_priv->local_ack_timeout = + cm_req_get_primary_local_ack_timeout(req_msg); + /* * Received REQs won't match until we're in REQ_SENT state. This * simplifies error recovery if the send fails. @@ -801,7 +839,7 @@ } spin_lock_irqsave(&cm_id_priv->lock, flags); - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + ret = ib_post_send_mad(cm_id_priv->av.port->mad_agent, &cm_id_priv->msg->send_wr, &bad_send_wr); if (ret) { @@ -828,9 +866,9 @@ (be32_to_cpu(local_qpn) > be32_to_cpu(remote_qpn)))); } -static inline void cm_format_paths_from_req(struct ib_sa_path_rec *primary_path, - struct ib_sa_path_rec *alt_path, - struct cm_req_msg *req_msg) +static inline void cm_format_paths_from_req(struct cm_req_msg *req_msg, + struct ib_sa_path_rec *primary_path, + struct ib_sa_path_rec *alt_path) { memset(primary_path, 0, sizeof *primary_path); primary_path->dgid = req_msg->primary_local_gid; @@ -851,7 +889,7 @@ primary_path->packet_life_time = cm_req_get_primary_local_ack_timeout(req_msg); - if (alt_path) { + if (req_msg->alt_local_lid) { memset(alt_path, 0, sizeof *alt_path); alt_path->dgid = req_msg->alt_local_gid; alt_path->sgid = req_msg->alt_remote_gid; @@ -874,6 +912,7 @@ } static void cm_format_req_event(struct cm_work *work, + struct cm_id_private *cm_id_priv, struct ib_cm_id *listen_id) { struct cm_req_msg *req_msg; @@ -883,22 +922,20 @@ work->cm_event.event = IB_CM_REQ_RECEIVED; param = &work->cm_event.param.req_rcvd; param->listen_id = listen_id; - param->device = work->port->mad_agent->device; - param->port = work->port->port_num; + param->device = cm_id_priv->av.port->mad_agent->device; + param->port = cm_id_priv->av.port->port_num; param->primary_path = &work->path[0]; if (req_msg->alt_local_lid) param->alternate_path = &work->path[1]; else param->alternate_path = NULL; - cm_format_paths_from_req(param->primary_path, param->alternate_path, - req_msg); param->remote_ca_guid = req_msg->local_ca_guid; param->remote_qkey = be32_to_cpu(req_msg->local_qkey); param->remote_qpn = be32_to_cpu(cm_req_get_local_qpn(req_msg)); param->qp_type = cm_req_get_qp_type(req_msg); param->starting_psn = be32_to_cpu(cm_req_get_starting_psn(req_msg)); - param->responder_resources = cm_req_get_resp_res(req_msg); - param->initiator_depth = cm_req_get_init_depth(req_msg); + param->responder_resources = cm_req_get_init_depth(req_msg); + param->initiator_depth = cm_req_get_resp_res(req_msg); param->local_cm_response_timeout = cm_req_get_remote_resp_timeout(req_msg); param->flow_control = cm_req_get_flow_ctrl(req_msg); @@ -934,93 +971,122 @@ ib_destroy_cm_id(&cm_id_priv->id); } +static int cm_peer_req_handler(struct cm_work *work) +{ + /* todo: fix peer-to-peer + spin_lock_irqsave(&cm.lock, flags); + if (cm_is_active_peer(work->port->ca_guid, + req_msg->local_ca_guid, + cur_cm_id_priv->local_qpn, + cm_req_get_local_qpn(req_msg))) { + spin_unlock_irqrestore(&cm.lock, flags); + ret = 1; + goto out; + } + atomic_inc(&cur_cm_id_priv->refcount); + cur_cm_id_priv->id.state = IB_CM_REQ_RCVD; + rb_erase(&cur_cm_id_priv->service_node, &cm.service_table); + cur_cm_id_priv->peer_to_peer = 0; + cur_cm_id_priv->remote_ca_guid = req_msg->local_ca_guid; + cur_cm_id_priv->id.remote_id = req_msg->local_comm_id; + cm_insert_remote_id(cur_cm_id_priv); + spin_unlock_irqrestore(&cm.lock, flags); + + ib_cancel_mad(work->port->mad_agent, + (unsigned long) cur_cm_id_priv->msg); + ib_destroy_cm_id(&cm_id_priv->id); + cm_id_priv = cur_cm_id_priv; +out: + return ret; + */ + return -ECONNREFUSED; /* Does not match a peer-to-peer request */ +} + static int cm_req_handler(struct cm_work *work) { struct ib_cm_id *cm_id; - struct cm_id_private *cm_id_priv, *cur_cm_id_priv; + struct cm_id_private *cm_id_priv, *listen_cm_id_priv; struct cm_req_msg *req_msg; unsigned long flags; - struct ib_wc *wc; + int ret; + + req_msg = (struct cm_req_msg *)work->mad_recv_wc->recv_buf.mad; + + /* Check for duplicate REQ. */ + spin_lock_irqsave(&cm.lock, flags); + cm_id_priv = cm_find_id_by_remote_id(req_msg->local_ca_guid, + req_msg->local_comm_id); + spin_unlock_irqrestore(&cm.lock, flags); + if (cm_id_priv) + return -EINVAL; + + /* Check for peer-to-peer connection. */ + ret = cm_peer_req_handler(work); + if (ret != -ECONNREFUSED) + return ret; cm_id = ib_create_cm_id(NULL, NULL); if (IS_ERR(cm_id)) return PTR_ERR(cm_id); + cm_id_priv = container_of(cm_id, struct cm_id_private, id); - - req_msg = (struct cm_req_msg *)work->mad_recv_wc->recv_buf.mad; cm_id_priv->remote_ca_guid = req_msg->local_ca_guid; cm_id_priv->id.remote_id = req_msg->local_comm_id; cm_id_priv->passive = 1; + /* Find matching listen request. */ spin_lock_irqsave(&cm.lock, flags); - /* Check for duplicate REQ. */ - cur_cm_id_priv = cm_find_id_by_remote_id(req_msg->local_ca_guid, - req_msg->local_comm_id); - if (cur_cm_id_priv) { + listen_cm_id_priv = cm_find_listen(req_msg->service_id); + if (!listen_cm_id_priv) { spin_unlock_irqrestore(&cm.lock, flags); - goto out; /* Duplicate message. */ + /* todo: reject with no match */ + ret = -EINVAL; + goto out; } - /* Find matching listen request. */ - cur_cm_id_priv = cm_find_listen(req_msg->service_id); - if (cur_cm_id_priv) { - atomic_inc(&cur_cm_id_priv->refcount); - atomic_inc(&cm_id_priv->refcount); - cm_id_priv->id.state = IB_CM_REQ_RCVD; - atomic_inc(&cm_id_priv->work_count); - cm_insert_remote_id(cm_id_priv); - spin_unlock_irqrestore(&cm.lock, flags); + atomic_inc(&listen_cm_id_priv->refcount); + atomic_inc(&cm_id_priv->refcount); + cm_id_priv->id.state = IB_CM_REQ_RCVD; + atomic_inc(&cm_id_priv->work_count); + cm_insert_remote_id(cm_id_priv); + spin_unlock_irqrestore(&cm.lock, flags); - cm_id_priv->id.cm_handler = cur_cm_id_priv->id.cm_handler; - cm_id_priv->id.context = cur_cm_id_priv->id.context; - cm_id_priv->id.service_id = req_msg->service_id; - cm_id_priv->id.service_mask = ~0ULL; - } else { - /* Search for a peer request. */ - /* todo: fix peer-to-peer */ - if (!cur_cm_id_priv) { - spin_unlock_irqrestore(&cm.lock, flags); - /* todo: reject with no match */ - goto out; - } - if (cm_is_active_peer(work->port->ca_guid, - req_msg->local_ca_guid, - cur_cm_id_priv->local_qpn, - cm_req_get_local_qpn(req_msg))) { - spin_unlock_irqrestore(&cm.lock, flags); - goto out; /* Stay active. */ - } - atomic_inc(&cur_cm_id_priv->refcount); - cur_cm_id_priv->id.state = IB_CM_REQ_RCVD; - /*rb_erase(&cur_cm_id_priv->service_node, &cm.service_table);*/ - cur_cm_id_priv->peer_to_peer = 0; - cur_cm_id_priv->remote_ca_guid = req_msg->local_ca_guid; - cur_cm_id_priv->id.remote_id = req_msg->local_comm_id; - cm_insert_remote_id(cur_cm_id_priv); - spin_unlock_irqrestore(&cm.lock, flags); + cm_id_priv->id.cm_handler = listen_cm_id_priv->id.cm_handler; + cm_id_priv->id.context = listen_cm_id_priv->id.context; + cm_id_priv->id.service_id = req_msg->service_id; + cm_id_priv->id.service_mask = ~0ULL; - ib_cancel_mad(work->port->mad_agent, - (unsigned long) cur_cm_id_priv->msg); - ib_destroy_cm_id(&cm_id_priv->id); - cm_id_priv = cur_cm_id_priv; + cm_format_paths_from_req(req_msg, &work->path[0], &work->path[1]); + ret = cm_init_av(work->port->mad_agent->device, &work->path[0], + &cm_id_priv->av); + if (ret) + goto bad_req; + if (req_msg->alt_local_lid) { + ret = cm_init_av(work->port->mad_agent->device, &work->path[1], + &cm_id_priv->alt_av); + if (ret) + goto bad_req; } - cm_id_priv->port = work->port; cm_id_priv->timeout_ms = cm_convert_to_ms( cm_req_get_local_resp_timeout(req_msg)); cm_id_priv->max_cm_retries = cm_req_get_max_cm_retries(req_msg); cm_id_priv->remote_qpn = cm_req_get_local_qpn(req_msg); - cm_id_priv->remote_port_gid = req_msg->primary_local_gid; - wc = work->mad_recv_wc->wc; - cm_id_priv->pkey_index = wc->pkey_index; - cm_set_ah_attr(&cm_id_priv->ah_attr, work->port->port_num, - wc->slid, wc->sl, wc->dlid_path_bits); + cm_id_priv->initiator_depth = cm_req_get_resp_res(req_msg); + cm_id_priv->responder_resources = cm_req_get_init_depth(req_msg); + cm_id_priv->recv_psn = cm_req_get_starting_psn(req_msg); + cm_id_priv->local_ack_timeout = + cm_req_get_primary_local_ack_timeout(req_msg); + cm_id_priv->retry_count = cm_req_get_retry_count(req_msg); + cm_id_priv->rnr_retry_count = cm_req_get_rnr_retry_count(req_msg); - cm_format_req_event(work, &cur_cm_id_priv->id); + cm_format_req_event(work, cm_id_priv, &listen_cm_id_priv->id); cm_process_work(cm_id_priv, work); - cm_deref_id(cur_cm_id_priv); + cm_deref_id(listen_cm_id_priv); return 0; +bad_req: + cm_deref_id(listen_cm_id_priv); out: ib_destroy_cm_id(&cm_id_priv->id); - return -EINVAL; + return ret; } static void cm_format_rep(struct cm_rep_msg *rep_msg, @@ -1041,7 +1107,7 @@ cm_rep_set_flow_ctrl(rep_msg, param->flow_control); cm_rep_set_rnr_retry_count(rep_msg, param->rnr_retry_count); cm_rep_set_srq(rep_msg, (param->qp->srq != NULL)); - rep_msg->local_ca_guid = cm_id_priv->port->ca_guid; + rep_msg->local_ca_guid = cm_id_priv->av.port->ca_guid; if (param->private_data && param->private_data_len) memcpy(rep_msg->private_data, param->private_data, @@ -1068,6 +1134,7 @@ { struct cm_id_private *cm_id_priv; struct cm_msg *msg; + struct cm_rep_msg *rep_msg; struct ib_send_wr *bad_send_wr; unsigned long flags; int ret; @@ -1081,14 +1148,15 @@ if (ret) goto out; - cm_format_rep((struct cm_rep_msg *)&msg->mad, cm_id_priv, param); + rep_msg = (struct cm_rep_msg *)&msg->mad; + cm_format_rep(rep_msg, cm_id_priv, param); msg->send_wr.wr.ud.timeout_ms = cm_id_priv->timeout_ms; msg->sent_state = IB_CM_REP_SENT; spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state == IB_CM_REQ_RCVD || cm_id->state == IB_CM_MRA_REQ_SENT) - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + ret = ib_post_send_mad(cm_id_priv->av.port->mad_agent, &msg->send_wr, &bad_send_wr); else ret = -EINVAL; @@ -1101,6 +1169,10 @@ cm_id->state = IB_CM_REP_SENT; cm_id_priv->msg = msg; + cm_id_priv->initiator_depth = param->initiator_depth; + cm_id_priv->responder_resources = param->responder_resources; + cm_id_priv->send_psn = cpu_to_be32(param->starting_send_psn & + 0x00FFFFFF); spin_unlock_irqrestore(&cm_id_priv->lock, flags); out: return ret; @@ -1133,7 +1205,7 @@ return; cm_format_rtu((struct cm_rtu_msg *)&msg->mad, cm_id_priv, NULL, 0); - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + ret = ib_post_send_mad(cm_id_priv->av.port->mad_agent, &msg->send_wr, &bad_send_wr); if (ret) cm_free_msg(cm_id_priv->msg); @@ -1163,7 +1235,7 @@ spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state == IB_CM_REP_RCVD || cm_id->state == IB_CM_MRA_REP_SENT) - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + ret = ib_post_send_mad(cm_id_priv->av.port->mad_agent, &msg->send_wr, &bad_send_wr); else ret = -EINVAL; @@ -1193,8 +1265,8 @@ param->remote_qkey = be32_to_cpu(rep_msg->local_qkey); param->remote_qpn = be32_to_cpu(cm_rep_get_local_qpn(rep_msg)); param->starting_psn = be32_to_cpu(cm_rep_get_starting_psn(rep_msg)); - param->responder_resources = rep_msg->resp_resources; - param->initiator_depth = rep_msg->initiator_depth; + param->responder_resources = rep_msg->initiator_depth; + param->initiator_depth = rep_msg->resp_resources; param->target_ack_delay = cm_rep_get_target_ack_delay(rep_msg); param->failover_accepted = cm_rep_get_failover(rep_msg); param->flow_control = cm_rep_get_flow_ctrl(rep_msg); @@ -1235,6 +1307,10 @@ cm_id_priv->id.remote_id = rep_msg->local_comm_id; cm_id_priv->remote_ca_guid = rep_msg->local_ca_guid; cm_id_priv->remote_qpn = cm_rep_get_local_qpn(rep_msg); + cm_id_priv->initiator_depth = rep_msg->resp_resources; + cm_id_priv->responder_resources = rep_msg->initiator_depth; + cm_id_priv->recv_psn = cm_rep_get_starting_psn(rep_msg); + cm_id_priv->rnr_retry_count = cm_rep_get_rnr_retry_count(rep_msg); /* todo: handle peer_to_peer if (cm_id_priv->peer_to_peer) { @@ -1251,7 +1327,7 @@ list_add_tail(&work->list, &cm_id_priv->work_list); spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(cm_id_priv->port->mad_agent, wr_id); + ib_cancel_mad(cm_id_priv->av.port->mad_agent, wr_id); if (ret) cm_process_work(cm_id_priv, work); else @@ -1292,7 +1368,7 @@ list_add_tail(&work->list, &cm_id_priv->work_list); spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(cm_id_priv->port->mad_agent, wr_id); + ib_cancel_mad(cm_id_priv->av.port->mad_agent, wr_id); if (ret) cm_process_work(cm_id_priv, work); else @@ -1375,7 +1451,7 @@ goto out; } ret = msg_ret ? msg_ret : - ib_post_send_mad(cm_id_priv->port->mad_agent, + ib_post_send_mad(cm_id_priv->av.port->mad_agent, &msg->send_wr, &bad_send_wr); if (!ret) { cm_id->state = IB_CM_DREQ_SENT; @@ -1419,7 +1495,7 @@ return; cm_format_drep((struct cm_drep_msg *)&msg->mad, cm_id_priv, NULL, 0); - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + ret = ib_post_send_mad(cm_id_priv->av.port->mad_agent, &msg->send_wr, &bad_send_wr); if (ret) cm_free_msg(cm_id_priv->msg); @@ -1451,7 +1527,7 @@ goto out; } ret = msg_ret ? msg_ret : - ib_post_send_mad(cm_id_priv->port->mad_agent, + ib_post_send_mad(cm_id_priv->av.port->mad_agent, &msg->send_wr, &bad_send_wr); cm_id->state = IB_CM_TIMEWAIT; @@ -1546,7 +1622,7 @@ list_add_tail(&work->list, &cm_id_priv->work_list); spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(cm_id_priv->port->mad_agent, wr_id); + ib_cancel_mad(cm_id_priv->av.port->mad_agent, wr_id); if (cm_id_priv->passive) cm_remove_remote_id(cm_id_priv); @@ -1645,7 +1721,7 @@ cm_remove_remote_id(cm_id_priv); ret = msg_ret ? msg_ret : - ib_post_send_mad(cm_id_priv->port->mad_agent, + ib_post_send_mad(cm_id_priv->av.port->mad_agent, &msg->send_wr, &bad_send_wr); out: if (!msg_ret && ret) @@ -1729,7 +1805,7 @@ (cm_id_priv->id.state != IB_CM_ESTABLISHED || cm_id_priv->id.lap_state != IB_CM_LAP_RCVD)) { - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + ret = ib_post_send_mad(cm_id_priv->av.port->mad_agent, &msg->send_wr, &bad_send_wr); } else { ret = -EINVAL; @@ -1826,7 +1902,7 @@ spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state == IB_CM_ESTABLISHED && cm_id->lap_state == IB_CM_LAP_IDLE) - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + ret = ib_post_send_mad(cm_id_priv->av.port->mad_agent, &msg->send_wr, &bad_send_wr); else ret = -EINVAL; @@ -1962,7 +2038,7 @@ if (cm_id->state == IB_CM_ESTABLISHED && (cm_id->lap_state == IB_CM_LAP_RCVD || cm_id->lap_state == IB_CM_MRA_LAP_SENT)) - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + ret = ib_post_send_mad(cm_id_priv->av.port->mad_agent, &msg->send_wr, &bad_send_wr); else ret = -EINVAL; @@ -2014,7 +2090,7 @@ list_add_tail(&work->list, &cm_id_priv->work_list); spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(cm_id_priv->port->mad_agent, wr_id); + ib_cancel_mad(cm_id_priv->av.port->mad_agent, wr_id); if (ret) cm_process_work(cm_id_priv, work); @@ -2057,12 +2133,11 @@ return -EINVAL; cm_id_priv = container_of(cm_id, struct cm_id_private, id); - ret = cm_find_device(¶m->path->sgid, &device, &cm_id_priv->port); + ret = cm_find_device(¶m->path->sgid, &device, &cm_id_priv->av.port); if (ret) goto out; - ret = ib_find_cached_pkey(device, cm_id_priv->port->port_num, - param->path->pkey, &cm_id_priv->pkey_index); + ret = cm_init_av(device, param->path, &cm_id_priv->av); if (ret) goto out; @@ -2070,9 +2145,6 @@ cm_id->service_mask = ~0ULL; cm_id_priv->timeout_ms = param->timeout_ms; cm_id_priv->max_cm_retries = param->max_cm_retries; - cm_set_ah_attr(&cm_id_priv->ah_attr, cm_id_priv->port->port_num, - param->path->dlid, param->path->sl, - param->path->slid & 0x7F); ret = cm_alloc_msg(cm_id_priv, &msg); if (ret) goto out; @@ -2084,7 +2156,7 @@ spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state == IB_CM_IDLE) - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + ret = ib_post_send_mad(cm_id_priv->av.port->mad_agent, &msg->send_wr, &bad_send_wr); else ret = -EINVAL; @@ -2136,8 +2208,8 @@ sidr_req_msg = (struct cm_sidr_req_msg *) work->mad_recv_wc->recv_buf.mad; wc = work->mad_recv_wc->wc; - cm_id_priv->remote_port_gid.global.subnet_prefix = wc->slid; - cm_id_priv->remote_port_gid.global.interface_id = 0; + cm_id_priv->av.dgid.global.subnet_prefix = wc->slid; + cm_id_priv->av.dgid.global.interface_id = 0; cm_id_priv->id.remote_id = sidr_req_msg->request_id; cm_id_priv->id.state = IB_CM_SIDR_REQ_RCVD; atomic_inc(&cm_id_priv->work_count); @@ -2162,9 +2234,9 @@ cm_id_priv->id.context = cur_cm_id_priv->id.context; cm_id_priv->id.service_id = sidr_req_msg->service_id; cm_id_priv->id.service_mask = ~0ULL; - cm_id_priv->port = work->port; - cm_id_priv->pkey_index = wc->pkey_index; - cm_set_ah_attr(&cm_id_priv->ah_attr, work->port->port_num, + cm_id_priv->av.port = work->port; + cm_id_priv->av.pkey_index = wc->pkey_index; + cm_set_ah_attr(&cm_id_priv->av.ah_attr, work->port->port_num, wc->slid, wc->sl, wc->dlid_path_bits); cm_format_sidr_req_event(work, &cur_cm_id_priv->id); @@ -2221,7 +2293,7 @@ spin_lock_irqsave(&cm_id_priv->lock, flags); if (cm_id->state == IB_CM_SIDR_REQ_RCVD) - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + ret = ib_post_send_mad(cm_id_priv->av.port->mad_agent, &msg->send_wr, &bad_send_wr); else ret = -EINVAL; @@ -2279,7 +2351,7 @@ cm_id_priv->id.state = IB_CM_IDLE; spin_unlock_irqrestore(&cm_id_priv->lock, flags); - ib_cancel_mad(cm_id_priv->port->mad_agent, + ib_cancel_mad(cm_id_priv->av.port->mad_agent, (unsigned long) cm_id_priv->msg); cm_format_sidr_rep_event(work); cm_process_work(cm_id_priv, work); @@ -2356,7 +2428,7 @@ spin_unlock_irqrestore(&cm_id_priv->lock, flags); if (msg->retry++ < cm_id_priv->max_cm_retries) { - ret = ib_post_send_mad(cm_id_priv->port->mad_agent, + ret = ib_post_send_mad(cm_id_priv->av.port->mad_agent, &msg->send_wr, &bad_send_wr); if (ret) cm_process_send_error(msg, IB_WC_GENERAL_ERR); @@ -2464,6 +2536,142 @@ queue_work(cm.wq, &work->work); } +static int cm_init_qp_init_attr(struct cm_id_private *cm_id_priv, + struct ib_qp_attr *qp_attr, + int *qp_attr_mask) +{ + unsigned long flags; + int ret; + + spin_lock_irqsave(&cm_id_priv->lock, flags); + switch (cm_id_priv->id.state) { + case IB_CM_REQ_SENT: + case IB_CM_MRA_REQ_RCVD: + case IB_CM_REQ_RCVD: + case IB_CM_MRA_REQ_SENT: + case IB_CM_REP_RCVD: + case IB_CM_MRA_REP_SENT: + case IB_CM_REP_SENT: + case IB_CM_MRA_REP_RCVD: + case IB_CM_ESTABLISHED: + *qp_attr_mask = IB_QP_STATE | IB_QP_ACCESS_FLAGS | + IB_QP_PKEY_INDEX | IB_QP_PORT; + qp_attr->qp_access_flags = IB_ACCESS_LOCAL_WRITE; + if (cm_id_priv->responder_resources) + qp_attr->qp_access_flags |= IB_ACCESS_REMOTE_WRITE | + IB_ACCESS_REMOTE_READ; + qp_attr->pkey_index = cm_id_priv->av.pkey_index; + qp_attr->port_num = cm_id_priv->av.port->port_num; + ret = 0; + break; + default: + ret = -EINVAL; + break; + } + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + return ret; +} + +static int cm_init_qp_rtr_attr(struct cm_id_private *cm_id_priv, + struct ib_qp_attr *qp_attr, + int *qp_attr_mask) +{ + unsigned long flags; + int ret; + + spin_lock_irqsave(&cm_id_priv->lock, flags); + switch (cm_id_priv->id.state) { + case IB_CM_REQ_RCVD: + case IB_CM_MRA_REQ_SENT: + case IB_CM_REP_RCVD: + case IB_CM_MRA_REP_SENT: + case IB_CM_REP_SENT: + case IB_CM_MRA_REP_RCVD: + case IB_CM_ESTABLISHED: + *qp_attr_mask = IB_QP_STATE | IB_QP_AV | IB_QP_DEST_QPN | + IB_QP_RQ_PSN | IB_QP_MAX_QP_RD_ATOMIC | + IB_QP_MIN_RNR_TIMER; + qp_attr->ah_attr = cm_id_priv->av.ah_attr; + qp_attr->dest_qp_num = be32_to_cpu(cm_id_priv->remote_qpn); + qp_attr->rq_psn = be32_to_cpu(cm_id_priv->recv_psn); + qp_attr->max_rd_atomic = cm_id_priv->initiator_depth; + qp_attr->min_rnr_timer = 0; + if (cm_id_priv->alt_av.ah_attr.dlid) { + *qp_attr_mask |= IB_QP_ALT_PATH; + qp_attr->alt_ah_attr = cm_id_priv->alt_av.ah_attr; + } + ret = 0; + break; + default: + ret = -EINVAL; + break; + } + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + return ret; +} + +static int cm_init_qp_rts_attr(struct cm_id_private *cm_id_priv, + struct ib_qp_attr *qp_attr, + int *qp_attr_mask) +{ + unsigned long flags; + int ret; + + spin_lock_irqsave(&cm_id_priv->lock, flags); + switch (cm_id_priv->id.state) { + case IB_CM_REP_RCVD: + case IB_CM_MRA_REP_SENT: + case IB_CM_REP_SENT: + case IB_CM_MRA_REP_RCVD: + case IB_CM_ESTABLISHED: + *qp_attr_mask = IB_QP_STATE | IB_QP_TIMEOUT | IB_QP_RETRY_CNT | + IB_QP_RNR_RETRY | IB_QP_SQ_PSN | + IB_QP_MAX_DEST_RD_ATOMIC; + qp_attr->timeout = cm_id_priv->local_ack_timeout; + qp_attr->retry_cnt = cm_id_priv->retry_count; + qp_attr->rnr_retry = cm_id_priv->rnr_retry_count; + qp_attr->sq_psn = cm_id_priv->send_psn; + qp_attr->max_dest_rd_atomic = cm_id_priv->responder_resources; + if (cm_id_priv->alt_av.ah_attr.dlid) { + *qp_attr_mask |= IB_QP_PATH_MIG_STATE; + qp_attr->path_mig_state = IB_MIG_ARMED; + } + ret = 0; + break; + default: + ret = -EINVAL; + break; + } + spin_unlock_irqrestore(&cm_id_priv->lock, flags); + return ret; +} + +int ib_cm_init_qp_attr(struct ib_cm_id *cm_id, + struct ib_qp_attr *qp_attr, + int *qp_attr_mask) +{ + struct cm_id_private *cm_id_priv; + int ret; + + cm_id_priv = container_of(cm_id, struct cm_id_private, id); + switch (qp_attr->qp_state) { + case IB_QPS_INIT: + ret = cm_init_qp_init_attr(cm_id_priv, qp_attr, qp_attr_mask); + break; + case IB_QPS_RTR: + ret = cm_init_qp_rtr_attr(cm_id_priv, qp_attr, qp_attr_mask); + break; + case IB_QPS_RTS: + ret = cm_init_qp_rts_attr(cm_id_priv, qp_attr, qp_attr_mask); + break; + default: + ret = -EINVAL; + break; + } + return ret; +} +EXPORT_SYMBOL(ib_cm_init_qp_attr); + static u64 cm_get_ca_guid(struct ib_device *device) { struct ib_device_attr *device_attr; From mst at mellanox.co.il Wed Jan 26 05:13:24 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 15:13:24 +0200 Subject: [openib-general] cqe lookup speedup Message-ID: <20050126131324.GF3791@mellanox.co.il> Hi! The following patch should get us a speedup in cq polling, along the lines of what I did for eq polling. It works fine, but I dont have the fast hardware to check the actual effect of it, though. Signed-off-by: Michael S. Tsirkin Index: hw/mthca/mthca_cq.c =================================================================== --- hw/mthca/mthca_cq.c (revision 1653) +++ hw/mthca/mthca_cq.c (working copy) @@ -147,20 +147,21 @@ + (entry * MTHCA_CQ_ENTRY_SIZE) % PAGE_SIZE; } -static inline int cqe_sw(struct mthca_cq *cq, int i) +static inline struct mthca_cqe *cqe_sw(struct mthca_cq *cq, int i) { - return !(MTHCA_CQ_ENTRY_OWNER_HW & - get_cqe(cq, i)->owner); + struct mthca_cqe *cqe; + cqe = get_cqe(cq, i); + return (MTHCA_CQ_ENTRY_OWNER_HW & cqe->owner) ? NULL : cqe; } -static inline int next_cqe_sw(struct mthca_cq *cq) +static inline struct mthca_cqe * next_cqe_sw(struct mthca_cq *cq) { return cqe_sw(cq, cq->cons_index); } -static inline void set_cqe_hw(struct mthca_cq *cq, int entry) +static inline void set_cqe_hw(struct mthca_cqe *cqe) { - get_cqe(cq, entry)->owner = MTHCA_CQ_ENTRY_OWNER_HW; + cqe->owner = MTHCA_CQ_ENTRY_OWNER_HW; } static inline void inc_cons_index(struct mthca_dev *dev, struct mthca_cq *cq, @@ -388,7 +389,8 @@ int free_cqe = 1; int err = 0; - if (!next_cqe_sw(cq)) + cqe = next_cqe_sw(cq); + if (!cqe) return -EAGAIN; /* @@ -397,8 +399,6 @@ */ rmb(); - cqe = get_cqe(cq, cq->cons_index); - if (0) { mthca_dbg(dev, "%x/%d: CQE -> QPN %06x, WQE @ %08x\n", cq->cqn, cq->cons_index, be32_to_cpu(cqe->my_qpn), @@ -511,8 +508,8 @@ entry->status = IB_WC_SUCCESS; out: - if (free_cqe) { - set_cqe_hw(cq, cq->cons_index); + if (likely(free_cqe)) { + set_cqe_hw(cqe); ++(*freed); cq->cons_index = (cq->cons_index + 1) & cq->ibcq.cqe; } @@ -657,7 +652,7 @@ } for (i = 0; i < nent; ++i) - set_cqe_hw(cq, i); + set_cqe_hw(get_cqe(cq, i)); cq->cqn = mthca_alloc(&dev->cq_table.alloc); if (cq->cqn == -1) @@ -775,7 +770,7 @@ int j; printk(KERN_ERR "context for CQN %x (cons index %x, next sw %d)\n", - cq->cqn, cq->cons_index, next_cqe_sw(cq)); + cq->cqn, cq->cons_index, next_cqe_sw(cq)?1:0); for (j = 0; j < 16; ++j) printk(KERN_ERR "[%2x] %08x\n", j * 4, be32_to_cpu(ctx[j])); } -- I dont speak for Mellanox. From mst at mellanox.co.il Wed Jan 26 05:14:16 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 15:14:16 +0200 Subject: [openib-general] possible race in mthca_alloc_sqp Message-ID: <20050126131416.GG3791@mellanox.co.il> Hi! Since mthca_alloc_sqp does not do mthca_array_set as the last thing, this means that for a while there is an incomplete entry in the array. So anyone looking it up will get an invalid sqp. Is this a bug? Looks like one. I dont see an easy solution, yet. MST From mst at mellanox.co.il Wed Jan 26 05:24:16 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 15:24:16 +0200 Subject: [openib-general] [PATCH] reduce qp locking on cq poll Message-ID: <20050126132416.GH3791@mellanox.co.il> Locking during the poll cq operation can be reduced, by locking the cq while qp is being removed from the qp array. This also avoids an extra atomic operation for reference counting. TODO implies the same can be done for cqs, but I dont see how, since we dont take a lock on eq, so this I have left in the TODO. This works but I dont have the fast hardware to check the speed effect. Signed-off-by: Michael S. Tsirkin Index: hw/mthca/mthca_cq.c =================================================================== --- hw/mthca/mthca_cq.c (revision 1653) +++ hw/mthca/mthca_cq.c (working copy) @@ -426,14 +426,11 @@ wake_up(&(*cur_qp)->wait); } - spin_lock(&dev->qp_table.lock); + //We do not have to take the qp table lock here, because + //cq was locked while qp was removed from the array *cur_qp = mthca_array_get(&dev->qp_table.qp, be32_to_cpu(cqe->my_qpn) & (dev->limits.num_qps - 1)); - if (*cur_qp) - atomic_inc(&(*cur_qp)->refcount); - spin_unlock(&dev->qp_table.lock); - if (!*cur_qp) { mthca_warn(dev, "CQ entry for unknown QP %06x\n", be32_to_cpu(cqe->my_qpn) & 0xffffff); @@ -547,8 +544,6 @@ if (qp) { spin_unlock(&qp->lock); - if (atomic_dec_and_test(&qp->refcount)) - wake_up(&qp->wait); } @@ -775,7 +770,7 @@ int j; printk(KERN_ERR "context for CQN %x (cons index %x, next sw %d)\n", - cq->cqn, cq->cons_index, next_cqe_sw(cq)); + cq->cqn, cq->cons_index, next_cqe_sw(cq)?1:0); for (j = 0; j < 16; ++j) printk(KERN_ERR "[%2x] %08x\n", j * 4, be32_to_cpu(ctx[j])); } Index: hw/mthca/mthca_qp.c =================================================================== --- hw/mthca/mthca_qp.c (revision 1653) +++ hw/mthca/mthca_qp.c (working copy) @@ -1083,10 +1083,20 @@ return 0; err_out_free: - spin_lock_irq(&dev->qp_table.lock); + //Lock cq here, so that cq polling code + //can do qp lookup without taking a lock + spin_lock_irq(&send_cq->lock); + if (send_cq != recv_cq) + spin_lock(&recv_cq->lock); + + spin_lock(&dev->qp_table.lock); mthca_array_clear(&dev->qp_table.qp, mqpn); - spin_unlock_irq(&dev->qp_table.lock); + spin_unlock(&dev->qp_table.lock); + if (send_cq != recv_cq) + spin_unlock(&recv_cq->lock); + spin_unlock_irq(&send_cq->lock); + err_out: dma_free_coherent(&dev->pdev->dev, sqp->header_buf_size, sqp->header_buf, sqp->header_dma); @@ -1100,12 +1110,27 @@ u8 status; int size; int i; + struct mthca_cq *send_cq; + struct mthca_cq *recv_cq; - spin_lock_irq(&dev->qp_table.lock); + send_cq = to_mcq(qp->ibqp.send_cq); + recv_cq = to_mcq(qp->ibqp.recv_cq); + + //Lock cq here, so that cq polling code + //can do qp lookup without taking a lock + spin_lock_irq(&send_cq->lock); + if (send_cq != recv_cq) + spin_lock(&recv_cq->lock); + + spin_lock(&dev->qp_table.lock); mthca_array_clear(&dev->qp_table.qp, qp->qpn & (dev->limits.num_qps - 1)); - spin_unlock_irq(&dev->qp_table.lock); + spin_unlock(&dev->qp_table.lock); + if (send_cq != recv_cq) + spin_unlock(&recv_cq->lock); + spin_unlock_irq(&send_cq->lock); + atomic_dec(&qp->refcount); wait_event(qp->wait, !atomic_read(&qp->refcount)); Index: hw/mthca/TODO =================================================================== --- hw/mthca/TODO (revision 1653) +++ hw/mthca/TODO (working copy) @@ -12,10 +12,9 @@ Small projects (extensions to existing c Miscellaneous verbs: At least query AH, query QP and resize CQ are not implemented. Reduce locking for CQ poll: The reference counting used to prevent - CQs and QPs from being destroyed while events are being - dispatched could be eliminated by locking EQs (and, for QPs, - the associated CQs) during destroy operations. This saves an - atomic access in the CQ poll fast path. + CQs from being destroyed while events are being + dispatched could be eliminated by locking EQs + during destroy operations. Reduce doorbell locking on 32-bit architectures: By using a a doorbell page dedicated to each EQ, no lock is required in the EQ poll path. From mst at mellanox.co.il Wed Jan 26 05:54:51 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 15:54:51 +0200 Subject: [openib-general] [PATCH] (fixed) reduce qp locking on cq poll Message-ID: <20050126135451.GI3791@mellanox.co.il> Sorry, the previos patch had an extra chunk from my other work. Resending. ------------------- Locking during the poll cq operation can be reduced, by locking the cq while qp is being removed from the qp array. This also avoids an extra atomic operation for reference counting. TODO implies the same can be done for cqs, but I dont see how, since we dont take a lock on eq, so this I have left in the TODO. This works but I dont have the fast hardware to check the speed effect. Signed-off-by: Michael S. Tsirkin Index: hw/mthca/mthca_cq.c =================================================================== --- hw/mthca/mthca_cq.c (revision 1653) +++ hw/mthca/mthca_cq.c (working copy) @@ -426,14 +426,11 @@ wake_up(&(*cur_qp)->wait); } - spin_lock(&dev->qp_table.lock); + //We do not have to take the qp table lock here, because + //cq was locked while qp was removed from the array *cur_qp = mthca_array_get(&dev->qp_table.qp, be32_to_cpu(cqe->my_qpn) & (dev->limits.num_qps - 1)); - if (*cur_qp) - atomic_inc(&(*cur_qp)->refcount); - spin_unlock(&dev->qp_table.lock); - if (!*cur_qp) { mthca_warn(dev, "CQ entry for unknown QP %06x\n", be32_to_cpu(cqe->my_qpn) & 0xffffff); @@ -547,8 +544,6 @@ if (qp) { spin_unlock(&qp->lock); - if (atomic_dec_and_test(&qp->refcount)) - wake_up(&qp->wait); } Index: hw/mthca/mthca_qp.c =================================================================== --- hw/mthca/mthca_qp.c (revision 1653) +++ hw/mthca/mthca_qp.c (working copy) @@ -1083,10 +1083,20 @@ return 0; err_out_free: - spin_lock_irq(&dev->qp_table.lock); + //Lock cq here, so that cq polling code + //can do qp lookup without taking a lock + spin_lock_irq(&send_cq->lock); + if (send_cq != recv_cq) + spin_lock(&recv_cq->lock); + + spin_lock(&dev->qp_table.lock); mthca_array_clear(&dev->qp_table.qp, mqpn); - spin_unlock_irq(&dev->qp_table.lock); + spin_unlock(&dev->qp_table.lock); + if (send_cq != recv_cq) + spin_unlock(&recv_cq->lock); + spin_unlock_irq(&send_cq->lock); + err_out: dma_free_coherent(&dev->pdev->dev, sqp->header_buf_size, sqp->header_buf, sqp->header_dma); @@ -1100,12 +1110,27 @@ u8 status; int size; int i; + struct mthca_cq *send_cq; + struct mthca_cq *recv_cq; - spin_lock_irq(&dev->qp_table.lock); + send_cq = to_mcq(qp->ibqp.send_cq); + recv_cq = to_mcq(qp->ibqp.recv_cq); + + //Lock cq here, so that cq polling code + //can do qp lookup without taking a lock + spin_lock_irq(&send_cq->lock); + if (send_cq != recv_cq) + spin_lock(&recv_cq->lock); + + spin_lock(&dev->qp_table.lock); mthca_array_clear(&dev->qp_table.qp, qp->qpn & (dev->limits.num_qps - 1)); - spin_unlock_irq(&dev->qp_table.lock); + spin_unlock(&dev->qp_table.lock); + if (send_cq != recv_cq) + spin_unlock(&recv_cq->lock); + spin_unlock_irq(&send_cq->lock); + atomic_dec(&qp->refcount); wait_event(qp->wait, !atomic_read(&qp->refcount)); Index: hw/mthca/TODO =================================================================== --- hw/mthca/TODO (revision 1653) +++ hw/mthca/TODO (working copy) @@ -12,10 +12,9 @@ Small projects (extensions to existing c Miscellaneous verbs: At least query AH, query QP and resize CQ are not implemented. Reduce locking for CQ poll: The reference counting used to prevent - CQs and QPs from being destroyed while events are being - dispatched could be eliminated by locking EQs (and, for QPs, - the associated CQs) during destroy operations. This saves an - atomic access in the CQ poll fast path. + CQs from being destroyed while events are being + dispatched could be eliminated by locking EQs + during destroy operations. Reduce doorbell locking on 32-bit architectures: By using a a doorbell page dedicated to each EQ, no lock is required in the EQ poll path. -- I dont speak for Mellanox. From mst at mellanox.co.il Wed Jan 26 06:52:18 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 16:52:18 +0200 Subject: [openib-general] [PATCH] (fixed) cqe lookup speedup In-Reply-To: <20050126131324.GF3791@mellanox.co.il> References: <20050126131324.GF3791@mellanox.co.il> Message-ID: <20050126145218.GA4878@mellanox.co.il> Sorry, here's a fixed patch (the previous one introduced a compiler warning). ----- The following patch should get us a speedup in cq polling, along the lines of what I did for eq polling. It works fine, but I dont have the fast hardware to check the actual effect of it, though. Signed-off-by: Michael S. Tsirkin Index: hw/mthca/mthca_cq.c =================================================================== --- hw/mthca/mthca_cq.c (revision 1653) +++ hw/mthca/mthca_cq.c (working copy) @@ -147,20 +147,21 @@ static inline struct mthca_cqe *get_cqe( + (entry * MTHCA_CQ_ENTRY_SIZE) % PAGE_SIZE; } -static inline int cqe_sw(struct mthca_cq *cq, int i) +static inline struct mthca_cqe *cqe_sw(struct mthca_cq *cq, int i) { - return !(MTHCA_CQ_ENTRY_OWNER_HW & - get_cqe(cq, i)->owner); + struct mthca_cqe *cqe; + cqe = get_cqe(cq, i); + return (MTHCA_CQ_ENTRY_OWNER_HW & cqe->owner) ? NULL : cqe; } -static inline int next_cqe_sw(struct mthca_cq *cq) +static inline struct mthca_cqe * next_cqe_sw(struct mthca_cq *cq) { return cqe_sw(cq, cq->cons_index); } -static inline void set_cqe_hw(struct mthca_cq *cq, int entry) +static inline void set_cqe_hw(struct mthca_cqe *cqe) { - get_cqe(cq, entry)->owner = MTHCA_CQ_ENTRY_OWNER_HW; + cqe->owner = MTHCA_CQ_ENTRY_OWNER_HW; } static inline void inc_cons_index(struct mthca_dev *dev, struct mthca_cq *cq, @@ -388,7 +398,8 @@ static inline int mthca_poll_one(struct int free_cqe = 1; int err = 0; - if (!next_cqe_sw(cq)) + cqe = next_cqe_sw(cq); + if (!cqe) return -EAGAIN; /* @@ -397,8 +408,6 @@ static inline int mthca_poll_one(struct */ rmb(); - cqe = get_cqe(cq, cq->cons_index); - if (0) { mthca_dbg(dev, "%x/%d: CQE -> QPN %06x, WQE @ %08x\n", cq->cqn, cq->cons_index, be32_to_cpu(cqe->my_qpn), @@ -511,8 +520,8 @@ static inline int mthca_poll_one(struct entry->status = IB_WC_SUCCESS; out: - if (free_cqe) { - set_cqe_hw(cq, cq->cons_index); + if (likely(free_cqe)) { + set_cqe_hw(cqe); ++(*freed); cq->cons_index = (cq->cons_index + 1) & cq->ibcq.cqe; } @@ -657,7 +666,7 @@ int mthca_init_cq(struct mthca_dev *dev, } for (i = 0; i < nent; ++i) - set_cqe_hw(cq, i); + set_cqe_hw(get_cqe(cq, i)); cq->cqn = mthca_alloc(&dev->cq_table.alloc); if (cq->cqn == -1) @@ -775,7 +784,7 @@ void mthca_free_cq(struct mthca_dev *dev int j; printk(KERN_ERR "context for CQN %x (cons index %x, next sw %d)\n", - cq->cqn, cq->cons_index, next_cqe_sw(cq)); + cq->cqn, cq->cons_index, next_cqe_sw(cq)?1:0); for (j = 0; j < 16; ++j) printk(KERN_ERR "[%2x] %08x\n", j * 4, be32_to_cpu(ctx[j])); } -- I dont speak for Mellanox From mst at mellanox.co.il Wed Jan 26 07:02:48 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 17:02:48 +0200 Subject: [openib-general] pls correct openib_faq.txt (was Re: patches from subversion) In-Reply-To: <1106260417.18269.60.camel@duffman> References: <1106260417.18269.60.camel@duffman> Message-ID: <20050126150248.GB4878@mellanox.co.il> Quoting r. Tom Duffy : > > | (or modify ~/.subversion/config: diff-cmd = ~/bin/mydiff) > > This didn't work for me. I needed to spell out the whole path to > "mydiff". For some reason, I guess "~" was not be expanded properly. > > Also, you have to put this line under the [helpers] section, which you > may need to create if it is not already in your .subversion/config. > It just bit me on a new machine I was configuring. Please put the following in FAQ: It is preferred that patches are generated with the diff -up option. Here is a sample command line: svn diff --diff-cmd "/usr/bin/diff" -x -up FILENAME or using a "mydiff" wrapper: svn diff --diff-cmd $HOME/bin/mydiff or modify ~/.subversion/config by adding the following lines: ---------------------- [helpers] diff-cmd = //mydiff ---------------------- where should be replaced by the full path to $HOME/bin/mydiff, and where "$HOME/bin/mydiff" contains: #!/usr/bin/perl exec ("diff", "-up", at ARGV); (Please note an empty line is required at the end of the helpers section). Thanks, MST -- I dont speak for Mellanox From mst at mellanox.co.il Wed Jan 26 07:50:40 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 17:50:40 +0200 Subject: [openib-general] [PATCH] rcu for event speedup Message-ID: <20050126155040.GA5108@mellanox.co.il> Hi! The following patch adds an option to avoid taking the cq table lock on data path, by using RCU. When enabled, this gets a nice speedup (about 4%) in IP over IB on my hardware. But, if you select this option, closing cqs will likely get much slower. For this reason I decided we need this as an option, at least until we are sure its not a problem for all ulps. Someone on the list said it might be useful to be able to get code that does not use RCU at all, looking at the patch you will see this is trivially easy too. Roland, you mentioned you will only consider RCU if speedup is significant. Its up to you now, please decide whether this is significant enough. Signed-off-by: Michael S. Tsirkin Index: hw/mthca/Kconfig =================================================================== --- hw/mthca/Kconfig (revision 1653) +++ hw/mthca/Kconfig (working copy) @@ -6,6 +6,15 @@ config INFINIBAND_MTHCA channel adapters (HCAs), including the MT23108 PCI-X HCA ("Tavor") and the MT25208 PCI Express HCA ("Arbel"). +config INFINIBAND_MTHCA_CQ_RCU + bool "Use RCU for CQ table protection" + depends on INFINIBAND_MTHCA + default y + ---help--- + This option causes the mthca driver to use RCU for + protecting CQ tables. + Using CQs will be faster but destroying them will be slower. + config INFINIBAND_MTHCA_DEBUG bool "Verbose debugging output" depends on INFINIBAND_MTHCA @@ -180,12 +181,17 @@ void mthca_cq_event(struct mthca_dev *de { struct mthca_cq *cq; +#ifdef CONFIG_INFINIBAND_MTHCA_CQ_RCU + rcu_read_lock(); + cq = mthca_array_get(&dev->cq_table.cq, cqn & (dev->limits.num_cqs - 1)); + rcu_dereference(cq); +#else spin_lock(&dev->cq_table.lock); cq = mthca_array_get(&dev->cq_table.cq, cqn & (dev->limits.num_cqs - 1)); if (cq) atomic_inc(&cq->refcount); spin_unlock(&dev->cq_table.lock); - +#endif if (!cq) { mthca_warn(dev, "Completion event for bogus CQ %08x\n", cqn); return; @@ -193,8 +199,12 @@ void mthca_cq_event(struct mthca_dev *de cq->ibcq.comp_handler(&cq->ibcq, cq->ibcq.cq_context); +#ifdef CONFIG_INFINIBAND_MTHCA_CQ_RCU + rcu_read_unlock(); +#else if (atomic_dec_and_test(&cq->refcount)) wake_up(&cq->wait); +#endif } void mthca_cq_clean(struct mthca_dev *dev, u32 cqn, u32 qpn) @@ -785,6 +794,10 @@ void mthca_free_cq(struct mthca_dev *dev cq->cqn & (dev->limits.num_cqs - 1)); spin_unlock_irq(&dev->cq_table.lock); +#ifdef CONFIG_INFINIBAND_MTHCA_CQ_RCU + synchronize_kernel(); +#endif + atomic_dec(&cq->refcount); wait_event(cq->wait, !atomic_read(&cq->refcount)); -- I dont speak for Mellanox From roland at topspin.com Wed Jan 26 09:02:58 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 26 Jan 2005 09:02:58 -0800 Subject: [openib-general] possible race in mthca_alloc_sqp In-Reply-To: <20050126131416.GG3791@mellanox.co.il> (Michael S. Tsirkin's message of "Wed, 26 Jan 2005 15:14:16 +0200") References: <20050126131416.GG3791@mellanox.co.il> Message-ID: <527jm02ke5.fsf@topspin.com> Michael> Hi! Since mthca_alloc_sqp does not do mthca_array_set as Michael> the last thing, this means that for a while there is an Michael> incomplete entry in the array. So anyone looking it up Michael> will get an invalid sqp. Is this a bug? Looks like one. I don't think so. The only things that could cause a lookup in the QP table are async and completion events, and neither of these can occur until the QP is fully set up. - R. From roland at topspin.com Wed Jan 26 09:05:25 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 26 Jan 2005 09:05:25 -0800 Subject: [openib-general] [PATCH] (fixed) reduce qp locking on cq poll In-Reply-To: <20050126135451.GI3791@mellanox.co.il> (Michael S. Tsirkin's message of "Wed, 26 Jan 2005 15:54:51 +0200") References: <20050126135451.GI3791@mellanox.co.il> Message-ID: <523bwo2ka2.fsf@topspin.com> Michael> Locking during the poll cq operation can be reduced, by Michael> locking the cq while qp is being removed from the qp Michael> array. This also avoids an extra atomic operation for Michael> reference counting. Look reasonable. Can you resend with /* */ comments instead of //? Michael> TODO implies the same can be done for cqs, but I dont see Michael> how, since we dont take a lock on eq, so this I have left Michael> in the TODO. This works but I dont have the fast Michael> hardware to check the speed effect. We would have to add a lock to the EQ to do the same for CQs. However this would save both the CQ table lock and the atomic reference counting of the CQ so it should be a net win. I'm a little worried that you see no improvement from this patch -- it doesn't seem like fast hardware should be required. - R. From mst at mellanox.co.il Wed Jan 26 09:12:46 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 19:12:46 +0200 Subject: [openib-general] Re: possible race in mthca_alloc_sqp In-Reply-To: <527jm02ke5.fsf@topspin.com> References: <20050126131416.GG3791@mellanox.co.il> <527jm02ke5.fsf@topspin.com> Message-ID: <20050126171246.GB10743@mellanox.co.il> Quoting r. Roland Dreier : > Subject: Re: possible race in mthca_alloc_sqp > > Michael> Hi! Since mthca_alloc_sqp does not do mthca_array_set as > Michael> the last thing, this means that for a while there is an > Michael> incomplete entry in the array. So anyone looking it up > Michael> will get an invalid sqp. Is this a bug? Looks like one. I just has an idea that we may be able to fix that by using set with a NULL pointer, then get will return a NULL. A bit complicated ... what do you think? > I don't think so. The only things that could cause a lookup in the QP > table are async and completion events, and neither of these can occur > until the QP is fully set up. > > - R. I'd like to understand why not. Consider something like user access, can one thread call mthca_alloc_sqp, while another posts a wqe? -- I dont speak for Mellanox From vonwyl at EIG.UNIGE.CH Wed Jan 26 09:14:53 2005 From: vonwyl at EIG.UNIGE.CH (Marc von Wyl) Date: Wed, 26 Jan 2005 18:14:53 +0100 Subject: [openib-general] openIB + RTAI, kernel freezing... In-Reply-To: <1106577743.4648.2238.camel@localhost.localdomain> References: <506C3D7B14CDD411A52C00025558DED6064BED71@mtlex01.yok.mtl.com> <1105381618.8427.1.camel@duffman> <41E3E179.7000407@eig.unige.ch> <1105457796.11083.2.camel@duffman> <41EE7906.5080703@eig.unige.ch> <1106154877.7680.3.camel@duffman> <41F11D5F.9010307@eig.unige.ch> <1106324023.27916.38.camel@duffman> <1106324781.4648.1616.camel@localhost.localdomain> <41F508FA.7040602@eig.unige.ch> <1106577743.4648.2238.camel@localhost.localdomain> Message-ID: <41F7D00D.3080607@eig.unige.ch> Hal Rosenstock a écrit : >On Mon, 2005-01-24 at 09:40, Marc von Wyl wrote: > > >>I tried it too. I installed opensm (I still can't make it work but it is >>a matter of time...). >> >> > >This should work. Can you send any details about what didn't ? > > I mounted the ib_core, ib_mad, ib_umad and ib_mthca modules. After that I tried a /usr/local/ib/bin/opensm -V -d5 and get this : ------------------------------------------------- OpenSM Rev:openib-1.0.0 Command Line Arguments: Big V selected d level = 0x5 Log File: /var/log/osm.log ------------------------------------------------- warn: [2027] umad_init: warn: [2027] umad_get_cas_names: max 32 warn: [2027] umad_get_cas_names: return 1 cas warn: [2027] umad_get_ca_portguids: ca name mthca0 max port guids warn: [2027] umad_get_ca: ca_name mthca0 Error from osm_vendor_get_all_port_attr (ffffffff) Error: port guid 0x0 not found warn: [2027] umad_done: And the file /var/log/osm.log is attached to this mail. >The OpenIB gen2 equivalent of VAPI is libibverbs and this work is >currently proceeding on roland-uverbs branch. This should be available >for general consumption in the not too distant future. What is your >timeframe ? > > Good new. About my timeframe, well I can only hope that there'll be an userspace before the end of february (but I don't want to bother you about this). >Also, kernel CM is actively being debugged now. User CM will follow this >work. > > > That's a good new too. -------------- next part -------------- Jan 26 16:47:49 [B7E67880] -> OpenSM Rev:openib-1.0.0 Jan 26 16:47:49 [B7E67880] -> osm_opensm_init: Forcing single threaded dispatcher. Jan 26 16:47:49 [B7E67880] -> osm_report_notice: Reporting Generic Notice type:3 num:66 from LID:0x0000 GID:0xfe80000000000000,0x0000000000000000 Jan 26 16:47:49 [B7E67880] -> osm_report_notice: Reporting Generic Notice type:3 num:66 from LID:0x0000 GID:0xfe80000000000000,0x0000000000000000 Jan 26 16:47:49 [B7E67880] -> osm_vendor_get_all_port_attr: Unable to get CA 0x8096f0cort guids (Unknown error 4294967295). Jan 26 16:47:53 [B7E67880] -> OpenSM Rev:openib-1.0.0 Jan 26 16:47:53 [B7E67880] -> osm_opensm_init: Forcing single threaded dispatcher. Jan 26 16:47:53 [B7E67880] -> osm_report_notice: Reporting Generic Notice type:3 num:66 from LID:0x0000 GID:0xfe80000000000000,0x0000000000000000 Jan 26 16:47:53 [B7E67880] -> osm_report_notice: Reporting Generic Notice type:3 num:66 from LID:0x0000 GID:0xfe80000000000000,0x0000000000000000 Jan 26 16:47:53 [B7E67880] -> osm_vendor_get_all_port_attr: Unable to get CA 0x8096f0cort guids (Unknown error 4294967295). Jan 26 16:47:57 [B7E67880] -> OpenSM Rev:openib-1.0.0 Jan 26 16:47:57 [B7E67880] -> osm_opensm_init: [ Jan 26 16:47:57 [B7E67880] -> osm_opensm_init: Forcing single threaded dispatcher. Jan 26 16:47:57 [B7E67880] -> osm_vendor_new: [ Jan 26 16:47:57 [B7E67880] -> osm_vendor_init: [ Jan 26 16:47:57 [B7E67880] -> osm_vendor_init: ] Jan 26 16:47:57 [B7E67880] -> osm_vendor_new: ] Jan 26 16:47:57 [B7E67880] -> osm_mad_pool_init: [ Jan 26 16:47:57 [B7E67880] -> osm_mad_pool_init: ] Jan 26 16:47:57 [B7E67880] -> osm_vl15_init: [ Jan 26 16:47:57 [B7E67880] -> osm_vl15_init: ] Jan 26 16:47:57 [B7E67880] -> osm_sm_init: [ Jan 26 16:47:57 [B7E67880] -> osm_sm_mad_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_sm_mad_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_req_init: [ Jan 26 16:47:57 [B7E67880] -> osm_req_init: ] Jan 26 16:47:57 [B7E67880] -> osm_req_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_req_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_resp_init: [ Jan 26 16:47:57 [B7E67880] -> osm_resp_init: ] Jan 26 16:47:57 [B7E67880] -> osm_ni_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_ni_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_ni_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_ni_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_pi_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_pi_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_pi_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_pi_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_si_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_si_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_si_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_si_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_nd_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_nd_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_nd_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_nd_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_lid_mgr_init: [ Jan 26 16:47:57 [B7E67880] -> osm_lid_mgr_init: ] Jan 26 16:47:57 [B7E67880] -> osm_ucast_mgr_init: [ Jan 26 16:47:57 [B7E67880] -> osm_ucast_mgr_init: ] Jan 26 16:47:57 [B7E67880] -> osm_link_mgr_init: [ Jan 26 16:47:57 [B7E67880] -> osm_link_mgr_init: ] Jan 26 16:47:57 [B7E67880] -> osm_state_mgr_init: [ Jan 26 16:47:57 [B7E67880] -> osm_state_mgr_init: ] Jan 26 16:47:57 [B7E67880] -> osm_state_mgr_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_state_mgr_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_drop_mgr_init: [ Jan 26 16:47:57 [B7E67880] -> osm_drop_mgr_init: ] Jan 26 16:47:57 [B7E67880] -> osm_lft_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_lft_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_lft_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_lft_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_mft_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_mft_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_mft_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_mft_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_sweep_fail_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_sweep_fail_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_sminfo_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_sminfo_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_sminfo_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_sminfo_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_trap_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> cl_event_wheel_init: [ Jan 26 16:47:57 [B7E67880] -> cl_event_wheel_init: ] Jan 26 16:47:57 [B7E67880] -> osm_trap_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_trap_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_trap_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_sm_state_mgr_init: [ Jan 26 16:47:57 [B7E67880] -> osm_sm_state_mgr_init: ] Jan 26 16:47:57 [B7E67880] -> osm_mcast_mgr_init: [ Jan 26 16:47:57 [B7E67880] -> osm_mcast_mgr_init: ] Jan 26 16:47:57 [B7E67880] -> osm_slvl_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_slvl_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_slvl_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_slvl_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_vla_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_vla_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_vla_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_vla_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_pkey_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_pkey_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_pkey_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_pkey_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_sm_init: ] Jan 26 16:47:57 [B7E67880] -> osm_sa_init: [ Jan 26 16:47:57 [B7E67880] -> osm_sa_resp_init: [ Jan 26 16:47:57 [B7E67880] -> osm_sa_resp_init: ] Jan 26 16:47:57 [B7E67880] -> osm_sa_mad_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_sa_mad_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_cpi_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_cpi_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_cpi_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_cpi_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_nr_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_nr_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_nr_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_nr_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_pir_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_pir_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_pir_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_pir_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_lr_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_lr_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_lr_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_lr_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_pr_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_pr_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_pr_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_pr_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_smir_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_smir_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_smir_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_smir_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_mcmr_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_mcmr_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_mcmr_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_mcmr_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_sr_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_sr_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_sr_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_sr_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_infr_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_infr_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_infr_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_infr_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_vlarb_rec_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_vlarb_rec_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_vlarb_rec_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_vlarb_rec_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_slvl_rec_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_slvl_rec_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_slvl_rec_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_slvl_rec_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_pkey_rec_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_pkey_rec_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_pkey_rec_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_pkey_rec_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_lftr_rcv_init: [ Jan 26 16:47:57 [B7E67880] -> osm_lftr_rcv_init: ] Jan 26 16:47:57 [B7E67880] -> osm_lftr_rcv_ctrl_init: [ Jan 26 16:47:57 [B7E67880] -> osm_lftr_rcv_ctrl_init: ] Jan 26 16:47:57 [B7E67880] -> osm_sa_init: ] Jan 26 16:47:57 [B7E67880] -> osm_opensm_create_mcgroups: [ Jan 26 16:47:57 [B7E67880] -> osm_sa_create_template_record_ipoib: [ Jan 26 16:47:57 [B7E67880] -> osm_mcmr_rcv_create_new_mgrp: [ Jan 26 16:47:57 [B7E67880] -> osm_mcmr_rcv_create_new_mgrp: Getting new mlid 0xc000. Jan 26 16:47:57 [B7E67880] -> __validate_requested_mgid: [ Jan 26 16:47:57 [B7E67880] -> __validate_requested_mgid: MGID Signed as 0x401B. Jan 26 16:47:57 [B7E67880] -> __validate_requested_mgid: Skipping MGID Validation for IPoIB Signed (0x401B) MGIDs. Jan 26 16:47:57 [B7E67880] -> __validate_requested_mgid: ] Jan 26 16:47:57 [B7E67880] -> osm_mgrp_send_create_notice: [ Jan 26 16:47:57 [B4E5EBB0] -> __osm_vl15_poller: [ Jan 26 16:47:57 [B465DBB0] -> __osm_sm_sweeper: [ Jan 26 16:47:57 [B465DBB0] -> __osm_sm_sweeper: Masking ^C Signals. Jan 26 16:47:57 [B7E67880] -> osm_report_notice: [ Jan 26 16:47:57 [B7E67880] -> osm_report_notice: Reporting Generic Notice type:3 num:66 from LID:0x0000 GID:0xfe80000000000000,0x0000000000000000 Jan 26 16:47:57 [B7E67880] -> osm_report_notice: ] Jan 26 16:47:57 [B7E67880] -> osm_mgrp_send_create_notice: ] Jan 26 16:47:57 [B7E67880] -> osm_mcmr_rcv_create_new_mgrp: ] Jan 26 16:47:57 [B7E67880] -> osm_mcmr_rcv_create_new_mgrp: [ Jan 26 16:47:57 [B7E67880] -> osm_mcmr_rcv_create_new_mgrp: Getting new mlid 0xc001. Jan 26 16:47:57 [B7E67880] -> __validate_requested_mgid: [ Jan 26 16:47:57 [B7E67880] -> __validate_requested_mgid: MGID Signed as 0x401B. Jan 26 16:47:57 [B7E67880] -> __validate_requested_mgid: Skipping MGID Validation for IPoIB Signed (0x401B) MGIDs. Jan 26 16:47:57 [B7E67880] -> __validate_requested_mgid: ] Jan 26 16:47:57 [B7E67880] -> osm_mgrp_send_create_notice: [ Jan 26 16:47:57 [B7E67880] -> osm_report_notice: [ Jan 26 16:47:57 [B7E67880] -> osm_report_notice: Reporting Generic Notice type:3 num:66 from LID:0x0000 GID:0xfe80000000000000,0x0000000000000000 Jan 26 16:47:57 [B7E67880] -> osm_report_notice: ] Jan 26 16:47:57 [B7E67880] -> osm_mgrp_send_create_notice: ] Jan 26 16:47:57 [B7E67880] -> osm_mcmr_rcv_create_new_mgrp: ] Jan 26 16:47:57 [B7E67880] -> osm_sa_create_template_record_ipoib: ] Jan 26 16:47:57 [B7E67880] -> osm_opensm_create_mcgroups: ] Jan 26 16:47:57 [B7E67880] -> updn_construct: [ Jan 26 16:47:57 [B7E67880] -> updn_construct: ] Jan 26 16:47:57 [B7E67880] -> updn_init: [ Jan 26 16:47:57 [B7E67880] -> updn_init: ] Jan 26 16:47:57 [B7E67880] -> osm_opensm_init: ] Jan 26 16:47:57 [B7E67880] -> osm_vendor_get_all_port_attr: [ Jan 26 16:47:57 [B7E67880] -> osm_vendor_get_all_port_attr: Unable to get CA 0x8096f0cort guids (Unknown error 4294967295). Jan 26 16:47:57 [B7E67880] -> osm_vendor_get_all_port_attr: ] Jan 26 16:47:57 [B7E67880] -> osm_vl15_shutdown: [ Jan 26 16:47:57 [B7E67880] -> osm_vl15_shutdown: ] Jan 26 16:47:57 [B7E67880] -> osm_sm_destroy: [ Jan 26 16:47:57 [B465DBB0] -> __osm_sm_sweeper: Off schedule sweep signalled. Jan 26 16:47:57 [B465DBB0] -> __osm_sm_sweeper: ] Jan 26 16:47:57 [B7E67880] -> osm_trap_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> cl_event_wheel_destroy: [ Jan 26 16:47:57 [B7E67880] -> cl_event_wheel_dump: [ Jan 26 16:47:57 [B7E67880] -> cl_event_wheel_dump: event_wheel ptr:0x8092a38 Jan 26 16:47:57 [B7E67880] -> cl_event_wheel_dump: ] Jan 26 16:47:57 [B7E67880] -> cl_event_wheel_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_trap_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_sminfo_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_sminfo_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_ni_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_ni_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_pi_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_pi_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_si_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_si_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_nd_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_nd_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_lid_mgr_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_lid_mgr_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_ucast_mgr_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_ucast_mgr_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_link_mgr_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_link_mgr_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_drop_mgr_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_drop_mgr_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_lft_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_lft_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_mft_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_mft_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_slvl_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_slvl_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_vla_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_vla_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_pkey_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_pkey_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_state_mgr_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_state_mgr_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_sm_state_mgr_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_sm_state_mgr_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_mcast_mgr_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_mcast_mgr_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_sm_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_sa_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_nr_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_nr_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_pir_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_pir_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_lr_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_lr_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_pr_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_pr_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_smir_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_smir_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_mcmr_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_mcmr_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_sr_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_sr_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_infr_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_infr_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_vlarb_rec_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_vlarb_rec_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_slvl_rec_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_slvl_rec_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_pkey_rec_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_pkey_rec_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_lftr_rcv_destroy: [ Jan 26 16:47:57 [B7E67880] -> osm_lftr_rcv_destroy: ] Jan 26 16:47:57 [B7E67880] -> osm_sa_destroy: ] From roland at topspin.com Wed Jan 26 09:17:01 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 26 Jan 2005 09:17:01 -0800 Subject: [openib-general] [PATCH] rcu for event speedup In-Reply-To: <20050126155040.GA5108@mellanox.co.il> (Michael S. Tsirkin's message of "Wed, 26 Jan 2005 17:50:40 +0200") References: <20050126155040.GA5108@mellanox.co.il> Message-ID: <52y8eg156a.fsf@topspin.com> Michael> Hi! The following patch adds an option to avoid taking Michael> the cq table lock on data path, by using RCU. When Michael> enabled, this gets a nice speedup (about 4%) in IP over Michael> IB on my hardware. I don't think this requires using RCU, since you're not really using anything from rcupdate.h except synchronize_kernel(), and even that is unnecessary. I think this could be made a lot simpler by just using explicit memory barriers and synchronize_irq(). That should also remove the problem with slowing down the free operation so that this doesn't need to be made conditional. (By the way, did you hand edit the patch? There's no filename header between the Kconfig chunk and the mthca_cq.c chunks, so the patch won't apply) - R. From mst at mellanox.co.il Wed Jan 26 09:19:02 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 19:19:02 +0200 Subject: [openib-general] Re: [PATCH] (fixed) reduce qp locking on cq poll In-Reply-To: <523bwo2ka2.fsf@topspin.com> References: <20050126135451.GI3791@mellanox.co.il> <523bwo2ka2.fsf@topspin.com> Message-ID: <20050126171902.GC10743@mellanox.co.il> Quoting r. Roland Dreier : > Subject: Re: [PATCH] (fixed) reduce qp locking on cq poll > > Michael> Locking during the poll cq operation can be reduced, by > Michael> locking the cq while qp is being removed from the qp > Michael> array. This also avoids an extra atomic operation for > Michael> reference counting. > > Look reasonable. Can you resend with /* */ comments instead of //? OK. > Michael> TODO implies the same can be done for cqs, but I dont see > Michael> how, since we dont take a lock on eq, so this I have left > Michael> in the TODO. This works but I dont have the fast > Michael> hardware to check the speed effect. > > We would have to add a lock to the EQ to do the same for CQs. However > this would save both the CQ table lock and the atomic reference > counting of the CQ so it should be a net win. My RCU option does it even better - without the EQ lock :). But I agree it would be nice for when RCU is disabled (e.g. for people that want closing cqs to be as fast as possible), or for if it does not go in. > I'm a little worried that you see no improvement from this patch -- it > doesn't seem like fast hardware should be required. > > - R. On my hardware I see wild variations of bandwidth so only big wins show conclusively. Can you test it? mst -- I dont speak for Mellanox From roland at topspin.com Wed Jan 26 09:19:42 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 26 Jan 2005 09:19:42 -0800 Subject: [openib-general] Re: possible race in mthca_alloc_sqp In-Reply-To: <20050126171246.GB10743@mellanox.co.il> (Michael S. Tsirkin's message of "Wed, 26 Jan 2005 19:12:46 +0200") References: <20050126131416.GG3791@mellanox.co.il> <527jm02ke5.fsf@topspin.com> <20050126171246.GB10743@mellanox.co.il> Message-ID: <52pszs151t.fsf@topspin.com> Michael> I'd like to understand why not. Consider something like Michael> user access, can one thread call mthca_alloc_sqp, while Michael> another posts a wqe? No. First of all, userspace cannot create special QPs. Second, how can you post a WQE before you know the QPN? - R. From halr at voltaire.com Wed Jan 26 09:33:04 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 26 Jan 2005 12:33:04 -0500 Subject: [openib-general] openIB + RTAI, kernel freezing... In-Reply-To: <41F7D00D.3080607@eig.unige.ch> References: <506C3D7B14CDD411A52C00025558DED6064BED71@mtlex01.yok.mtl.com> <1105381618.8427.1.camel@duffman> <41E3E179.7000407@eig.unige.ch> <1105457796.11083.2.camel@duffman> <41EE7906.5080703@eig.unige.ch> <1106154877.7680.3.camel@duffman> <41F11D5F.9010307@eig.unige.ch> <1106324023.27916.38.camel@duffman> <1106324781.4648.1616.camel@localhost.localdomain> <41F508FA.7040602@eig.unige.ch> <1106577743.4648.2238.camel@localhost.localdomain> <41F7D00D.3080607@eig.unige.ch> Message-ID: <1106760784.4648.7991.camel@localhost.localdomain> Hi Marc, On Wed, 2005-01-26 at 12:14, Marc von Wyl wrote: > I mounted the ib_core, ib_mad, ib_umad and ib_mthca modules. After that > I tried a /usr/local/ib/bin/opensm -V -d5 and get this : Is this invoked as root ? > ------------------------------------------------- > OpenSM Rev:openib-1.0.0 > Command Line Arguments: > Big V selected > d level = 0x5 > Log File: /var/log/osm.log > ------------------------------------------------- > warn: [2027] umad_init: > warn: [2027] umad_get_cas_names: max 32 > warn: [2027] umad_get_cas_names: return 1 cas > warn: [2027] umad_get_ca_portguids: ca name mthca0 max port guids > warn: [2027] umad_get_ca: ca_name mthca0 > > Error from osm_vendor_get_all_port_attr (ffffffff) > > Error: port guid 0x0 not found > warn: [2027] umad_done: > > And the file /var/log/osm.log is attached to this mail. I fixed an error message in the log. Can you pick this up and retry ? Thanks. -- Hal From mst at mellanox.co.il Wed Jan 26 09:46:32 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 19:46:32 +0200 Subject: [openib-general] [PATCH] remove locking for cq event (was: rcu for event speedup) In-Reply-To: <52y8eg156a.fsf@topspin.com> References: <20050126155040.GA5108@mellanox.co.il> <52y8eg156a.fsf@topspin.com> Message-ID: <20050126174632.GD10743@mellanox.co.il> Quoting r. Roland Dreier : > Subject: Re: [PATCH] rcu for event speedup > > Michael> Hi! The following patch adds an option to avoid taking > Michael> the cq table lock on data path, by using RCU. When > Michael> enabled, this gets a nice speedup (about 4%) in IP over > Michael> IB on my hardware. > > I don't think this requires using RCU, since you're not really using > anything from rcupdate.h except synchronize_kernel(), and even that is > unnecessary. I think this could be made a lot simpler by just using > explicit memory barriers and synchronize_irq(). That should also > remove the problem with slowing down the free operation so that this > doesn't need to be made conditional. I think you are right. Attached. > (By the way, did you hand edit the patch? There's no filename header > between the Kconfig chunk and the mthca_cq.c chunks, so the patch > won't apply) > > - R. Yes, sorry. Index: hw/mthca/mthca_cq.c =================================================================== --- hw/mthca/mthca_cq.c (revision 1653) +++ hw/mthca/mthca_cq.c (working copy) @@ -180,11 +180,8 @@ void mthca_cq_event(struct mthca_dev *de { struct mthca_cq *cq; - spin_lock(&dev->cq_table.lock); cq = mthca_array_get(&dev->cq_table.cq, cqn & (dev->limits.num_cqs - 1)); - if (cq) - atomic_inc(&cq->refcount); - spin_unlock(&dev->cq_table.lock); + read_barrier_depends(); if (!cq) { mthca_warn(dev, "Completion event for bogus CQ %08x\n", cqn); @@ -192,9 +189,6 @@ void mthca_cq_event(struct mthca_dev *de } cq->ibcq.comp_handler(&cq->ibcq, cq->ibcq.cq_context); - - if (atomic_dec_and_test(&cq->refcount)) - wake_up(&cq->wait); } void mthca_cq_clean(struct mthca_dev *dev, u32 cqn, u32 qpn) @@ -785,6 +779,15 @@ void mthca_free_cq(struct mthca_dev *dev cq->cqn & (dev->limits.num_cqs - 1)); spin_unlock_irq(&dev->cq_table.lock); + wmb(); + + if (dev->mthca_flags & MTHCA_FLAG_MSI_X) + synchronize_irq(dev->eq_table.eq[MTHCA_EQ_COMP].msi_x_vector); + else + synchronize_irq(dev->pdev->irq); + + + atomic_dec(&cq->refcount); wait_event(cq->wait, !atomic_read(&cq->refcount)); -- I dont speak for Mellanox From mst at mellanox.co.il Wed Jan 26 09:50:05 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 19:50:05 +0200 Subject: [openib-general] Re: [PATCH] (fixed) reduce qp locking on cq poll In-Reply-To: <523bwo2ka2.fsf@topspin.com> References: <20050126135451.GI3791@mellanox.co.il> <523bwo2ka2.fsf@topspin.com> Message-ID: <20050126175005.GE10743@mellanox.co.il> Quoting r. Roland Dreier : > Subject: Re: [PATCH] (fixed) reduce qp locking on cq poll > > Michael> Locking during the poll cq operation can be reduced, by > Michael> locking the cq while qp is being removed from the qp > Michael> array. This also avoids an extra atomic operation for > Michael> reference counting. > > Look reasonable. Can you resend with /* */ comments instead of //? No time today, sorry. I'll do it tomorrow, otherwise please let me know. -- I dont speak for Mellanox From mst at mellanox.co.il Wed Jan 26 09:54:22 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 19:54:22 +0200 Subject: [openib-general] Re: [PATCH] rcu for event speedup In-Reply-To: <52y8eg156a.fsf@topspin.com> References: <20050126155040.GA5108@mellanox.co.il> <52y8eg156a.fsf@topspin.com> Message-ID: <20050126175422.GF10743@mellanox.co.il> Quoting r. Roland Dreier : > you're not really using > anything from rcupdate.h except synchronize_kernel(), Usefulness of the patch aside (I already agreed synch interrupts is better here), if you dont do asynchronous tricks, this is all there *is* to rcu, in my humble opinion. -- I dont speak for Mellanox From roland at topspin.com Wed Jan 26 09:55:55 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 26 Jan 2005 09:55:55 -0800 Subject: [openib-general] Re: [PATCH] rcu for event speedup In-Reply-To: <20050126175422.GF10743@mellanox.co.il> (Michael S. Tsirkin's message of "Wed, 26 Jan 2005 19:54:22 +0200") References: <20050126155040.GA5108@mellanox.co.il> <52y8eg156a.fsf@topspin.com> <20050126175422.GF10743@mellanox.co.il> Message-ID: <52d5vs13dg.fsf@topspin.com> Roland> you're not really using anything from rcupdate.h except Roland> synchronize_kernel(), Michael> Usefulness of the patch aside (I already agreed synch Michael> interrupts is better here), if you dont do asynchronous Michael> tricks, this is all there *is* to rcu, in my humble Michael> opinion. I think the core of RCU is really the call_rcu() functionality -- most normal uses of RCU don't even have to see synchronize_kernel(). - R. From buytenh at wantstofly.org Wed Jan 26 05:25:12 2005 From: buytenh at wantstofly.org (Lennert Buytenhek) Date: Wed, 26 Jan 2005 14:25:12 +0100 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050125222705.1ee878fd.davem@davemloft.net> References: <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> <20050120085611.33f9485e@dxpl.pdx.osdl.net> <20050121105452.GA12988@xi.wantstofly.org> <20050125222705.1ee878fd.davem@davemloft.net> Message-ID: <20050126132512.GA18220@xi.wantstofly.org> On Tue, Jan 25, 2005 at 10:27:05PM -0800, David S. Miller wrote: > > If multiple CPUs can call into the tunneling drivers without taking > > any locks, we'd need some extra locking in there, or just do what > > Alexey describes and keep track of recursion in the skb. > > Another idea is that, just like how loopback made it's statistics > per-cpu for LLTX support, this recursion variable could be per-cpu > as well. I've thought about this a bit, and the only sane way of doing recursion detection that doesn't involve 'struct net_device' would be to keep track of the recursion depth (perhaps per-CPU as you suggest) and tossing the packet when it exceeds some random value, right? To reproduce the current behaviour more closely you'd have to keep a small per-CPU array of 'struct net_device *' pointers as a kind of recursion stack, and toss the packet when you hit a net_device that's already on the list. But that seems like slight overkill. --L From roland at topspin.com Wed Jan 26 10:12:04 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 26 Jan 2005 10:12:04 -0800 Subject: [openib-general] Re: [PATCH] remove locking for cq event In-Reply-To: <20050126174632.GD10743@mellanox.co.il> (Michael S. Tsirkin's message of "Wed, 26 Jan 2005 19:46:32 +0200") References: <20050126155040.GA5108@mellanox.co.il> <52y8eg156a.fsf@topspin.com> <20050126174632.GD10743@mellanox.co.il> Message-ID: <52651k12mj.fsf@topspin.com> Looks good... how about a Signed-off-by: and a patch description? Thanks, Roland From roland at topspin.com Wed Jan 26 10:16:42 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 26 Jan 2005 10:16:42 -0800 Subject: [openib-general] [PATCH] (fixed) cqe lookup speedup In-Reply-To: <20050126145218.GA4878@mellanox.co.il> (Michael S. Tsirkin's message of "Wed, 26 Jan 2005 16:52:18 +0200") References: <20050126131324.GF3791@mellanox.co.il> <20050126145218.GA4878@mellanox.co.il> Message-ID: <521xc812et.fsf@topspin.com> Thanks, I applied this. - R. From mst at mellanox.co.il Wed Jan 26 10:26:07 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 20:26:07 +0200 Subject: [openib-general] Re: [PATCH] remove locking for cq event (was: rcu for event speedup) In-Reply-To: <20050126174632.GD10743@mellanox.co.il> References: <20050126155040.GA5108@mellanox.co.il> <52y8eg156a.fsf@topspin.com> <20050126174632.GD10743@mellanox.co.il> Message-ID: <20050126182607.GG10743@mellanox.co.il> The following patch avoids taking the cq table lock on data path. This gets a nice speedup (about 4%) in IP over IB on my hardware. Signed-off-by: Michael S. Tsirkin Index: hw/mthca/mthca_cq.c =================================================================== --- hw/mthca/mthca_cq.c (revision 1653) +++ hw/mthca/mthca_cq.c (working copy) @@ -180,11 +180,8 @@ void mthca_cq_event(struct mthca_dev *de { struct mthca_cq *cq; - spin_lock(&dev->cq_table.lock); cq = mthca_array_get(&dev->cq_table.cq, cqn & (dev->limits.num_cqs - 1)); - if (cq) - atomic_inc(&cq->refcount); - spin_unlock(&dev->cq_table.lock); + read_barrier_depends(); if (!cq) { mthca_warn(dev, "Completion event for bogus CQ %08x\n", cqn); @@ -192,9 +189,6 @@ void mthca_cq_event(struct mthca_dev *de } cq->ibcq.comp_handler(&cq->ibcq, cq->ibcq.cq_context); - - if (atomic_dec_and_test(&cq->refcount)) - wake_up(&cq->wait); } void mthca_cq_clean(struct mthca_dev *dev, u32 cqn, u32 qpn) @@ -785,6 +779,15 @@ void mthca_free_cq(struct mthca_dev *dev cq->cqn & (dev->limits.num_cqs - 1)); spin_unlock_irq(&dev->cq_table.lock); + wmb(); + + if (dev->mthca_flags & MTHCA_FLAG_MSI_X) + synchronize_irq(dev->eq_table.eq[MTHCA_EQ_COMP].msi_x_vector); + else + synchronize_irq(dev->pdev->irq); + + + atomic_dec(&cq->refcount); wait_event(cq->wait, !atomic_read(&cq->refcount)); -- I dont speak for Mellanox From mlleinin at hpcn.ca.sandia.gov Wed Jan 26 10:32:00 2005 From: mlleinin at hpcn.ca.sandia.gov (Matt Leininger) Date: Wed, 26 Jan 2005 10:32:00 -0800 Subject: [openib-general] pls correct openib_faq.txt (was Re: patches from subversion) In-Reply-To: <20050126150248.GB4878@mellanox.co.il> References: <1106260417.18269.60.camel@duffman> <20050126150248.GB4878@mellanox.co.il> Message-ID: <1106764320.22872.185.camel@localhost> On Wed, 2005-01-26 at 17:02 +0200, Michael S. Tsirkin wrote: > Quoting r. Tom Duffy : > > > | (or modify ~/.subversion/config: diff-cmd = ~/bin/mydiff) > > > > This didn't work for me. I needed to spell out the whole path to > > "mydiff". For some reason, I guess "~" was not be expanded properly. > > > > Also, you have to put this line under the [helpers] section, which you > > may need to create if it is not already in your .subversion/config. > > > > > It just bit me on a new machine I was configuring. > Please put the following in FAQ: > > > It is preferred that patches are generated with the diff -up option. > Here is a sample command line: > svn diff --diff-cmd "/usr/bin/diff" -x -up FILENAME > > or using a "mydiff" wrapper: > > svn diff --diff-cmd $HOME/bin/mydiff > or modify ~/.subversion/config by adding the following lines: > ---------------------- > [helpers] > diff-cmd = //mydiff > > ---------------------- > where should be replaced by the full path > to $HOME/bin/mydiff, and where "$HOME/bin/mydiff" contains: > #!/usr/bin/perl > exec ("diff", "-up", at ARGV); > > > > > (Please note an empty line is required at the end of the helpers section). > Thanks, > MST The OpenIB faq has been updated. Please double-check it. Thanks, - Matt From libor at topspin.com Wed Jan 26 10:48:07 2005 From: libor at topspin.com (Libor Michalek) Date: Wed, 26 Jan 2005 10:48:07 -0800 Subject: [openib-general] [PATCH] CM: new call to return QP attributes for use modifying the QP In-Reply-To: <20050126023849.02da3323.mshefty@ichips.intel.com>; from mshefty@ichips.intel.com on Wed, Jan 26, 2005 at 02:38:49AM -0800 References: <20050126023849.02da3323.mshefty@ichips.intel.com> Message-ID: <20050126104807.A30310@topspin.com> On Wed, Jan 26, 2005 at 02:38:49AM -0800, Sean Hefty wrote: > This patch implements the new CM call to return a default set of QP > attributes that can be used to call ib_modify_qp. The code was > restructured in areas as a result of saving the necessary data. > > I have test code that is nearly complete that will exercise the CM APIs > and can be used as sample code. It runs in the kernel only, but shouldn't > be too difficult to port to user-mode. Sean, I have a PSN question about the new qp_attr API. What does the function ib_cm_init_qp_attr() use for the RQ PSN when creating the RTR QP state attributes? This number is the locally generated PSN. -Libor From mshefty at ichips.intel.com Wed Jan 26 10:53:57 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 10:53:57 -0800 Subject: [openib-general] [PATCH] CM: new call to return QP attributes for use modifying the QP In-Reply-To: <20050126104807.A30310@topspin.com> References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> Message-ID: <41F7E745.1070203@ichips.intel.com> Libor Michalek wrote: > I have a PSN question about the new qp_attr API. What does the function > ib_cm_init_qp_attr() use for the RQ PSN when creating the RTR QP state > attributes? This number is the locally generated PSN. The user provides a starting_psn value when calling ib_send_cm_req and ib_send_cm_rep. The CM stores these values. The RQ PSN for the active side is the starting_psn returned in the REP message. The RQ PSN for the passive side is the starting_psn received in the REQ. Hmm... it looks like this is backwards. I'll fix this. - Sean From roland at topspin.com Wed Jan 26 11:03:37 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 26 Jan 2005 11:03:37 -0800 Subject: [openib-general] Re: [PATCH] remove locking for cq event In-Reply-To: <20050126182607.GG10743@mellanox.co.il> (Michael S. Tsirkin's message of "Wed, 26 Jan 2005 20:26:07 +0200") References: <20050126155040.GA5108@mellanox.co.il> <52y8eg156a.fsf@topspin.com> <20050126174632.GD10743@mellanox.co.il> <20050126182607.GG10743@mellanox.co.il> Message-ID: <52wtu0ypva.fsf@topspin.com> >>>>> "Michael" == Michael S Tsirkin writes: Michael> The following patch avoids taking the cq table lock on Michael> data path. This gets a nice speedup (about 4%) in IP Michael> over IB on my hardware. Michael> Signed-off-by: Michael S. Tsirkin Thanks... After thinking about this some more, I don't think we need the read_barrier_depends() (since free_cq will wait until the interrupt handler is done before it changes the contents of the cq pointer), and we don't need the wmb() before the synchronize_irq(), since spin_unlock has an implied memory barrier. So this is what I committed: Index: hw/mthca/mthca_cq.c =================================================================== --- hw/mthca/mthca_cq.c (revision 1658) +++ hw/mthca/mthca_cq.c (working copy) @@ -181,11 +181,7 @@ void mthca_cq_event(struct mthca_dev *de { struct mthca_cq *cq; - spin_lock(&dev->cq_table.lock); cq = mthca_array_get(&dev->cq_table.cq, cqn & (dev->limits.num_cqs - 1)); - if (cq) - atomic_inc(&cq->refcount); - spin_unlock(&dev->cq_table.lock); if (!cq) { mthca_warn(dev, "Completion event for bogus CQ %08x\n", cqn); @@ -193,9 +189,6 @@ void mthca_cq_event(struct mthca_dev *de } cq->ibcq.comp_handler(&cq->ibcq, cq->ibcq.cq_context); - - if (atomic_dec_and_test(&cq->refcount)) - wake_up(&cq->wait); } void mthca_cq_clean(struct mthca_dev *dev, u32 cqn, u32 qpn) @@ -785,6 +778,11 @@ void mthca_free_cq(struct mthca_dev *dev cq->cqn & (dev->limits.num_cqs - 1)); spin_unlock_irq(&dev->cq_table.lock); + if (dev->mthca_flags & MTHCA_FLAG_MSI_X) + synchronize_irq(dev->eq_table.eq[MTHCA_EQ_COMP].msi_x_vector); + else + synchronize_irq(dev->pdev->irq); + atomic_dec(&cq->refcount); wait_event(cq->wait, !atomic_read(&cq->refcount)); From libor at topspin.com Wed Jan 26 11:06:26 2005 From: libor at topspin.com (Libor Michalek) Date: Wed, 26 Jan 2005 11:06:26 -0800 Subject: [openib-general] [PATCH] CM: new call to return QP attributes for use modifying the QP In-Reply-To: <41F7E745.1070203@ichips.intel.com>; from mshefty@ichips.intel.com on Wed, Jan 26, 2005 at 10:53:57AM -0800 References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> Message-ID: <20050126110626.B30310@topspin.com> On Wed, Jan 26, 2005 at 10:53:57AM -0800, Sean Hefty wrote: > Libor Michalek wrote: > > I have a PSN question about the new qp_attr API. What does the function > > ib_cm_init_qp_attr() use for the RQ PSN when creating the RTR QP state > > attributes? This number is the locally generated PSN. > > The user provides a starting_psn value when calling ib_send_cm_req and > ib_send_cm_rep. The CM stores these values. The RQ PSN for the active > side is the starting_psn returned in the REP message. On the passive connect side the RTR QP transition needs to occur before the REP message is sent. One of the valid states for ib_cm_init_qp_attr() RTR states change is REQ_RCVD. Obviously in this case there is no starting_psn from the REP... > The RQ PSN for > the passive side is the starting_psn received in the REQ. > > Hmm... it looks like this is backwards. I'll fix this. Yes, that's backwards, the received starting_psn is always the SQ PSN I believe. From vnguyen_777 at yahoo.com Wed Jan 26 11:20:05 2005 From: vnguyen_777 at yahoo.com (vinh nguyen) Date: Wed, 26 Jan 2005 11:20:05 -0800 (PST) Subject: [openib-general] openSM failed to run with loading shared libraries error Message-ID: <20050126192005.79876.qmail@web51007.mail.yahoo.com> Hi everyone, I'm trying to build openib stack (gen 1) on kernel 2.6.7. I've completed the steps in README.kernel-build and README.user-build. I also built opensm according the instructions in README.opensm-build. Variables TSHOME is pointing to directory containing ts_ib_useraccess.h and MTHOME is pointing to mellanox-hca/mthome/include. When I tried to run /usr/loca/openib/src/userspace/osm/opensm/opensm I get this error: opensm: error while loading shared libraries: libcomplib.so: cannot open shared object file: No such file or directory The file seems to be there: [root at infiniband3 opensm]# ls -l libcomplib.so lrwxr-xr-x 1 root root 17 Jan 26 14:06 libcomplib.so -> libcomplib.so.0.0 Any ideas? Thanks for the help in advance. Vinh Nguyen __________________________________ Do you Yahoo!? Yahoo! Mail - Helps protect you from nasty viruses. http://promotions.yahoo.com/new_mail From mshefty at ichips.intel.com Wed Jan 26 11:26:30 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 11:26:30 -0800 Subject: [openib-general] [PATCH] CM: new call to return QP attributes for use modifying the QP In-Reply-To: <20050126110626.B30310@topspin.com> References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> <20050126110626.B30310@topspin.com> Message-ID: <41F7EEE6.20803@ichips.intel.com> Libor Michalek wrote: > On the passive connect side the RTR QP transition needs to occur before > the REP message is sent. One of the valid states for ib_cm_init_qp_attr() > RTR states change is REQ_RCVD. Obviously in this case there is no > starting_psn from the REP... I've swapped where sq_psn and rq_psn are stored, and renamed the starting_send_psn field in the CM parameters to just starting_psn. The rq_psn is now stored when sending the REQ or REP, and sq_psn is stored when receiving the REQ or REP. As you pointed out though, the passive side rq_psn is needed for REP is sent... * The user could be responsible for setting the rq_psn on the passive side before modifying the QP. The user would still need to provide this value when sending the REP. This option makes it more difficult on the user. * The CM could make up a PSN value (similar to the Topspin ib_cm_psn_generate call) and return it to the user through the QP attributes. The user would need to extract the returned value and provide it when sending the REP. The value would need to be returned by users that did not call the CM helper function. * The CM could just hide the PSN value from the user entirely. This requires users to call the CM helper function. So far, I'm not caring for any of the options that I can think of. - Sean From iod00d at hp.com Wed Jan 26 11:28:10 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 26 Jan 2005 11:28:10 -0800 Subject: [openib-general] Re: [PATCH] (fixed) reduce qp locking on cq poll In-Reply-To: <20050126171902.GC10743@mellanox.co.il> References: <20050126135451.GI3791@mellanox.co.il> <523bwo2ka2.fsf@topspin.com> <20050126171902.GC10743@mellanox.co.il> Message-ID: <20050126192810.GA18168@esmail.cup.hp.com> On Wed, Jan 26, 2005 at 07:19:02PM +0200, Michael S. Tsirkin wrote: > > I'm a little worried that you see no improvement from this patch -- it > > doesn't seem like fast hardware should be required. I was wondering the same thing. Why is fast HW required? > On my hardware I see wild variations of bandwidth so only big wins > show conclusively. Can you test it? Can you quantify what you mean by "wild variations" and "big wins"? Have you tried pinning the test processes to a particular CPU with taskset? thanks, grant From mst at mellanox.co.il Wed Jan 26 11:37:49 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 21:37:49 +0200 Subject: [openib-general] Re: Re: [PATCH] (fixed) reduce qp locking on cq poll In-Reply-To: <20050126192810.GA18168@esmail.cup.hp.com> References: <20050126135451.GI3791@mellanox.co.il> <523bwo2ka2.fsf@topspin.com> <20050126171902.GC10743@mellanox.co.il> <20050126192810.GA18168@esmail.cup.hp.com> Message-ID: <20050126193749.GH10743@mellanox.co.il> Quoting r. Grant Grundler : > Subject: Re: Re: [PATCH] (fixed) reduce qp locking on cq poll > > On Wed, Jan 26, 2005 at 07:19:02PM +0200, Michael S. Tsirkin wrote: > > > I'm a little worried that you see no improvement from this patch -- it > > > doesn't seem like fast hardware should be required. > > I was wondering the same thing. Why is fast HW required? See below. > > On my hardware I see wild variations of bandwidth so only big wins > > show conclusively. Can you test it? > > Can you quantify what you mean by "wild variations" and "big wins"? Goes up or down up to 3% on a bad day. Anything less is noise for me. > Have you tried pinning the test processes to a particular CPU > with taskset? No. Why will this help? > thanks, > grant -- I dont speak for Mellanox From mst at mellanox.co.il Wed Jan 26 11:44:01 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 21:44:01 +0200 Subject: [openib-general] [PATCH] (final) reduce qp locking on cq poll In-Reply-To: <20050126175005.GE10743@mellanox.co.il> References: <20050126135451.GI3791@mellanox.co.il> <523bwo2ka2.fsf@topspin.com> <20050126175005.GE10743@mellanox.co.il> Message-ID: <20050126194401.GA12282@mellanox.co.il> Here it is, fixed. Untested, but I only touched the comments ... > > Michael> Locking during the poll cq operation can be reduced, by > > Michael> locking the cq while qp is being removed from the qp > > Michael> array. This also avoids an extra atomic operation for > > Michael> reference counting. Signed-off-by: Michael S. Tsirkin Index: hw/mthca/mthca_cq.c =================================================================== --- hw/mthca/mthca_cq.c (revision 1663) +++ hw/mthca/mthca_cq.c (working copy) @@ -420,14 +420,11 @@ static inline int mthca_poll_one(struct wake_up(&(*cur_qp)->wait); } - spin_lock(&dev->qp_table.lock); + /* We do not have to take the qp table lock here, because + cq was locked while qp was removed from the array */ *cur_qp = mthca_array_get(&dev->qp_table.qp, be32_to_cpu(cqe->my_qpn) & (dev->limits.num_qps - 1)); - if (*cur_qp) - atomic_inc(&(*cur_qp)->refcount); - spin_unlock(&dev->qp_table.lock); - if (!*cur_qp) { mthca_warn(dev, "CQ entry for unknown QP %06x\n", be32_to_cpu(cqe->my_qpn) & 0xffffff); @@ -541,8 +538,6 @@ int mthca_poll_cq(struct ib_cq *ibcq, in if (qp) { spin_unlock(&qp->lock); - if (atomic_dec_and_test(&qp->refcount)) - wake_up(&qp->wait); } Index: hw/mthca/TODO =================================================================== --- hw/mthca/TODO (revision 1663) +++ hw/mthca/TODO (working copy) @@ -11,11 +11,6 @@ Small projects (extensions to existing c into HCA memory. Miscellaneous verbs: At least query AH, query QP and resize CQ are not implemented. - Reduce locking for CQ poll: The reference counting used to prevent - CQs and QPs from being destroyed while events are being - dispatched could be eliminated by locking EQs (and, for QPs, - the associated CQs) during destroy operations. This saves an - atomic access in the CQ poll fast path. Reduce doorbell locking on 32-bit architectures: By using a a doorbell page dedicated to each EQ, no lock is required in the EQ poll path. Index: hw/mthca/mthca_qp.c =================================================================== --- hw/mthca/mthca_qp.c (revision 1663) +++ hw/mthca/mthca_qp.c (working copy) @@ -1083,9 +1083,19 @@ int mthca_alloc_sqp(struct mthca_dev *de return 0; err_out_free: - spin_lock_irq(&dev->qp_table.lock); + /* Lock cq here, so that cq polling code + can do qp lookup without taking a lock */ + spin_lock_irq(&send_cq->lock); + if (send_cq != recv_cq) + spin_lock(&recv_cq->lock); + + spin_lock(&dev->qp_table.lock); mthca_array_clear(&dev->qp_table.qp, mqpn); - spin_unlock_irq(&dev->qp_table.lock); + spin_unlock(&dev->qp_table.lock); + + if (send_cq != recv_cq) + spin_unlock(&recv_cq->lock); + spin_unlock_irq(&send_cq->lock); err_out: dma_free_coherent(&dev->pdev->dev, sqp->header_buf_size, @@ -1100,11 +1110,26 @@ void mthca_free_qp(struct mthca_dev *dev u8 status; int size; int i; + struct mthca_cq *send_cq; + struct mthca_cq *recv_cq; + + send_cq = to_mcq(qp->ibqp.send_cq); + recv_cq = to_mcq(qp->ibqp.recv_cq); - spin_lock_irq(&dev->qp_table.lock); + /* Lock cq here, so that cq polling code + can do qp lookup without taking a lock */ + spin_lock_irq(&send_cq->lock); + if (send_cq != recv_cq) + spin_lock(&recv_cq->lock); + + spin_lock(&dev->qp_table.lock); mthca_array_clear(&dev->qp_table.qp, qp->qpn & (dev->limits.num_qps - 1)); - spin_unlock_irq(&dev->qp_table.lock); + spin_unlock(&dev->qp_table.lock); + + if (send_cq != recv_cq) + spin_unlock(&recv_cq->lock); + spin_unlock_irq(&send_cq->lock); atomic_dec(&qp->refcount); wait_event(qp->wait, !atomic_read(&qp->refcount)); -- I dont speak for Mellanox From iod00d at hp.com Wed Jan 26 11:44:58 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 26 Jan 2005 11:44:58 -0800 Subject: [openib-general] [PATCH] (fixed) cqe lookup speedup In-Reply-To: <20050126145218.GA4878@mellanox.co.il> References: <20050126131324.GF3791@mellanox.co.il> <20050126145218.GA4878@mellanox.co.il> Message-ID: <20050126194458.GB18168@esmail.cup.hp.com> Michael, just is questions about the code...maybe roland can answer. On Wed, Jan 26, 2005 at 04:52:18PM +0200, Michael S. Tsirkin wrote: > Index: hw/mthca/mthca_cq.c > =================================================================== > --- hw/mthca/mthca_cq.c (revision 1653) > +++ hw/mthca/mthca_cq.c (working copy) > @@ -147,20 +147,21 @@ static inline struct mthca_cqe *get_cqe( > + (entry * MTHCA_CQ_ENTRY_SIZE) % PAGE_SIZE; > } > > -static inline int cqe_sw(struct mthca_cq *cq, int i) > +static inline struct mthca_cqe *cqe_sw(struct mthca_cq *cq, int i) > { > - return !(MTHCA_CQ_ENTRY_OWNER_HW & > - get_cqe(cq, i)->owner); > + struct mthca_cqe *cqe; > + cqe = get_cqe(cq, i); this could be one line: struct mthca_cqe *cqe = get_cqe(cq, i); > @@ -775,7 +784,7 @@ void mthca_free_cq(struct mthca_dev *dev > int j; > > printk(KERN_ERR "context for CQN %x (cons index %x, next sw %d)\n", > - cq->cqn, cq->cons_index, next_cqe_sw(cq)); > + cq->cqn, cq->cons_index, next_cqe_sw(cq)?1:0); > for (j = 0; j < 16; ++j) > printk(KERN_ERR "[%2x] %08x\n", j * 4, be32_to_cpu(ctx[j])); > } This code chunk is "dead" code. It starts with "if (0)". Can it just be deleted? In mthca_poll_one(): if ((cqe->opcode & MTHCA_ERROR_CQE_OPCODE_MASK) == MTHCA_ERROR_CQE_OPCODE_MASK) { is_error = 1; is_send = cqe->opcode & 1; } else is_send = cqe->is_send & 0x80; Could be better written as: is_error = (cqe->opcode & MTHCA_ERROR_CQE_OPCODE_MASK) == MTHCA_ERROR_CQE_OPCODE_MASK); is_send = is_error ? (cqe->opcode & 1) : (cqe->is_send & 0x80); BTW, I dislike use of "is_send" to branch the code path several times later instead of just having two different code paths that call the same in-line functions. Interested in a patch to change this? thanks, grant From mst at mellanox.co.il Wed Jan 26 11:49:24 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 21:49:24 +0200 Subject: [openib-general] [PATCH] (fixed) cqe lookup speedup In-Reply-To: <20050126194458.GB18168@esmail.cup.hp.com> References: <20050126131324.GF3791@mellanox.co.il> <20050126145218.GA4878@mellanox.co.il> <20050126194458.GB18168@esmail.cup.hp.com> Message-ID: <20050126194924.GB12344@mellanox.co.il> Quoting r. Grant Grundler : > Subject: Re: [openib-general] [PATCH] (fixed) cqe lookup speedup > > Michael, > just is questions about the code...maybe roland can answer. All this is style, and most refers to code I didnt change. This is for Roland to decide. > On Wed, Jan 26, 2005 at 04:52:18PM +0200, Michael S. Tsirkin wrote: > > Index: hw/mthca/mthca_cq.c > > =================================================================== > > --- hw/mthca/mthca_cq.c (revision 1653) > > +++ hw/mthca/mthca_cq.c (working copy) > > @@ -147,20 +147,21 @@ static inline struct mthca_cqe *get_cqe( > > + (entry * MTHCA_CQ_ENTRY_SIZE) % PAGE_SIZE; > > } > > > > -static inline int cqe_sw(struct mthca_cq *cq, int i) > > +static inline struct mthca_cqe *cqe_sw(struct mthca_cq *cq, int i) > > { > > - return !(MTHCA_CQ_ENTRY_OWNER_HW & > > - get_cqe(cq, i)->owner); > > + struct mthca_cqe *cqe; > > + cqe = get_cqe(cq, i); > > this could be one line: > struct mthca_cqe *cqe = get_cqe(cq, i); > > > @@ -775,7 +784,7 @@ void mthca_free_cq(struct mthca_dev *dev > > int j; > > > > printk(KERN_ERR "context for CQN %x (cons index %x, next sw %d)\n", > > - cq->cqn, cq->cons_index, next_cqe_sw(cq)); > > + cq->cqn, cq->cons_index, next_cqe_sw(cq)?1:0); > > for (j = 0; j < 16; ++j) > > printk(KERN_ERR "[%2x] %08x\n", j * 4, be32_to_cpu(ctx[j])); > > } > > This code chunk is "dead" code. It starts with "if (0)". > Can it just be deleted? > > > In mthca_poll_one(): > if ((cqe->opcode & MTHCA_ERROR_CQE_OPCODE_MASK) == > MTHCA_ERROR_CQE_OPCODE_MASK) { > is_error = 1; > is_send = cqe->opcode & 1; > } else > is_send = cqe->is_send & 0x80; > > Could be better written as: > is_error = (cqe->opcode & MTHCA_ERROR_CQE_OPCODE_MASK) == MTHCA_ERROR_CQE_OPCODE_MASK); > > is_send = is_error ? (cqe->opcode & 1) : (cqe->is_send & 0x80); > > BTW, I dislike use of "is_send" to branch the code path several times > later instead of just having two different code paths that call the same > in-line functions. Interested in a patch to change this? > > thanks, > grant -- I dont speak for Mellanox From iod00d at hp.com Wed Jan 26 11:55:02 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 26 Jan 2005 11:55:02 -0800 Subject: [openib-general] Re: Re: [PATCH] (fixed) reduce qp locking on cq poll In-Reply-To: <20050126193749.GH10743@mellanox.co.il> References: <20050126135451.GI3791@mellanox.co.il> <523bwo2ka2.fsf@topspin.com> <20050126171902.GC10743@mellanox.co.il> <20050126192810.GA18168@esmail.cup.hp.com> <20050126193749.GH10743@mellanox.co.il> Message-ID: <20050126195502.GD18168@esmail.cup.hp.com> On Wed, Jan 26, 2005 at 09:37:49PM +0200, Michael S. Tsirkin wrote: > Quoting r. Grant Grundler : > > Subject: Re: Re: [PATCH] (fixed) reduce qp locking on cq poll > > > > On Wed, Jan 26, 2005 at 07:19:02PM +0200, Michael S. Tsirkin wrote: > > > > I'm a little worried that you see no improvement from this patch -- it > > > > doesn't seem like fast hardware should be required. > > > > I was wondering the same thing. Why is fast HW required? > > See below. Sorry - I didn't see the answer "below". Can you be more specific? > > Can you quantify what you mean by "wild variations" and "big wins"? > > Goes up or down up to 3% on a bad day. Anything less is noise for me. Ok - I expect repeatability to be < 1% and ideally < 0.1%. On a private LAN at least. :^) > > Have you tried pinning the test processes to a particular CPU > > with taskset? > > No. Why will this help? cacheline ping-ponging will be the same between test runs. Did you see the difference in IPoIB numbers that I posted earlier where I pegged the test processes to the same CPU taking interrupts or a different CPU? For netperf, this was especially important for the system running "netserver" process. grant From ftillier at infiniconsys.com Wed Jan 26 11:55:54 2005 From: ftillier at infiniconsys.com (Fab Tillier) Date: Wed, 26 Jan 2005 11:55:54 -0800 Subject: [openib-general] CM handling of REJ retry Message-ID: <000101c503e1$0cfa6ab0$8d5aa8c0@infiniconsys.com> The IB spec, section 12.9.8.7 states that the local CID should be changed if retrying a REQ after receiving a REJ in the REQ Sent or REP Wait state. The current API seems to require uses to destroy their CID and allocate a new one before they can retry (i.e. it doesn't support REJ retry). Do we want (and is it possible) to have the CM reserve the upper byte (or any other portion) of the LCID and use it as a revolving counter so users can just retry a request? This would limit a system to 2^24 CIDs, which is probably more then enough. Thoughts? - Fab From mshefty at ichips.intel.com Wed Jan 26 12:08:40 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 12:08:40 -0800 Subject: [openib-general] CM handling of REJ retry In-Reply-To: <000101c503e1$0cfa6ab0$8d5aa8c0@infiniconsys.com> References: <000101c503e1$0cfa6ab0$8d5aa8c0@infiniconsys.com> Message-ID: <41F7F8C8.90800@ichips.intel.com> Fab Tillier wrote: > The IB spec, section 12.9.8.7 states that the local CID should be changed if > retrying a REQ after receiving a REJ in the REQ Sent or REP Wait state. What a nightmare. > The current API seems to require uses to destroy their CID and allocate a > new one before they can retry (i.e. it doesn't support REJ retry). Do we > want (and is it possible) to have the CM reserve the upper byte (or any > other portion) of the LCID and use it as a revolving counter so users can > just retry a request? This would limit a system to 2^24 CIDs, which is > probably more then enough. The CM has complete control over the local comm id, so it can do whatever it wants to with it. Cycling part of the comm id should work fine. Also, given the current implementation, users need to re-create their comm id's with each connection in order to avoid using data that was stored with the previous connection. (The fix is simple and involves clearing the stored data, but it's not there atm.) - Sean From mst at mellanox.co.il Wed Jan 26 12:13:22 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Wed, 26 Jan 2005 22:13:22 +0200 Subject: [openib-general] Re: Re: [PATCH] (fixed) reduce qp locking on cq poll In-Reply-To: <20050126195502.GD18168@esmail.cup.hp.com> References: <20050126135451.GI3791@mellanox.co.il> <523bwo2ka2.fsf@topspin.com> <20050126171902.GC10743@mellanox.co.il> <20050126192810.GA18168@esmail.cup.hp.com> <20050126193749.GH10743@mellanox.co.il> <20050126195502.GD18168@esmail.cup.hp.com> Message-ID: <20050126201322.GD12344@mellanox.co.il> Quoting r. Grant Grundler : > Subject: Re: Re: [PATCH] (fixed) reduce qp locking on cq poll > > On Wed, Jan 26, 2005 at 09:37:49PM +0200, Michael S. Tsirkin wrote: > > Quoting r. Grant Grundler : > > > Subject: Re: Re: [PATCH] (fixed) reduce qp locking on cq poll > > > > > > On Wed, Jan 26, 2005 at 07:19:02PM +0200, Michael S. Tsirkin wrote: > > > > > I'm a little worried that you see no improvement from this patch -- it > > > > > doesn't seem like fast hardware should be required. > > > > > > I was wondering the same thing. Why is fast HW required? > > > > See below. > > Sorry - I didn't see the answer "below". > Can you be more specific? Its not the speed of hardware, my problem is the variations. > > > Can you quantify what you mean by "wild variations" and "big wins"? > > > > Goes up or down up to 3% on a bad day. Anything less is noise for me. > > Ok - I expect repeatability to be < 1% and ideally < 0.1%. > On a private LAN at least. :^) > > > > Have you tried pinning the test processes to a particular CPU > > > with taskset? > > > > No. Why will this help? > > cacheline ping-ponging will be the same between test runs. > > Did you see the difference in IPoIB numbers that I posted > earlier where I pegged the test processes to the same CPU > taking interrupts or a different CPU? > > For netperf, this was especially important for the system > running "netserver" process. > > grant No - link? -- I dont speak for Mellanox From libor at topspin.com Wed Jan 26 12:22:46 2005 From: libor at topspin.com (Libor Michalek) Date: Wed, 26 Jan 2005 12:22:46 -0800 Subject: [openib-general] Some CM ib_destroy_cm_id errors? In-Reply-To: <41F7EEE6.20803@ichips.intel.com>; from mshefty@ichips.intel.com on Wed, Jan 26, 2005 at 11:26:30AM -0800 References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> <20050126110626.B30310@topspin.com> <41F7EEE6.20803@ichips.intel.com> Message-ID: <20050126122246.C30310@topspin.com> Sean, I'm seeing the following errors in my log file when I try to detroy a communications identifier. In the first case it is a cm_id which has never been used, just create, a failed cm_send_req(), and a destroy. The second case is a listening cm_id which is being destroyed. kernel: idr_remove called for id=0 which is not allocated. kernel: [] sub_remove+0xf8/0x100 kernel: [] mthca_free_mr+0x7d/0xd0 [ib_mthca] kernel: [] idr_remove+0x20/0x90 kernel: [] cm_free_id+0x24/0x40 [ib_cm] kernel: [] ib_destroy_cm_id+0x64/0x210 [ib_cm] kernel: [] call_console_drivers+0x90/0x120 kernel: [] _sdp_iocb_q_cancel_lookup_func+0x0/0x20 [ib_sdp] kernel: [] sdp_conn_destruct+0x1fb/0x3b0 [ib_sdp] kernel: [] _sdp_inet_release+0x1b7/0x550 [ib_sdp] kernel: [] tty_write+0x20a/0x280 kernel: [] release_sock+0x1b/0x80 kernel: [] sock_fasync+0x9a/0x150 kernel: [] sock_release+0x77/0xc0 kernel: [] sock_close+0x21/0x40 kernel: [] __fput+0xfc/0x110 kernel: [] filp_close+0x4f/0x80 kernel: [] sysenter_past_esp+0x52/0x75 kernel: idr_remove called for id=0 which is not allocated. kernel: [] sub_remove+0xf8/0x100 kernel: [] idr_remove+0x20/0x90 kernel: [] cm_free_id+0x24/0x40 [ib_cm] kernel: [] ib_destroy_cm_id+0x64/0x210 [ib_cm] kernel: [] do_drain+0x0/0x50 kernel: [] do_drain+0x0/0x50 kernel: [] sdp_cm_listen_stop+0x15/0x60 [ib_sdp] kernel: [] __cache_shrink+0x80/0x90 kernel: [] kmem_cache_destroy+0xa9/0x110 kernel: [] sdp_conn_table_clear+0x4f/0x60 [ib_sdp] kernel: [] sdp_exit+0x1e/0x40 [ib_sdp] kernel: [] sys_delete_module+0x13b/0x160 kernel: [] unmap_vma_list+0x1a/0x30 kernel: [] do_munmap+0x12c/0x170 kernel: [] sysenter_past_esp+0x52/0x75 -Libor From mshefty at ichips.intel.com Wed Jan 26 12:32:30 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 12:32:30 -0800 Subject: [openib-general] Re: Some CM ib_destroy_cm_id errors? In-Reply-To: <20050126122246.C30310@topspin.com> References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> <20050126110626.B30310@topspin.com> <41F7EEE6.20803@ichips.intel.com> <20050126122246.C30310@topspin.com> Message-ID: <41F7FE5E.6060906@ichips.intel.com> Libor Michalek wrote: > I'm seeing the following errors in my log file when I try to detroy a > communications identifier. In the first case it is a cm_id which has > never been used, just create, a failed cm_send_req(), and a destroy. The > second case is a listening cm_id which is being destroyed. Not sure what is going on. I have tests for the listen cases. I'll run through those to make sure that they work. (They did when I ran them last week, but I haven't re-tested with the latest code changes.) From the error, it looks like the cm_id->local_id is being set to 0. Can you verify that you don't clean the cm_id memory after it's allocated? - Sean From libor at topspin.com Wed Jan 26 12:49:21 2005 From: libor at topspin.com (Libor Michalek) Date: Wed, 26 Jan 2005 12:49:21 -0800 Subject: [openib-general] Incoorect cm_find_port result. In-Reply-To: <41F7FE5E.6060906@ichips.intel.com>; from mshefty@ichips.intel.com on Wed, Jan 26, 2005 at 12:32:30PM -0800 References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> <20050126110626.B30310@topspin.com> <41F7EEE6.20803@ichips.intel.com> <20050126122246.C30310@topspin.com> <41F7FE5E.6060906@ichips.intel.com> Message-ID: <20050126124921.D30310@topspin.com> Sean, There is an inconsistency between the port returned by cm_find_port() and the port needed for ib_find_cached_pkey() cm_find_port() is using base 0 port numbering, while ib_find_cached_pkey() uses base 1 port numbering. If I make this change ib_send_cm_req() appears to work correctly: -Libor Index: infiniband/core/cm.c =================================================================== --- infiniband/core/cm.c (revision 1664) +++ infiniband/core/cm.c (working copy) @@ -215,7 +215,7 @@ if (ret) port = NULL; else - port = &port[p-1]; + port = &port[p]; return port; } From roland at topspin.com Wed Jan 26 12:56:21 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 26 Jan 2005 12:56:21 -0800 Subject: [openib-general] Re: InfiniBand MAD device number request In-Reply-To: <20050125131954.GB4158@linux2> (Torben Mathiasen's message of "Tue, 25 Jan 2005 14:19:54 +0100") References: <52brcce5b9.fsf@topspin.com> <20050107120451.GK4592@linux2> <52oefz23fr.fsf@topspin.com> <20050111145814.GP4249@linux2> <52y8exot3v.fsf@topspin.com> <20050114101650.GB4102@linux2> <527jmfn9q0.fsf@topspin.com> <20050125131954.GB4158@linux2> Message-ID: <52oefbzz7u.fsf@topspin.com> Torben> Ok here's the deal. I started a new 2.6+ device list. Great, thanks! Torben> 231 char InfiniBand MAD Torben> 0 = /dev/infiniband/umad0 Torben> 1 = /dev/infiniband/umad1 Torben> ... Can we update this to be: 231 char InfiniBand 0 = /dev/infiniband/umad0 First InfiniBand MAD device 1 = /dev/infiniband/umad1 Second InfiniBand MAD device ... 63 = /dev/infiniband/umad63 63rd InfiniBandMad device 64 = /dev/infiniband/issm0 First InfiniBand IsSM device 65 = /dev/infiniband/issm1 Second InfiniBand IsSM device ... 127 = /dev/infiniband/issm63 63rd InfiniBand IsSM device (the issm device support is in Linus's pending queue right now) Also, the userspace verbs support that is in development but not that close to being ready to merge will use one character device per InfiniBand adapter, so we would want 32 more devices like: 128 = /dev/infiniband/uverbs0 First InfiniBand verbs device 129 = /dev/infiniband/uverbs1 Second InfiniBand verbs device ... 159 = /dev/infiniband/uverbs31 31st InfiniBand verbs device (It's 32 and not 64 like the other devices, because the typical IB adapter has two ports and the umad and issm devices are per port instead of per adapter like uverbs) If you want to add those now, that would be great. However it's fine to wait and see if the verbs support ends up getting merged. Thanks, Roland From libor at topspin.com Wed Jan 26 13:08:29 2005 From: libor at topspin.com (Libor Michalek) Date: Wed, 26 Jan 2005 13:08:29 -0800 Subject: [openib-general] Re: Some CM ib_destroy_cm_id errors? In-Reply-To: <41F7FE5E.6060906@ichips.intel.com>; from mshefty@ichips.intel.com on Wed, Jan 26, 2005 at 12:32:30PM -0800 References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> <20050126110626.B30310@topspin.com> <41F7EEE6.20803@ichips.intel.com> <20050126122246.C30310@topspin.com> <41F7FE5E.6060906@ichips.intel.com> Message-ID: <20050126130829.E30310@topspin.com> On Wed, Jan 26, 2005 at 12:32:30PM -0800, Sean Hefty wrote: > Libor Michalek wrote: > > I'm seeing the following errors in my log file when I try to detroy a > > communications identifier. In the first case it is a cm_id which has > > never been used, just create, a failed cm_send_req(), and a destroy. The > > second case is a listening cm_id which is being destroyed. > > Not sure what is going on. I have tests for the listen cases. I'll > run through those to make sure that they work. (They did when I ran > them last week, but I haven't re-tested with the latest code changes.) > > From the error, it looks like the cm_id->local_id is being set to 0. > Can you verify that you don't clean the cm_id memory after it's allocated? It's comming back from ib_create_cm_id with a local_id of 0, which explains why my REPs are being dropped as well. -Libor From tduffy at sun.com Wed Jan 26 13:18:18 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 26 Jan 2005 13:18:18 -0800 Subject: [Fwd: Re: [openib-general] Re: [Fwd: Re: [Fwd: Re: OpenSM Bugs]]] In-Reply-To: <1106340712.28559.12.camel@duffman> References: <1106333288.4648.1648.camel@localhost.localdomain> <1106340712.28559.12.camel@duffman> Message-ID: <1106774298.29575.38.camel@duffman> On Fri, 2005-01-21 at 12:51 -0800, Tom Duffy wrote: > Solaris has made the decision to separate the management partition from > the data partition. It uses 0xffff for management and 0x8001 for data > (like IPoIB). When using Linux on a Sun managed network, I need to > create a child ibd interface in the 0x8001 partition for it to work > properly. I have been corrected: IBSRM (Sun's subnet manager) uses two Pkeys, but Solaris *should* work with just one pkey. So, just using 0xffff will allow a Solaris node to initialize. The only thing that might hang up Solaris IPoIB is that it requires that the broadcast group be created external to Solaris -- Solaris won't create one, so somebody else has to -- whether that be the SM (opensm) or another node on the fabric (Linux openib). -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From tduffy at sun.com Wed Jan 26 14:14:35 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 26 Jan 2005 14:14:35 -0800 Subject: [openib-general] Re: osm log In-Reply-To: <1106609772.4648.3688.camel@localhost.localdomain> References: <1106340999.28559.17.camel@duffman> <1106345818.4648.1777.camel@localhost.localdomain> <1106352862.28559.51.camel@duffman> <1106361026.4648.1805.camel@localhost.localdomain> <1106609479.4339.14.camel@duffman> <1106609772.4648.3688.camel@localhost.localdomain> Message-ID: <1106777676.29575.50.camel@duffman> [ Sorry for taking a while to get back to you, I have been fire fighting other things ] On Mon, 2005-01-24 at 18:36 -0500, Hal Rosenstock wrote: > LID 3 is returning PortState 0 and PortPhysicalState 0 which is no state > change, which is only valid on a Set not a Get :-( Is that the Solaris > HCA port ? If so, it looks to me like there is a SMA problem to be fixed > first. OK, I was wrong. Solaris is not on LID 3. That is the switch. Solaris is at LID 2. [root at flopteron2 bin]# ./ibnetdiscover # # Topology file: generated on Wed Jan 26 23:04:26 2005 # switchguids=0x6170000000009 Switch 8 "S-0006170000000009" # Agilent and RedSwitch High Performance 8 Port 4x IBA Switch port 0 lid 3 [2] "H-0002c90108cd8890"[1] [1] "H-0002c901097651d0"[2] [7] "H-0002c9010a99e030"[1] hcaguids=0x2c90108cd8890 Hca 2 "H-0002c90108cd8890" # MT23108 InfiniHost Mellanox Technologies [1] "S-0006170000000009"[2] # lid 4 lmc 0 hcaguids=0x2c901097651d0 Hca 2 "H-0002c901097651d0" # MT23108 InfiniHost Mellanox Technologies [2] "S-0006170000000009"[1] # lid 2 lmc 0 hcaguids=0x2c9010a99e030 Hca 2 "H-0002c9010a99e030" # MT25208 InfiniHostEx Mellanox Technologies [1] "S-0006170000000009"[7] # lid 1 lmc 0 [root at flopteron2 bin]# ./smpquery nodeinfo 2 # Node info: Lid 0x2 BaseVers:........................1 ClassVers:.......................1 Type:............................Channel Adapter PortsNum:........................2 SystemGuid:......................0x2c901097651d3 Guid:............................0x2c901097651d0 PortGuid:........................0x2c901097651d2 PartCap:.........................32 DevId:...........................0x5a44 Revision:........................0xa1 LocalPort:.......................2 VendorId:........................0x2c9 [root at flopteron2 bin]# ./smpquery portinfo 2 # Port info: Lid 0x2 port 0 Mkey:............................0x0 GidPrefix:.......................0xfe80000000000000 Lid:.............................0x2 SMLid:...........................0x1 CapMask:.........................(0x500a68): IsTrapSupported IsAutomaticMigrationSupported IsSLMappingSupported IsLedInfoSupported IsSystemImageGUIDsupported IsVendorClassSupported IsCapabilityMaskNoticeSupported DiagCode:........................0x0 MkeyLeasePeriod:.................0 LocalPort:.......................2 LinkWidthEnabled:................1X or 4X LinkWidthSupported:..............1X or 4X LinkWidthActive:.................4X LinkSpeedSupported:..............2.5 Gbs LinkState:.......................Active PhysLinkState:...................LinkUp LinkDownDef:.....................2 ProtectBits:.....................0 LMC:.............................0 LinkSpeedActive:.................2.5 Gbs LinkSpeedEnabled:................2.5 Gbs NieghborMTU:.....................2048 SMSL:............................0 LinkVlCap:.......................VL0-7 InitType:........................0x0 VlHighLimit:.....................0 VlArbHighCap:....................8 VlArbLowCap:.....................8 InitReply:.......................0x0 MtuCap:..........................2048 VlStallCount:....................7 HoqLife:.........................20 OperVls:.........................1 PartEnforceInb:..................0 PartEnforceOutb:.................0 FilterRawInb:....................0 FilterRawOutb:...................0 MkeyViolations:..................0 PkeyViolations:..................0 QkeyViolations:..................0 GuidCap:.........................16 ClientReregister:................0 SubnetTimeout:...................18 RespTimeVal:.....................1 LocalPhysErr:....................8 OverrunErr:......................8 MaxCreditHint:...................0 RoundTrip:.......................0 -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From iod00d at hp.com Wed Jan 26 14:31:01 2005 From: iod00d at hp.com (Grant Grundler) Date: Wed, 26 Jan 2005 14:31:01 -0800 Subject: [openib-general] Re: Re: [PATCH] (fixed) reduce qp locking on cq poll In-Reply-To: <20050126201322.GD12344@mellanox.co.il> References: <20050126135451.GI3791@mellanox.co.il> <523bwo2ka2.fsf@topspin.com> <20050126171902.GC10743@mellanox.co.il> <20050126192810.GA18168@esmail.cup.hp.com> <20050126193749.GH10743@mellanox.co.il> <20050126195502.GD18168@esmail.cup.hp.com> <20050126201322.GD12344@mellanox.co.il> Message-ID: <20050126223101.GA3765@esmail.cup.hp.com> On Wed, Jan 26, 2005 at 10:13:22PM +0200, Michael S. Tsirkin wrote: > Its not the speed of hardware, my problem is the variations. Ok. Your "log comment" was entirely misleading. It should read I can't measure a performance difference becuase of my test results vary by X%. Substitute the right value for X. > > Did you see the difference in IPoIB numbers that I posted > > earlier where I pegged the test processes to the same CPU > > taking interrupts or a different CPU? > > No - link? Sorry - I don't have the URL - just the original mail. I posted this on "Date: Thu, 13 Jan 2005 10:43:34 -0800" and you should be able to find this in the archives. Here is the table again: netperf/irq same, netserver/irq same: 1591 Mbps netperf/irq diff, netserver/irq same: 1565 Mbps netperf/irq same, netserver/irq diff: 1507 Mbps netperf/irq diff, netserver/irq diff: 1510 Mbps (1591-1510)/1510 is about 5%. If you use taskset on your platforms, run a similar table to the above, we could compare and see if ia64 is more sensitive to this than other arches. hth, grant From libor at topspin.com Wed Jan 26 14:30:48 2005 From: libor at topspin.com (Libor Michalek) Date: Wed, 26 Jan 2005 14:30:48 -0800 Subject: [openib-general] Re: Some CM ib_destroy_cm_id errors? In-Reply-To: <20050126130829.E30310@topspin.com>; from libor@topspin.com on Wed, Jan 26, 2005 at 01:08:29PM -0800 References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> <20050126110626.B30310@topspin.com> <41F7EEE6.20803@ichips.intel.com> <20050126122246.C30310@topspin.com> <41F7FE5E.6060906@ichips.intel.com> <20050126130829.E30310@topspin.com> Message-ID: <20050126143048.F30310@topspin.com> On Wed, Jan 26, 2005 at 01:08:29PM -0800, Libor Michalek wrote: > On Wed, Jan 26, 2005 at 12:32:30PM -0800, Sean Hefty wrote: > > Libor Michalek wrote: > > > I'm seeing the following errors in my log file when I try to detroy a > > > communications identifier. In the first case it is a cm_id which has > > > never been used, just create, a failed cm_send_req(), and a destroy. The > > > second case is a listening cm_id which is being destroyed. > > > > Not sure what is going on. I have tests for the listen cases. I'll > > run through those to make sure that they work. (They did when I ran > > them last week, but I haven't re-tested with the latest code changes.) > > > > From the error, it looks like the cm_id->local_id is being set to 0. > > Can you verify that you don't clean the cm_id memory after it's allocated? > > It's comming back from ib_create_cm_id with a local_id of 0, which > explains why my REPs are being dropped as well. Looks like the issue is with the 'struct idr' table. The way that allocation is implemented, the communication identifier local_id needs to be the first element in 'struct ib_cm_id' Because the ib_cm_id structure is cast to an int pointer into which idr_get_new_above() writes the id. I moved both for readability. -Libor Index: infiniband/include/ib_cm.h =================================================================== --- infiniband/include/ib_cm.h (revision 1664) +++ infiniband/include/ib_cm.h (working copy) @@ -279,14 +279,14 @@ struct ib_cm_event *event); struct ib_cm_id { + u32 local_id; + u32 remote_id; ib_cm_handler cm_handler; void *context; u64 service_id; u64 service_mask; enum ib_cm_state state; enum ib_cm_lap_state lap_state; - u32 local_id; - u32 remote_id; }; /** From mshefty at ichips.intel.com Wed Jan 26 15:33:05 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 15:33:05 -0800 Subject: [openib-general] [PATCH] CM: fix recording starting PSN as rq_psn, not sq_psn Message-ID: <20050126153305.58446f3b.mshefty@ichips.intel.com> User is currently responsible for setting the RQ PSN in the QP attributes when transitioning to RTR. signed-off-by: Sean Hefty Index: include/ib_cm.h =================================================================== --- include/ib_cm.h (revision 1654) +++ include/ib_cm.h (working copy) @@ -329,7 +329,7 @@ struct ib_sa_path_rec *primary_path; struct ib_sa_path_rec *alternate_path; u64 service_id; - u32 starting_send_psn; + u32 starting_psn; void *private_data; u8 private_data_len; u8 peer_to_peer; @@ -355,7 +355,7 @@ struct ib_cm_rep_param { struct ib_qp *qp; - u32 starting_send_psn; + u32 starting_psn; void *private_data; u8 private_data_len; u8 responder_resources; Index: core/cm.c =================================================================== --- core/cm.c (revision 1654) +++ core/cm.c (working copy) @@ -111,8 +111,8 @@ u32 local_qpn; u32 remote_qpn; - u32 send_psn; - u32 recv_psn; + u32 sq_psn; + u32 rq_psn; u64 remote_ca_guid; int timeout_ms; u8 max_cm_retries; @@ -708,7 +708,7 @@ param->remote_cm_response_timeout); cm_req_set_qp_type(req_msg, param->qp->qp_type); cm_req_set_flow_ctrl(req_msg, param->flow_control); - cm_req_set_starting_psn(req_msg, cpu_to_be32(param->starting_send_psn)); + cm_req_set_starting_psn(req_msg, cpu_to_be32(param->starting_psn)); cm_req_set_local_resp_timeout(req_msg, param->local_cm_response_timeout); cm_req_set_retry_count(req_msg, param->retry_count); @@ -825,7 +825,7 @@ cm_id_priv->msg->sent_state = IB_CM_REQ_SENT; cm_id_priv->local_qpn = cm_req_get_local_qpn(req_msg); - cm_id_priv->send_psn = cm_req_get_starting_psn(req_msg); + cm_id_priv->rq_psn = cm_req_get_starting_psn(req_msg); cm_id_priv->local_ack_timeout = cm_req_get_primary_local_ack_timeout(req_msg); @@ -1072,7 +1072,7 @@ cm_id_priv->remote_qpn = cm_req_get_local_qpn(req_msg); cm_id_priv->initiator_depth = cm_req_get_resp_res(req_msg); cm_id_priv->responder_resources = cm_req_get_init_depth(req_msg); - cm_id_priv->recv_psn = cm_req_get_starting_psn(req_msg); + cm_id_priv->sq_psn = cm_req_get_starting_psn(req_msg); cm_id_priv->local_ack_timeout = cm_req_get_primary_local_ack_timeout(req_msg); cm_id_priv->retry_count = cm_req_get_retry_count(req_msg); @@ -1099,7 +1099,7 @@ rep_msg->local_comm_id = cm_id_priv->id.local_id; rep_msg->remote_comm_id = cm_id_priv->id.remote_id; cm_rep_set_local_qpn(rep_msg, param->qp->qp_num); - cm_rep_set_starting_psn(rep_msg, param->starting_send_psn); + cm_rep_set_starting_psn(rep_msg, param->starting_psn); rep_msg->resp_resources = param->responder_resources; rep_msg->initiator_depth = param->initiator_depth; cm_rep_set_target_ack_delay(rep_msg, param->target_ack_delay); @@ -1171,8 +1171,7 @@ cm_id_priv->msg = msg; cm_id_priv->initiator_depth = param->initiator_depth; cm_id_priv->responder_resources = param->responder_resources; - cm_id_priv->send_psn = cpu_to_be32(param->starting_send_psn & - 0x00FFFFFF); + cm_id_priv->rq_psn = cm_rep_get_starting_psn(rep_msg); spin_unlock_irqrestore(&cm_id_priv->lock, flags); out: return ret; @@ -1309,7 +1308,7 @@ cm_id_priv->remote_qpn = cm_rep_get_local_qpn(rep_msg); cm_id_priv->initiator_depth = rep_msg->resp_resources; cm_id_priv->responder_resources = rep_msg->initiator_depth; - cm_id_priv->recv_psn = cm_rep_get_starting_psn(rep_msg); + cm_id_priv->sq_psn = cm_rep_get_starting_psn(rep_msg); cm_id_priv->rnr_retry_count = cm_rep_get_rnr_retry_count(rep_msg); /* todo: handle peer_to_peer @@ -2593,7 +2592,7 @@ IB_QP_MIN_RNR_TIMER; qp_attr->ah_attr = cm_id_priv->av.ah_attr; qp_attr->dest_qp_num = be32_to_cpu(cm_id_priv->remote_qpn); - qp_attr->rq_psn = be32_to_cpu(cm_id_priv->recv_psn); + qp_attr->rq_psn = be32_to_cpu(cm_id_priv->rq_psn); qp_attr->max_rd_atomic = cm_id_priv->initiator_depth; qp_attr->min_rnr_timer = 0; if (cm_id_priv->alt_av.ah_attr.dlid) { @@ -2630,7 +2629,7 @@ qp_attr->timeout = cm_id_priv->local_ack_timeout; qp_attr->retry_cnt = cm_id_priv->retry_count; qp_attr->rnr_retry = cm_id_priv->rnr_retry_count; - qp_attr->sq_psn = cm_id_priv->send_psn; + qp_attr->sq_psn = cm_id_priv->sq_psn; qp_attr->max_dest_rd_atomic = cm_id_priv->responder_resources; if (cm_id_priv->alt_av.ah_attr.dlid) { *qp_attr_mask |= IB_QP_PATH_MIG_STATE; From mshefty at ichips.intel.com Wed Jan 26 15:45:00 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 15:45:00 -0800 Subject: [openib-general] Re: Incoorect cm_find_port result. In-Reply-To: <20050126124921.D30310@topspin.com> References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> <20050126110626.B30310@topspin.com> <41F7EEE6.20803@ichips.intel.com> <20050126122246.C30310@topspin.com> <41F7FE5E.6060906@ichips.intel.com> <20050126124921.D30310@topspin.com> Message-ID: <20050126154500.5a8e4812.mshefty@ichips.intel.com> On Wed, 26 Jan 2005 12:49:21 -0800 Libor Michalek wrote: > Sean, > > There is an inconsistency between the port returned by cm_find_port() > and the port needed for ib_find_cached_pkey() > > cm_find_port() is using base 0 port numbering, while > ib_find_cached_pkey() uses base 1 port numbering. If I make this change > ib_send_cm_req() appears to work correctly: I'm wondering if the issue isn't in ib_find_cached_gid instead. Can you retest using this patch in place of yours? Thanks, Sean Index: core/cache.c =================================================================== --- core/cache.c (revision 1665) +++ core/cache.c (working copy) @@ -112,7 +112,7 @@ int ib_find_cached_gid(struct ib_device cache = device->cache.gid_cache[p]; for (i = 0; i < cache->table_len; ++i) { if (!memcmp(gid, &cache->table[i], sizeof *gid)) { - *port_num = p; + *port_num = p + start_port(device); if (index) *index = i; ret = 0; From mshefty at ichips.intel.com Wed Jan 26 15:55:07 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 15:55:07 -0800 Subject: [openib-general] Re: Some CM ib_destroy_cm_id errors? In-Reply-To: <20050126143048.F30310@topspin.com> References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> <20050126110626.B30310@topspin.com> <41F7EEE6.20803@ichips.intel.com> <20050126122246.C30310@topspin.com> <41F7FE5E.6060906@ichips.intel.com> <20050126130829.E30310@topspin.com> <20050126143048.F30310@topspin.com> Message-ID: <20050126155507.661cb870.mshefty@ichips.intel.com> On Wed, 26 Jan 2005 14:30:48 -0800 Libor Michalek wrote: > > It's comming back from ib_create_cm_id with a local_id of 0, which > > explains why my REPs are being dropped as well. > > Looks like the issue is with the 'struct idr' table. The way that > allocation is implemented, the communication identifier local_id > needs to be the first element in 'struct ib_cm_id' Because the > ib_cm_id structure is cast to an int pointer into which idr_get_new_above() > writes the id. Thanks for looking into this more. I'm not sure how this worked before. Were these just warnings in the log file? I think a slightly better solution is to set the local_id directly, rather than relying on it being the first entry in the cm_id. Can you try with this patch in place of yours? Thanks, Sean Index: core/cm.c =================================================================== --- core/cm.c (revision 1665) +++ core/cm.c (working copy) @@ -280,7 +280,7 @@ static int cm_alloc_id(struct cm_id_priv do { spin_lock_irqsave(&cm.lock, flags); ret = idr_get_new_above(&cm.local_id_table, cm_id_priv, 1, - (int *) &cm_id_priv->id); + (int *) &cm_id_priv->id.local_id); spin_unlock_irqrestore(&cm.lock, flags); } while( (ret == -EAGAIN) && idr_pre_get(&cm.local_id_table, GFP_KERNEL) ); return ret; From libor at topspin.com Wed Jan 26 15:07:52 2005 From: libor at topspin.com (Libor Michalek) Date: Wed, 26 Jan 2005 15:07:52 -0800 Subject: [openib-general] Re: Incorrect cm_find_port result. In-Reply-To: <20050126154500.5a8e4812.mshefty@ichips.intel.com>; from mshefty@ichips.intel.com on Wed, Jan 26, 2005 at 03:45:00PM -0800 References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> <20050126110626.B30310@topspin.com> <41F7EEE6.20803@ichips.intel.com> <20050126122246.C30310@topspin.com> <41F7FE5E.6060906@ichips.intel.com> <20050126124921.D30310@topspin.com> <20050126154500.5a8e4812.mshefty@ichips.intel.com> Message-ID: <20050126150752.G30310@topspin.com> On Wed, Jan 26, 2005 at 03:45:00PM -0800, Sean Hefty wrote: > On Wed, 26 Jan 2005 12:49:21 -0800 > Libor Michalek wrote: > > > Sean, > > > > There is an inconsistency between the port returned by cm_find_port() > > and the port needed for ib_find_cached_pkey() > > > > cm_find_port() is using base 0 port numbering, while > > ib_find_cached_pkey() uses base 1 port numbering. If I make this change > > ib_send_cm_req() appears to work correctly: > > I'm wondering if the issue isn't in ib_find_cached_gid instead. Can you > retest using this patch in place of yours? I took a look at the actual port number being passed to cached pkey, port->port_num, and in the unmodified code the result from cm_find_port() has port_num set as 0, which seems incorrect since port numbering should be 1 based, right? -Libor From mshefty at ichips.intel.com Wed Jan 26 15:17:38 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 15:17:38 -0800 Subject: [openib-general] Re: Incorrect cm_find_port result. In-Reply-To: <20050126150752.G30310@topspin.com> References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> <20050126110626.B30310@topspin.com> <41F7EEE6.20803@ichips.intel.com> <20050126122246.C30310@topspin.com> <41F7FE5E.6060906@ichips.intel.com> <20050126124921.D30310@topspin.com> <20050126154500.5a8e4812.mshefty@ichips.intel.com> <20050126150752.G30310@topspin.com> Message-ID: <41F82512.1080302@ichips.intel.com> Libor Michalek wrote: > I took a look at the actual port number being passed to cached pkey, > port->port_num, and in the unmodified code the result from cm_find_port() > has port_num set as 0, which seems incorrect since port numbering should > be 1 based, right? The cached functions are supposed to be 1 based, so that is correct. If you walk through the following functions: cm_add_one: records port_num as 1 based cm_init_av: calls cm_find_port cm_find_port: calls ib_find_cached_gid ib_find_cached_gid: returns 0 based port_num cm_find_port: uses returned port_num - 1 as an index into an array. This should walk off into oblivion if port_num is 0. (I should probably check that the returned port_num is > 0.) ib_find_cached_pkey: uses the port returned from cm_find_port, which is off in space somewhere At least that's what I think is happening. - Sean From tduffy at sun.com Wed Jan 26 15:38:15 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 26 Jan 2005 15:38:15 -0800 Subject: [openib-general] [Fwd: Re: [openib-commits] r1658 - gen2/trunk/src/linux-kernel/infiniband/hw/mthca] Message-ID: <1106782695.8018.5.camel@duffman> I don't know how many people are on the commits list. -tduffy -------------- next part -------------- An embedded message was scrubbed... From: Grant Grundler Subject: Re: [openib-commits] r1658 - gen2/trunk/src/linux-kernel/infiniband/hw/mthca Date: Wed, 26 Jan 2005 14:36:17 -0800 Size: 4072 URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From libor at topspin.com Wed Jan 26 15:40:28 2005 From: libor at topspin.com (Libor Michalek) Date: Wed, 26 Jan 2005 15:40:28 -0800 Subject: [openib-general] Re: Some CM ib_destroy_cm_id errors? In-Reply-To: <20050126155507.661cb870.mshefty@ichips.intel.com>; from mshefty@ichips.intel.com on Wed, Jan 26, 2005 at 03:55:07PM -0800 References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> <20050126110626.B30310@topspin.com> <41F7EEE6.20803@ichips.intel.com> <20050126122246.C30310@topspin.com> <41F7FE5E.6060906@ichips.intel.com> <20050126130829.E30310@topspin.com> <20050126143048.F30310@topspin.com> <20050126155507.661cb870.mshefty@ichips.intel.com> Message-ID: <20050126154028.H30310@topspin.com> On Wed, Jan 26, 2005 at 03:55:07PM -0800, Sean Hefty wrote: > On Wed, 26 Jan 2005 14:30:48 -0800 > Libor Michalek wrote: > > > > It's comming back from ib_create_cm_id with a local_id of 0, which > > > explains why my REPs are being dropped as well. > > > > Looks like the issue is with the 'struct idr' table. The way that > > allocation is implemented, the communication identifier local_id > > needs to be the first element in 'struct ib_cm_id' Because the > > ib_cm_id structure is cast to an int pointer into which idr_get_new_above() > > writes the id. > > Thanks for looking into this more. I'm not sure how this worked before. > Were these just warnings in the log file? > > I think a slightly better solution is to set the local_id directly, > rather than relying on it being the first entry in the cm_id. Can you > try with this patch in place of yours? Thanks, this works as well and makes more sense as a fix. -Libor From tduffy at sun.com Wed Jan 26 15:40:52 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 26 Jan 2005 15:40:52 -0800 Subject: [openib-general] openSM failed to run with loading shared libraries error In-Reply-To: <20050126192005.79876.qmail@web51007.mail.yahoo.com> References: <20050126192005.79876.qmail@web51007.mail.yahoo.com> Message-ID: <1106782852.8018.8.camel@duffman> On Wed, 2005-01-26 at 11:20 -0800, vinh nguyen wrote: > I'm trying to build openib stack (gen 1) on kernel > 2.6.7. > Any ideas? > Thanks for the help in advance. Any reason you are not using gen2 with the latest opensm for that? There have been many many many bugfixes and updates since then. gen1 is essentially EOL. I doubt you are going to get much help on this older code. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From roland at topspin.com Wed Jan 26 15:46:30 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 26 Jan 2005 15:46:30 -0800 Subject: [openib-general] [PATCH] (fixed) cqe lookup speedup In-Reply-To: <20050126194458.GB18168@esmail.cup.hp.com> (Grant Grundler's message of "Wed, 26 Jan 2005 11:44:58 -0800") References: <20050126131324.GF3791@mellanox.co.il> <20050126145218.GA4878@mellanox.co.il> <20050126194458.GB18168@esmail.cup.hp.com> Message-ID: <524qh3zrc9.fsf@topspin.com> Grant> this could be one line: struct mthca_cqe *cqe = get_cqe(cq, i); Yes, makes sense as a cleanup. Grant> This code chunk is "dead" code. It starts with "if (0)". Grant> Can it just be deleted? It's actually debugging code -- it can be enabled easily by changing to if (1). Grant> BTW, I dislike use of "is_send" to branch the code path Grant> several times later instead of just having two different Grant> code paths that call the same in-line functions. Interested Grant> in a patch to change this? Let me merge what I have pending and then you can hack away... - R. From libor at topspin.com Wed Jan 26 16:06:03 2005 From: libor at topspin.com (Libor Michalek) Date: Wed, 26 Jan 2005 16:06:03 -0800 Subject: [openib-general] [PATCH] CM: new call to return QP attributes for use modifying the QP In-Reply-To: <20050126023849.02da3323.mshefty@ichips.intel.com>; from mshefty@ichips.intel.com on Wed, Jan 26, 2005 at 02:38:49AM -0800 References: <20050126023849.02da3323.mshefty@ichips.intel.com> Message-ID: <20050126160603.I30310@topspin.com> On Wed, Jan 26, 2005 at 02:38:49AM -0800, Sean Hefty wrote: > This patch implements the new CM call to return a default set of QP > attributes that can be used to call ib_modify_qp. The code was > restructured in areas as a result of saving the necessary data. > > I have test code that is nearly complete that will exercise the CM APIs > and can be used as sample code. It runs in the kernel only, but shouldn't > be too difficult to port to user-mode. > +static int cm_init_qp_rtr_attr(struct cm_id_private *cm_id_priv, > + struct ib_qp_attr *qp_attr, > + int *qp_attr_mask) > +{ > + unsigned long flags; > + int ret; > + > + spin_lock_irqsave(&cm_id_priv->lock, flags); > + switch (cm_id_priv->id.state) { > + case IB_CM_REQ_RCVD: > + case IB_CM_MRA_REQ_SENT: > + case IB_CM_REP_RCVD: > + case IB_CM_MRA_REP_SENT: > + case IB_CM_REP_SENT: > + case IB_CM_MRA_REP_RCVD: > + case IB_CM_ESTABLISHED: > + *qp_attr_mask = IB_QP_STATE | IB_QP_AV | IB_QP_DEST_QPN | > + IB_QP_RQ_PSN | IB_QP_MAX_QP_RD_ATOMIC | > + IB_QP_MIN_RNR_TIMER; > + qp_attr->ah_attr = cm_id_priv->av.ah_attr; > + qp_attr->dest_qp_num = be32_to_cpu(cm_id_priv->remote_qpn); > + qp_attr->rq_psn = be32_to_cpu(cm_id_priv->recv_psn); > + qp_attr->max_rd_atomic = cm_id_priv->initiator_depth; > + qp_attr->min_rnr_timer = 0; > + if (cm_id_priv->alt_av.ah_attr.dlid) { > + *qp_attr_mask |= IB_QP_ALT_PATH; > + qp_attr->alt_ah_attr = cm_id_priv->alt_av.ah_attr; > + } > + ret = 0; > + break; > + default: > + ret = -EINVAL; > + break; > + } > + spin_unlock_irqrestore(&cm_id_priv->lock, flags); > + return ret; > +} Sean, The initiator_depth field can translate to either qp_attr->max_rd_atomic or qp_attr->max_dest_rd_atomic, depending on whether the field was saved as the result of sending or receiving a REQ/REP respectively. So you'll probably want {remote,local}_initiator_depth. Also for RTR don't you need the PATH_MTU? -Libor From mshefty at ichips.intel.com Wed Jan 26 16:07:32 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 16:07:32 -0800 Subject: [openib-general] Re: Some CM ib_destroy_cm_id errors? In-Reply-To: <20050126154028.H30310@topspin.com> References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> <20050126110626.B30310@topspin.com> <41F7EEE6.20803@ichips.intel.com> <20050126122246.C30310@topspin.com> <41F7FE5E.6060906@ichips.intel.com> <20050126130829.E30310@topspin.com> <20050126143048.F30310@topspin.com> <20050126155507.661cb870.mshefty@ichips.intel.com> <20050126154028.H30310@topspin.com> Message-ID: <41F830C4.9040809@ichips.intel.com> Libor Michalek wrote: > Thanks, this works as well and makes more sense as a fix. I've committed this change. Thanks. From libor at topspin.com Wed Jan 26 16:18:48 2005 From: libor at topspin.com (Libor Michalek) Date: Wed, 26 Jan 2005 16:18:48 -0800 Subject: [openib-general] [PATCH] CM: new call to return QP attributes for use modifying the QP In-Reply-To: <20050126160603.I30310@topspin.com>; from libor@topspin.com on Wed, Jan 26, 2005 at 04:06:03PM -0800 References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126160603.I30310@topspin.com> Message-ID: <20050126161848.J30310@topspin.com> On Wed, Jan 26, 2005 at 04:06:03PM -0800, Libor Michalek wrote: > > Sean, > > The initiator_depth field can translate to either qp_attr->max_rd_atomic > or qp_attr->max_dest_rd_atomic, depending on whether the field was saved > as the result of sending or receiving a REQ/REP respectively. So you'll > probably want {remote,local}_initiator_depth. Sorry, I'm confusing myself on this one. initiator_depth maps to max_rd_atomic responder_resources maps to max_dest_rd_atomic. -Libor From mshefty at ichips.intel.com Wed Jan 26 16:22:10 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 16:22:10 -0800 Subject: [openib-general] [PATCH] CM: new call to return QP attributes for use modifying the QP In-Reply-To: <20050126160603.I30310@topspin.com> References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126160603.I30310@topspin.com> Message-ID: <41F83432.7080302@ichips.intel.com> Libor Michalek wrote: > The initiator_depth field can translate to either qp_attr->max_rd_atomic > or qp_attr->max_dest_rd_atomic, depending on whether the field was saved > as the result of sending or receiving a REQ/REP respectively. So you'll > probably want {remote,local}_initiator_depth. For a REQ, the sender saves the initiator_depth as initiator_depth. The receiver saves it as responder_resources. For a REP, the sender saves the initiator_depth as initiator_depth. The receiver saves it as responder_resources. (At least that was my intention.) > Also for RTR don't you need the PATH_MTU? It's definitely missing from somewhere. I'll add this in. Thanks for the comments. - Sean From mshefty at ichips.intel.com Wed Jan 26 16:51:29 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 16:51:29 -0800 Subject: [openib-general] [PATCH] CM: new call to return QP attributes for use modifying the QP In-Reply-To: <20050126161848.J30310@topspin.com> References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126160603.I30310@topspin.com> <20050126161848.J30310@topspin.com> Message-ID: <41F83B11.9000708@ichips.intel.com> Libor Michalek wrote: > On Wed, Jan 26, 2005 at 04:06:03PM -0800, Libor Michalek wrote: > >>Sean, >> >> The initiator_depth field can translate to either qp_attr->max_rd_atomic >>or qp_attr->max_dest_rd_atomic, depending on whether the field was saved >>as the result of sending or receiving a REQ/REP respectively. So you'll >>probably want {remote,local}_initiator_depth. > > > Sorry, I'm confusing myself on this one. > > initiator_depth maps to max_rd_atomic > responder_resources maps to max_dest_rd_atomic. Okay - I have these mappings switched. Thanks. - Sean From halr at voltaire.com Wed Jan 26 16:58:39 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 26 Jan 2005 19:58:39 -0500 Subject: [openib-general] Re: osm log In-Reply-To: <1106777676.29575.50.camel@duffman> References: <1106340999.28559.17.camel@duffman> <1106345818.4648.1777.camel@localhost.localdomain> <1106352862.28559.51.camel@duffman> <1106361026.4648.1805.camel@localhost.localdomain> <1106609479.4339.14.camel@duffman> <1106609772.4648.3688.camel@localhost.localdomain> <1106777676.29575.50.camel@duffman> Message-ID: <1106787475.4648.8903.camel@localhost.localdomain> On Wed, 2005-01-26 at 17:14, Tom Duffy wrote: > [ Sorry for taking a while to get back to you, I have been fire fighting > other things ] > > On Mon, 2005-01-24 at 18:36 -0500, Hal Rosenstock wrote: > > LID 3 is returning PortState 0 and PortPhysicalState 0 which is no state > > change, which is only valid on a Set not a Get :-( Is that the Solaris > > HCA port ? If so, it looks to me like there is a SMA problem to be fixed > > first. > > OK, I was wrong. Solaris is not on LID 3. That is the switch. And port state and port physical state are not valid on base switch port 0 which explains their lack of meaning. > Solaris is at LID 2. Hmm. Solaris IB port is active yet I don't recall seeing it join any MC groups so we're back to square 1 in terms of what is going on. The broadcast group (and other groups) appear to be created. Perhaps this is an ordering thing where the Solaris machine is up before the Linux ones which would create the groups but I'm just guessing. -- Hal From mshefty at ichips.intel.com Wed Jan 26 17:06:54 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 17:06:54 -0800 Subject: [openib-general] Re: Incoorect cm_find_port result. In-Reply-To: <20050126154500.5a8e4812.mshefty@ichips.intel.com> References: <20050126023849.02da3323.mshefty@ichips.intel.com> <20050126104807.A30310@topspin.com> <41F7E745.1070203@ichips.intel.com> <20050126110626.B30310@topspin.com> <41F7EEE6.20803@ichips.intel.com> <20050126122246.C30310@topspin.com> <41F7FE5E.6060906@ichips.intel.com> <20050126124921.D30310@topspin.com> <20050126154500.5a8e4812.mshefty@ichips.intel.com> Message-ID: <41F83EAE.6070808@ichips.intel.com> Sean Hefty wrote: > Index: core/cache.c > =================================================================== > --- core/cache.c (revision 1665) > +++ core/cache.c (working copy) > @@ -112,7 +112,7 @@ int ib_find_cached_gid(struct ib_device > cache = device->cache.gid_cache[p]; > for (i = 0; i < cache->table_len; ++i) { > if (!memcmp(gid, &cache->table[i], sizeof *gid)) { > - *port_num = p; > + *port_num = p + start_port(device); > if (index) > *index = i; > ret = 0; I've committed this change, since the returned port number does not match that used by the device. - Sean From mshefty at ichips.intel.com Wed Jan 26 18:07:35 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 18:07:35 -0800 Subject: [openib-general] [PATCH] CM: fix setting default QP attributes Message-ID: <20050126180735.44723d97.mshefty@ichips.intel.com> This should add in setting the path MTU to the default QP attributes. It also reverses setting the responder_resources and initiator_depth to match with the correct QP transition. signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1666) +++ core/cm.c (working copy) @@ -115,6 +115,7 @@ struct cm_id_private { u32 rq_psn; u64 remote_ca_guid; int timeout_ms; + enum ib_mtu path_mtu; u8 max_cm_retries; u8 passive; u8 peer_to_peer; @@ -765,7 +766,8 @@ static inline int cm_validate_req_param( return -EINVAL; if (param->alternate_path && - param->alternate_path->pkey != param->primary_path->pkey) + (param->alternate_path->pkey != param->primary_path->pkey || + param->alternate_path->mtu != param->primary_path->mtu)) return -EINVAL; return 0; @@ -814,6 +816,7 @@ int ib_send_cm_req(struct ib_cm_id *cm_i cm_id_priv->initiator_depth = param->initiator_depth; cm_id_priv->responder_resources = param->responder_resources; cm_id_priv->retry_count = param->retry_count; + cm_id_priv->path_mtu = param->primary_path->mtu; ret = cm_alloc_msg(cm_id_priv, &cm_id_priv->msg); if (ret) @@ -882,7 +885,7 @@ static inline void cm_format_paths_from_ primary_path->pkey = req_msg->pkey; primary_path->sl = cm_req_get_primary_sl(req_msg); primary_path->mtu_selector = IB_SA_EQ; - primary_path->mtu = cm_req_get_mtu(req_msg); + primary_path->mtu = cm_req_get_path_mtu(req_msg); primary_path->rate_selector = IB_SA_EQ; primary_path->rate = cm_req_get_primary_packet_rate(req_msg); primary_path->packet_life_time_selector = IB_SA_EQ; @@ -902,7 +905,7 @@ static inline void cm_format_paths_from_ alt_path->pkey = req_msg->pkey; alt_path->sl = cm_req_get_alt_sl(req_msg); alt_path->mtu_selector = IB_SA_EQ; - alt_path->mtu = cm_req_get_mtu(req_msg); + alt_path->mtu = cm_req_get_path_mtu(req_msg); alt_path->rate_selector = IB_SA_EQ; alt_path->rate = cm_req_get_alt_packet_rate(req_msg); alt_path->packet_life_time_selector = IB_SA_EQ; @@ -1072,6 +1075,7 @@ static int cm_req_handler(struct cm_work cm_id_priv->remote_qpn = cm_req_get_local_qpn(req_msg); cm_id_priv->initiator_depth = cm_req_get_resp_res(req_msg); cm_id_priv->responder_resources = cm_req_get_init_depth(req_msg); + cm_id_priv->path_mtu = cm_req_get_path_mtu(req_msg); cm_id_priv->sq_psn = cm_req_get_starting_psn(req_msg); cm_id_priv->local_ack_timeout = cm_req_get_primary_local_ack_timeout(req_msg); @@ -2587,13 +2591,14 @@ static int cm_init_qp_rtr_attr(struct cm case IB_CM_REP_SENT: case IB_CM_MRA_REP_RCVD: case IB_CM_ESTABLISHED: - *qp_attr_mask = IB_QP_STATE | IB_QP_AV | IB_QP_DEST_QPN | - IB_QP_RQ_PSN | IB_QP_MAX_QP_RD_ATOMIC | - IB_QP_MIN_RNR_TIMER; + *qp_attr_mask = IB_QP_STATE | IB_QP_AV | IB_QP_PATH_MTU | + IB_QP_DEST_QPN | IB_QP_RQ_PSN | + IB_QP_MAX_DEST_RD_ATOMIC | IB_QP_MIN_RNR_TIMER; qp_attr->ah_attr = cm_id_priv->av.ah_attr; + qp_attr->path_mtu = cm_id_priv->path_mtu; qp_attr->dest_qp_num = be32_to_cpu(cm_id_priv->remote_qpn); qp_attr->rq_psn = be32_to_cpu(cm_id_priv->rq_psn); - qp_attr->max_rd_atomic = cm_id_priv->initiator_depth; + qp_attr->max_dest_rd_atomic = cm_id_priv->responder_resources; qp_attr->min_rnr_timer = 0; if (cm_id_priv->alt_av.ah_attr.dlid) { *qp_attr_mask |= IB_QP_ALT_PATH; @@ -2625,15 +2630,15 @@ static int cm_init_qp_rts_attr(struct cm case IB_CM_ESTABLISHED: *qp_attr_mask = IB_QP_STATE | IB_QP_TIMEOUT | IB_QP_RETRY_CNT | IB_QP_RNR_RETRY | IB_QP_SQ_PSN | - IB_QP_MAX_DEST_RD_ATOMIC; + IB_QP_MAX_QP_RD_ATOMIC; qp_attr->timeout = cm_id_priv->local_ack_timeout; qp_attr->retry_cnt = cm_id_priv->retry_count; qp_attr->rnr_retry = cm_id_priv->rnr_retry_count; qp_attr->sq_psn = cm_id_priv->sq_psn; - qp_attr->max_dest_rd_atomic = cm_id_priv->responder_resources; + qp_attr->max_rd_atomic = cm_id_priv->initiator_depth; if (cm_id_priv->alt_av.ah_attr.dlid) { *qp_attr_mask |= IB_QP_PATH_MIG_STATE; - qp_attr->path_mig_state = IB_MIG_ARMED; + qp_attr->path_mig_state = IB_MIG_REARM; } ret = 0; break; Index: core/cm_msgs.h =================================================================== --- core/cm_msgs.h (revision 1665) +++ core/cm_msgs.h (working copy) @@ -244,7 +244,7 @@ static inline void cm_req_set_retry_coun (be32_to_cpu(req_msg->offset44) & 0xFFFFFFF8)); } -static inline u8 cm_req_get_mtu(struct cm_req_msg *req_msg) +static inline u8 cm_req_get_path_mtu(struct cm_req_msg *req_msg) { return req_msg->offset50 >> 4; } From libor at topspin.com Wed Jan 26 18:06:09 2005 From: libor at topspin.com (Libor Michalek) Date: Wed, 26 Jan 2005 18:06:09 -0800 Subject: [openib-general] CM oops in cm_free_msg() In-Reply-To: <20050126180735.44723d97.mshefty@ichips.intel.com>; from mshefty@ichips.intel.com on Wed, Jan 26, 2005 at 06:07:35PM -0800 References: <20050126180735.44723d97.mshefty@ichips.intel.com> Message-ID: <20050126180609.K30310@topspin.com> Sean, I'm seeing the following Oops on both passive and active connects. On active side it's around theend of the REP callback, or the sending of the RTU. On the passive side it appears to be around the sending of the REP or receiving of the RTU. On another note, calling ib_cm_establish from CQ callback context, I would expect to see a callback from the CM that I've entered ESTABLISHED state, but looking at the code, that does not appear to be the case. Is this something that wasn't intended, or just isn't there yet? -Libor Oops: 0000 [#1] SMP Modules linked in: ib_sdp ib_ipoib ib_cm ib_umad ib_sa ib_mthca ib_mad ib_core ipv6 parport_pc lp parport autofs4 e1000 af_packet ide_cd cdrom sg microcode dm_mod uhci_hcd usbcore video thermal processor fan button battery ac ext3 jbd CPU: 3 EIP: 0060:[] Tainted: GF VLI EFLAGS: 00010292 (2.6.10) EIP is at ib_destroy_ah+0x1/0x20 [ib_core] eax: 00000292 ebx: f536de24 ecx: f5bd9c00 edx: 00000000 esi: f67ba980 edi: f5bdbf14 ebp: 00000292 esp: f5bdbec0 ds: 007b es: 007b ss: 0068 Process ib_mad1 (pid: 3744, threadinfo=f5bda000 task=f5b75020) Stack: f536de24 f8aaa0f1 f5bdbf14 f5bd9c80 f8a63452 00000286 f5bd9c80 f6d432fc 00000000 f5bd9c80 f8a6354a 00000001 00000282 f6d432f4 f5bdbf14 f5fe0e00 f56da800 f6d43200 f5bdbf14 00000212 f8a63729 f536de24 00000000 00000000 Call Trace: [] cm_free_msg+0x11/0x50 [ib_cm] [] ib_mad_complete_send_wr+0xf2/0x140 [ib_mad] [] ib_mad_send_done_handler+0xaa/0x110 [ib_mad] [] ib_mad_completion_handler+0x59/0x80 [ib_mad] [] remove_wait_queue+0x1a/0x50 [] worker_thread+0x1bd/0x260 [] ib_mad_completion_handler+0x0/0x80 [ib_mad] [] default_wake_function+0x0/0x10 [] default_wake_function+0x0/0x10 [] worker_thread+0x0/0x260 [] kthread+0x9c/0xb0 [] kthread+0x0/0xb0 [] kernel_thread_helper+0x5/0x18 Code: 89 d8 ff d1 eb f8 8d 74 26 00 53 89 c3 8b 00 8b 88 ac 00 00 00 85 c9 75 07 b8 da ff ff ff 5b c3 89 d8 ff d1 eb f8 8d 74 26 00 53 <8b> 10 8b 58 04 ff 92 b0 00 00 00 85 c0 75 04 f0 ff 4b 04 5b c3 From roland at topspin.com Wed Jan 26 19:44:27 2005 From: roland at topspin.com (Roland Dreier) Date: Wed, 26 Jan 2005 19:44:27 -0800 Subject: [openib-general] Re: [PATCH] (final) reduce qp locking on cq poll In-Reply-To: <20050126194401.GA12282@mellanox.co.il> (Michael S. Tsirkin's message of "Wed, 26 Jan 2005 21:44:01 +0200") References: <20050126135451.GI3791@mellanox.co.il> <523bwo2ka2.fsf@topspin.com> <20050126175005.GE10743@mellanox.co.il> <20050126194401.GA12282@mellanox.co.il> Message-ID: <52zmyvy1r8.fsf@topspin.com> thanks, applied. From tduffy at sun.com Wed Jan 26 20:08:06 2005 From: tduffy at sun.com (Tom Duffy) Date: Wed, 26 Jan 2005 20:08:06 -0800 Subject: [openib-general] openSM failed to run with loading shared libraries error In-Reply-To: <20050127040344.58410.qmail@web51003.mail.yahoo.com> References: <20050127040344.58410.qmail@web51003.mail.yahoo.com> Message-ID: <1106798886.30541.11.camel@duffman> [ Please keep discussion on list ] On Wed, 2005-01-26 at 20:03 -0800, vinh nguyen wrote: > Hi Tom, > > The reason for gen1 is that it has SDP and SRP support. Fair enough. Although gen2 should get SDP real soon now. > Is anyone using gen1 had this problem? I honestly don't know. The only thing I can think is that maybe you moved the binary (or library) from where it was linked against originally. What does ldd say? -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From sean.hefty at intel.com Wed Jan 26 20:49:27 2005 From: sean.hefty at intel.com (Sean Hefty) Date: Wed, 26 Jan 2005 20:49:27 -0800 Subject: [openib-general] CM oops in cm_free_msg() In-Reply-To: <20050126180609.K30310@topspin.com> Message-ID: > I'm seeing the following Oops on both passive and active connects. >On active side it's around theend of the REP callback, or the sending >of the RTU. On the passive side it appears to be around the sending >of the REP or receiving of the RTU. Thanks for the feedback. I'll take a look at the oops first off in the morning. > On another note, calling ib_cm_establish from CQ callback context, I >would expect to see a callback from the CM that I've entered ESTABLISHED >state, but looking at the code, that does not appear to be the case. Is >this something that wasn't intended, or just isn't there yet? This wasn't intended. The assumption being that the user knows that the connection was already established. I don't think that it would be too hard to add. (The only issue that jumps to mind at the moment could be a potential race condition processing a DREQ.) Is this something that you need? Would you need the callback from one of the CM's threads? - Sean From eitan at mellanox.co.il Wed Jan 26 21:44:12 2005 From: eitan at mellanox.co.il (Eitan Zahavi) Date: Thu, 27 Jan 2005 07:44:12 +0200 Subject: [openib-general] openSM failed to run with loading shared lib raries error Message-ID: <506C3D7B14CDD411A52C00025558DED6047EECE8@mtlex01.yok.mtl.com> Hi You need to export LD_LIBRARY_PATH=$ LD_LIBRARY_PATH : Eitan Zahavi Design Technology Director Mellanox Technologies LTD Tel:+972-4-9097208 Fax:+972-4-9593245 P.O. Box 586 Yokneam 20692 ISRAEL -----Original Message----- From: vinh nguyen [mailto:vnguyen_777 at yahoo.com] Sent: Wednesday, January 26, 2005 9:20 PM To: openib-general at openib.org Subject: [openib-general] openSM failed to run with loading shared libraries error Hi everyone, I'm trying to build openib stack (gen 1) on kernel 2.6.7. I've completed the steps in README.kernel-build and README.user-build. I also built opensm according the instructions in README.opensm-build. Variables TSHOME is pointing to directory containing ts_ib_useraccess.h and MTHOME is pointing to mellanox-hca/mthome/include. When I tried to run /usr/loca/openib/src/userspace/osm/opensm/opensm I get this error: opensm: error while loading shared libraries: libcomplib.so: cannot open shared object file: No such file or directory The file seems to be there: [root at infiniband3 opensm]# ls -l libcomplib.so lrwxr-xr-x 1 root root 17 Jan 26 14:06 libcomplib.so -> libcomplib.so.0.0 Any ideas? Thanks for the help in advance. Vinh Nguyen __________________________________ Do you Yahoo!? Yahoo! Mail - Helps protect you from nasty viruses. http://promotions.yahoo.com/new_mail _______________________________________________ openib-general mailing list openib-general at openib.org http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general -------------- next part -------------- An HTML attachment was scrubbed... URL: From davem at davemloft.net Wed Jan 26 22:32:47 2005 From: davem at davemloft.net (David S. Miller) Date: Wed, 26 Jan 2005 22:32:47 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050126132512.GA18220@xi.wantstofly.org> References: <20050103171227.GD7370@esmail.cup.hp.com> <1104812294.1085.53.camel@jzny.localdomain> <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> <20050120085611.33f9485e@dxpl.pdx.osdl.net> <20050121105452.GA12988@xi.wantstofly.org> <20050125222705.1ee878fd.davem@davemloft.net> <20050126132512.GA18220@xi.wantstofly.org> Message-ID: <20050126223247.3e4643cc.davem@davemloft.net> On Wed, 26 Jan 2005 14:25:12 +0100 Lennert Buytenhek wrote: > I've thought about this a bit, and the only sane way of doing recursion > detection that doesn't involve 'struct net_device' would be to keep track > of the recursion depth (perhaps per-CPU as you suggest) and tossing the > packet when it exceeds some random value, right? Yes, that's the idea. > To reproduce the current behaviour more closely you'd have to keep a > small per-CPU array of 'struct net_device *' pointers as a kind of > recursion stack, and toss the packet when you hit a net_device that's > already on the list. But that seems like slight overkill. Indeed. From ak at suse.de Wed Jan 26 23:16:45 2005 From: ak at suse.de (Andi Kleen) Date: Thu, 27 Jan 2005 08:16:45 +0100 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050126223247.3e4643cc.davem@davemloft.net> References: <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> <20050120085611.33f9485e@dxpl.pdx.osdl.net> <20050121105452.GA12988@xi.wantstofly.org> <20050125222705.1ee878fd.davem@davemloft.net> <20050126132512.GA18220@xi.wantstofly.org> <20050126223247.3e4643cc.davem@davemloft.net> Message-ID: <20050127071645.GA2731@wotan.suse.de> On Wed, Jan 26, 2005 at 10:32:47PM -0800, David S. Miller wrote: > On Wed, 26 Jan 2005 14:25:12 +0100 > Lennert Buytenhek wrote: > > > I've thought about this a bit, and the only sane way of doing recursion > > detection that doesn't involve 'struct net_device' would be to keep track > > of the recursion depth (perhaps per-CPU as you suggest) and tossing the > > packet when it exceeds some random value, right? > > Yes, that's the idea. per CPU only works in preemptive kernel if you have preemption disabled all the time. Do you? Seems not likely to me. -Andi From davem at davemloft.net Wed Jan 26 23:22:27 2005 From: davem at davemloft.net (David S. Miller) Date: Wed, 26 Jan 2005 23:22:27 -0800 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050127071645.GA2731@wotan.suse.de> References: <20050119144711.3fdd3d93.davem@davemloft.net> <20050119151853.259de49a@dxpl.pdx.osdl.net> <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> <20050120085611.33f9485e@dxpl.pdx.osdl.net> <20050121105452.GA12988@xi.wantstofly.org> <20050125222705.1ee878fd.davem@davemloft.net> <20050126132512.GA18220@xi.wantstofly.org> <20050126223247.3e4643cc.davem@davemloft.net> <20050127071645.GA2731@wotan.suse.de> Message-ID: <20050126232227.3ce4decb.davem@davemloft.net> On Thu, 27 Jan 2005 08:16:45 +0100 Andi Kleen wrote: > > Yes, that's the idea. > > per CPU only works in preemptive kernel if you have preemption > disabled all the time. Do you? > > Seems not likely to me. BH is disabled in these code paths (specifically we're talking about ->hard_start_xmit()), as that is where the recursion check goes. Otherwise, loopback's LLTX is broken as it relies on this property as well. From ak at suse.de Thu Jan 27 00:26:18 2005 From: ak at suse.de (Andi Kleen) Date: Thu, 27 Jan 2005 09:26:18 +0100 Subject: [openib-general] Re: [PATCH]: was Re: LLTX and netif_stop_queue In-Reply-To: <20050126232227.3ce4decb.davem@davemloft.net> References: <20050119164640.6c67bdfa.davem@davemloft.net> <52r7kgu5n5.fsf@topspin.com> <20050119230526.393a5184.davem@davemloft.net> <20050120085611.33f9485e@dxpl.pdx.osdl.net> <20050121105452.GA12988@xi.wantstofly.org> <20050125222705.1ee878fd.davem@davemloft.net> <20050126132512.GA18220@xi.wantstofly.org> <20050126223247.3e4643cc.davem@davemloft.net> <20050127071645.GA2731@wotan.suse.de> <20050126232227.3ce4decb.davem@davemloft.net> Message-ID: <20050127082618.GE2731@wotan.suse.de> On Wed, Jan 26, 2005 at 11:22:27PM -0800, David S. Miller wrote: > On Thu, 27 Jan 2005 08:16:45 +0100 > Andi Kleen wrote: > > > > Yes, that's the idea. > > > > per CPU only works in preemptive kernel if you have preemption > > disabled all the time. Do you? > > > > Seems not likely to me. > > BH is disabled in these code paths (specifically we're talking > about ->hard_start_xmit()), as that is where the recursion > check goes. Hmm, but hard_start_xmit is allowed to enable preemption again, isn't it? An safer alternative may be to change the cpu mask of the current process temporarily. -Andi From roland at topspin.com Thu Jan 27 08:30:44 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 27 Jan 2005 08:30:44 -0800 Subject: [openib-general] [PATCH] Use LANANA-assigned major in ib_umad Message-ID: <52r7k6yguj.fsf@topspin.com> Update the ib_umad module to use major 231 instead of a dynamic major, as assigned in the LANANA Linux 2.6+ Device List (http://lanana.org/docs/device-list/devices-2.6+.txt). Signed-off-by: Roland Dreier --- linux-bk.orig/drivers/infiniband/core/user_mad.c 2005-01-23 21:51:46.000000000 -0800 +++ linux-bk/drivers/infiniband/core/user_mad.c 2005-01-27 08:27:35.157195600 -0800 @@ -56,7 +56,10 @@ enum { IB_UMAD_MAX_PORTS = 64, - IB_UMAD_MAX_AGENTS = 32 + IB_UMAD_MAX_AGENTS = 32, + + IB_UMAD_MAJOR = 231, + IB_UMAD_MINOR_BASE = 0 }; struct ib_umad_port { @@ -97,7 +100,7 @@ DECLARE_PCI_UNMAP_ADDR(mapping) }; -static dev_t base_dev; +static const dev_t base_dev = MKDEV(IB_UMAD_MAJOR, IB_UMAD_MINOR_BASE); static spinlock_t map_lock; static DECLARE_BITMAP(dev_map, IB_UMAD_MAX_PORTS * 2); @@ -789,10 +792,10 @@ spin_lock_init(&map_lock); - ret = alloc_chrdev_region(&base_dev, 0, IB_UMAD_MAX_PORTS * 2, - "infiniband_mad"); + ret = register_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2, + "infiniband_mad"); if (ret) { - printk(KERN_ERR "user_mad: couldn't get device number\n"); + printk(KERN_ERR "user_mad: couldn't register device number\n"); goto out; } From tduffy at sun.com Thu Jan 27 09:53:16 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 27 Jan 2005 09:53:16 -0800 Subject: [openib-general] opensm crash Message-ID: <1106848396.21368.3.camel@duffman> I hit control-c to kill osm and got: Jan 27 18:47:09 [44808960] -> osm_mad_pool_get: [ opensm[4627]: *** exception handler: died with signal 11 Segmentation fault Here is the last 100 lines of the osm.log [root at flopteron2 bin]# tail -100 /var/log/osm.log Jan 27 18:47:04 [43005960] -> __osm_sm_mad_ctrl_retire_trans_mad: Retiring MAD with TID = 0x2bf9. Jan 27 18:47:04 [43005960] -> osm_mad_pool_put: [ Jan 27 18:47:04 [43005960] -> osm_mad_pool_put: Releasing p_madw = 0x56d9c0, p_mad = 0x599140. Jan 27 18:47:04 [43005960] -> osm_vendor_put: [ Jan 27 18:47:04 [43005960] -> osm_vendor_put: Retiring UMAD 0x599140. Jan 27 18:47:04 [43005960] -> osm_vendor_put: ] Jan 27 18:47:04 [43005960] -> osm_mad_pool_put: ] Jan 27 18:47:04 [43005960] -> __osm_sm_mad_ctrl_retire_trans_mad: 0 QP0 MADs outstanding. Jan 27 18:47:04 [43005960] -> __osm_sm_mad_ctrl_retire_trans_mad: Posting Dispatcher message OSM_MSG_NO_SMPS_OUTSTANDING. Jan 27 18:47:04 [43005960] -> __osm_sm_mad_ctrl_retire_trans_mad: ] Jan 27 18:47:04 [43005960] -> __osm_sm_mad_ctrl_disp_done_callback: ] Jan 27 18:47:04 [43005960] -> osm_state_mgr_process: [ Jan 27 18:47:04 [43005960] -> osm_state_mgr_process: Received signal OSM_SIGNAL_NO_PENDING_TRANSACTIONS in state OSM_SM_STATE_SWEEP_LIGHT. Jan 27 18:47:04 [43005960] -> __osm_state_mgr_light_sweep_done_msg: ****************************************************************** ********************** LIGHT SWEEP COMPLETE ********************** ****************************************************************** Jan 27 18:47:04 [43005960] -> osm_state_mgr_process: Received signal OSM_SIGNAL_IDLE_TIME_PROCESS in state OSM_SM_STATE_PROCESS_REQUEST. Jan 27 18:47:04 [43005960] -> __process_idle_time_queue_start: [ Jan 27 18:47:04 [43005960] -> __process_idle_time_queue_start: ] Jan 27 18:47:04 [43005960] -> osm_state_mgr_process: ] Jan 27 18:47:09 [9597F060] -> osm_vl15_shutdown: [ Jan 27 18:47:09 [9597F060] -> osm_vl15_shutdown: ] Jan 27 18:47:09 [9597F060] -> osm_vendor_set_sm: [ Jan 27 18:47:09 [9597F060] -> osm_vendor_set_sm: ] Jan 27 18:47:09 [9597F060] -> osm_sm_destroy: [ Jan 27 18:47:09 [44007960] -> __osm_sm_sweeper: Off schedule sweep signalled. Jan 27 18:47:09 [44007960] -> __osm_sm_sweeper: ] Jan 27 18:47:09 [9597F060] -> osm_trap_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> cl_event_wheel_destroy: [ Jan 27 18:47:09 [9597F060] -> cl_event_wheel_dump: [ Jan 27 18:47:09 [9597F060] -> cl_event_wheel_dump: event_wheel ptr:0x5575f8 Jan 27 18:47:09 [9597F060] -> cl_event_wheel_dump: ] Jan 27 18:47:09 [9597F060] -> cl_event_wheel_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_trap_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_sminfo_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_sminfo_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_ni_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_ni_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_pi_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_pi_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_si_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_si_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_nd_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_nd_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_lid_mgr_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_lid_mgr_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_ucast_mgr_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_ucast_mgr_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_link_mgr_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_link_mgr_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_drop_mgr_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_drop_mgr_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_lft_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_lft_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_mft_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_mft_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_slvl_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_slvl_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_vla_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_vla_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_pkey_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_pkey_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_state_mgr_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_state_mgr_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_sm_state_mgr_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_sm_state_mgr_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_mcast_mgr_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_mcast_mgr_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_sm_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_sa_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_nr_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_nr_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_pir_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_pir_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_lr_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_lr_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_pr_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_pr_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_smir_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_smir_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_mcmr_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_mcmr_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_sr_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_sr_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_infr_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_infr_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_vlarb_rec_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_vlarb_rec_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_slvl_rec_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_slvl_rec_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_pkey_rec_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_pkey_rec_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_lftr_rcv_destroy: [ Jan 27 18:47:09 [9597F060] -> osm_lftr_rcv_destroy: ] Jan 27 18:47:09 [9597F060] -> osm_sa_destroy: ] -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From iod00d at hp.com Thu Jan 27 10:11:19 2005 From: iod00d at hp.com (Grant Grundler) Date: Thu, 27 Jan 2005 10:11:19 -0800 Subject: [openib-general] [Fwd: Re: [openib-commits] r1658 - gen2/trunk/src/linux-kernel/infiniband/hw/mthca] In-Reply-To: <1106782695.8018.5.camel@duffman> References: <1106782695.8018.5.camel@duffman> Message-ID: <20050127181119.GB26449@esmail.cup.hp.com> On Wed, Jan 26, 2005 at 03:38:15PM -0800, Tom Duffy wrote: > I don't know how many people are on the commits list. It doesn't matter (to me). I just wanted the point noted in the archives since I can't change the commit log entry. grant From libor at topspin.com Thu Jan 27 10:17:35 2005 From: libor at topspin.com (Libor Michalek) Date: Thu, 27 Jan 2005 10:17:35 -0800 Subject: [openib-general] CM oops in cm_free_msg() In-Reply-To: ; from sean.hefty@intel.com on Wed, Jan 26, 2005 at 08:49:27PM -0800 References: <20050126180609.K30310@topspin.com> Message-ID: <20050127101735.A14300@topspin.com> On Wed, Jan 26, 2005 at 08:49:27PM -0800, Sean Hefty wrote: > > I'm seeing the following Oops on both passive and active connects. > >On active side it's around theend of the REP callback, or the sending > >of the RTU. On the passive side it appears to be around the sending > >of the REP or receiving of the RTU. > > Thanks for the feedback. I'll take a look at the oops first off in the > morning. On the active connection side, I see two cm_alloc_msg() calls, presumably one for the REQ and one for the RTU. However, I only see a single cm_free_msg, which is the one that is causing the oops, and the fields in the structure appear to be garbage. Is there any info I can gather for you, if you want me to take a closer look, let me know how alloc and free should work... > > On another note, calling ib_cm_establish from CQ callback context, I > >would expect to see a callback from the CM that I've entered ESTABLISHED > >state, but looking at the code, that does not appear to be the case. Is > >this something that wasn't intended, or just isn't there yet? > > This wasn't intended. The assumption being that the user knows that the > connection was already established. I don't think that it would be too hard > to add. (The only issue that jumps to mind at the moment could be a > potential race condition processing a DREQ.) Is this something that you > need? Would you need the callback from one of the CM's threads? Once the connection is in established state, on the passive side, I need to make one more QP state transition. So if the CM doesn't make an established callback, the consumer needs to create a work thread to perform the QP state transition. If a DREP is received ahead of an RTU, in REP_SENT state, it means that the RTU was sent and lost. So the DREP implies a established transition. How about receiving a DREP in REP_SENT, generates two transitions and callbacks, established and timewait? Likewise, a sent RTU in the REP_RCVD state would generate and established callback as well. -Libor From mshefty at ichips.intel.com Thu Jan 27 10:31:03 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 27 Jan 2005 10:31:03 -0800 Subject: [openib-general] CM oops in cm_free_msg() In-Reply-To: <20050127101735.A14300@topspin.com> References: <20050126180609.K30310@topspin.com> <20050127101735.A14300@topspin.com> Message-ID: <41F93367.9040603@ichips.intel.com> Libor Michalek wrote: > the fields in the structure appear to be garbage. That's exactly what I needed to know. I see the issue now. cm_alloc_msg() needs to set the send_wr.wr_id = (unsigned long) m; not "msg". I'll generate a patch. Thanks. > Once the connection is in established state, on the passive side, I > need to make one more QP state transition. So if the CM doesn't make > an established callback, the consumer needs to create a work thread to > perform the QP state transition. > > If a DREP is received ahead of an RTU, in REP_SENT state, it means that > the RTU was sent and lost. So the DREP implies a established transition. > How about receiving a DREP in REP_SENT, generates two transitions and > callbacks, established and timewait? Likewise, a sent RTU in the REP_RCVD > state would generate and established callback as well. I was assuming that you were asking about this because of the thread context that you were in, so I'll add a callback to the user after a call to ib_cm_establish. From mshefty at ichips.intel.com Thu Jan 27 11:30:36 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 27 Jan 2005 11:30:36 -0800 Subject: [openib-general] [PATCH] CM: fix accessing wrong msg pointer Message-ID: <20050127113036.6ce76cc6.mshefty@ichips.intel.com> This patch fixes accessing the wrong cm_msg pointer in cm_alloc_msg. Signed-off-by: Sean Hefty Index: core/cm.c =================================================================== --- core/cm.c (revision 1668) +++ core/cm.c (working copy) @@ -151,7 +151,7 @@ static int cm_alloc_msg(struct cm_id_pri struct cm_msg *m; int ret; - m = kmalloc(sizeof **msg, GFP_KERNEL); + m = kmalloc(sizeof *m, GFP_KERNEL); if (!m) return -ENOMEM; memset(m, 0, sizeof *m); @@ -168,11 +168,11 @@ static int cm_alloc_msg(struct cm_id_pri m->sge.addr = dma_map_single(mad_agent->device->dma_device, &m->mad, sizeof m->mad, DMA_TO_DEVICE); - pci_unmap_addr_set(msg, mapping, m->sge.addr); + pci_unmap_addr_set(m, mapping, m->sge.addr); m->sge.length = sizeof m->mad; m->sge.lkey = cm_id_priv->av.port->mr->lkey; - m->send_wr.wr_id = (unsigned long) msg; + m->send_wr.wr_id = (unsigned long) m; m->send_wr.sg_list = &m->sge; m->send_wr.num_sge = 1; m->send_wr.opcode = IB_WR_SEND; From halr at voltaire.com Thu Jan 27 10:42:21 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 27 Jan 2005 13:42:21 -0500 Subject: [openib-general] Re: osm log In-Reply-To: <1106787475.4648.8903.camel@localhost.localdomain> References: <1106340999.28559.17.camel@duffman> <1106345818.4648.1777.camel@localhost.localdomain> <1106352862.28559.51.camel@duffman> <1106361026.4648.1805.camel@localhost.localdomain> <1106609479.4339.14.camel@duffman> <1106609772.4648.3688.camel@localhost.localdomain> <1106777676.29575.50.camel@duffman> <1106787475.4648.8903.camel@localhost.localdomain> Message-ID: <1106851341.4648.11431.camel@localhost.localdomain> On Wed, 2005-01-26 at 19:58, Hal Rosenstock wrote: > On Wed, 2005-01-26 at 17:14, Tom Duffy wrote: > > Solaris is at LID 2. > > Hmm. Solaris IB port is active yet I don't recall seeing it join any MC > groups so we're back to square 1 in terms of what is going on. The > broadcast group (and other groups) appear to be created. Perhaps this is > an ordering thing where the Solaris machine is up before the Linux ones > which would create the groups but I'm just guessing. On further thought, this can't be an ordering (in the sense of which machine is up in what order) problem and also I think OpenSM supports a precreated broadcast group. Does Solaris want something from the SM/SA after it registers for SA events which determines whether it registers or not ? I'm searching for what Solaris is expecting to see but is not getting as I do not recall seeing any of the registrations from the Solaris machine in the OSM log. I do see a SA GetTable PathRecord from this node and a "truncated" response (artifically made to fit into a single MAD. That could be the source of the issue. Could you revert back to a simple topology (back to back HCAs) with Solaris on one side and Linux OpenIB on the other ? Once we can get this to work, we can move onto more complex topologies. Thanks. -- Hal From halr at voltaire.com Thu Jan 27 10:58:23 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 27 Jan 2005 13:58:23 -0500 Subject: [openib-general] opensm crash In-Reply-To: <1106848396.21368.3.camel@duffman> References: <1106848396.21368.3.camel@duffman> Message-ID: <1106852302.4648.11500.camel@localhost.localdomain> Hi Tom, On Thu, 2005-01-27 at 12:53, Tom Duffy wrote: > I hit control-c to kill osm and got: > > Jan 27 18:47:09 [44808960] -> osm_mad_pool_get: [ > opensm[4627]: *** exception handler: died with signal 11 > Segmentation fault Looks to me like the following could be the case: One thread was shutting down the OSM (osm_opensm_destroy was called and got at least as far as destroying the SA; subsequent to this the MAD pool is destroyed) and another thread attempted a get from the MAD pool. I'm not sure what would prevent this from occuring. I am looking into this crash further and am trying to reproduce the same. -- Hal > Here is the last 100 lines of the osm.log > > [root at flopteron2 bin]# tail -100 /var/log/osm.log > Jan 27 18:47:04 [43005960] -> __osm_sm_mad_ctrl_retire_trans_mad: Retiring MAD with TID = 0x2bf9. > Jan 27 18:47:04 [43005960] -> osm_mad_pool_put: [ > Jan 27 18:47:04 [43005960] -> osm_mad_pool_put: Releasing p_madw = 0x56d9c0, p_mad = 0x599140. > Jan 27 18:47:04 [43005960] -> osm_vendor_put: [ > Jan 27 18:47:04 [43005960] -> osm_vendor_put: Retiring UMAD 0x599140. > Jan 27 18:47:04 [43005960] -> osm_vendor_put: ] > Jan 27 18:47:04 [43005960] -> osm_mad_pool_put: ] > Jan 27 18:47:04 [43005960] -> __osm_sm_mad_ctrl_retire_trans_mad: 0 QP0 MADs outstanding. > Jan 27 18:47:04 [43005960] -> __osm_sm_mad_ctrl_retire_trans_mad: Posting Dispatcher message OSM_MSG_NO_SMPS_OUTSTANDING. > Jan 27 18:47:04 [43005960] -> __osm_sm_mad_ctrl_retire_trans_mad: ] > Jan 27 18:47:04 [43005960] -> __osm_sm_mad_ctrl_disp_done_callback: ] > Jan 27 18:47:04 [43005960] -> osm_state_mgr_process: [ > Jan 27 18:47:04 [43005960] -> osm_state_mgr_process: Received signal OSM_SIGNAL_NO_PENDING_TRANSACTIONS in state OSM_SM_STATE_SWEEP_LIGHT. > Jan 27 18:47:04 [43005960] -> __osm_state_mgr_light_sweep_done_msg: > > > ****************************************************************** > ********************** LIGHT SWEEP COMPLETE ********************** > ****************************************************************** > > > Jan 27 18:47:04 [43005960] -> osm_state_mgr_process: Received signal OSM_SIGNAL_IDLE_TIME_PROCESS in state OSM_SM_STATE_PROCESS_REQUEST. > Jan 27 18:47:04 [43005960] -> __process_idle_time_queue_start: [ > Jan 27 18:47:04 [43005960] -> __process_idle_time_queue_start: ] > Jan 27 18:47:04 [43005960] -> osm_state_mgr_process: ] > Jan 27 18:47:09 [9597F060] -> osm_vl15_shutdown: [ > Jan 27 18:47:09 [9597F060] -> osm_vl15_shutdown: ] > Jan 27 18:47:09 [9597F060] -> osm_vendor_set_sm: [ > Jan 27 18:47:09 [9597F060] -> osm_vendor_set_sm: ] > Jan 27 18:47:09 [9597F060] -> osm_sm_destroy: [ > Jan 27 18:47:09 [44007960] -> __osm_sm_sweeper: Off schedule sweep signalled. > Jan 27 18:47:09 [44007960] -> __osm_sm_sweeper: ] > Jan 27 18:47:09 [9597F060] -> osm_trap_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> cl_event_wheel_destroy: [ > Jan 27 18:47:09 [9597F060] -> cl_event_wheel_dump: [ > Jan 27 18:47:09 [9597F060] -> cl_event_wheel_dump: event_wheel ptr:0x5575f8 > Jan 27 18:47:09 [9597F060] -> cl_event_wheel_dump: ] > Jan 27 18:47:09 [9597F060] -> cl_event_wheel_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_trap_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_sminfo_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_sminfo_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_ni_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_ni_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_pi_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_pi_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_si_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_si_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_nd_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_nd_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_lid_mgr_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_lid_mgr_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_ucast_mgr_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_ucast_mgr_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_link_mgr_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_link_mgr_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_drop_mgr_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_drop_mgr_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_lft_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_lft_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_mft_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_mft_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_slvl_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_slvl_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_vla_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_vla_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_pkey_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_pkey_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_state_mgr_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_state_mgr_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_sm_state_mgr_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_sm_state_mgr_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_mcast_mgr_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_mcast_mgr_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_sm_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_sa_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_nr_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_nr_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_pir_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_pir_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_lr_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_lr_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_pr_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_pr_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_smir_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_smir_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_mcmr_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_mcmr_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_sr_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_sr_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_infr_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_infr_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_vlarb_rec_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_vlarb_rec_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_slvl_rec_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_slvl_rec_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_pkey_rec_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_pkey_rec_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_lftr_rcv_destroy: [ > Jan 27 18:47:09 [9597F060] -> osm_lftr_rcv_destroy: ] > Jan 27 18:47:09 [9597F060] -> osm_sa_destroy: ] > > > ______________________________________________________________________ > > _______________________________________________ > openib-general mailing list > openib-general at openib.org > http://openib.org/mailman/listinfo/openib-general > > To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general From libor at topspin.com Thu Jan 27 12:16:19 2005 From: libor at topspin.com (Libor Michalek) Date: Thu, 27 Jan 2005 12:16:19 -0800 Subject: [openib-general] [PATCH] CM: fix accessing wrong msg pointer In-Reply-To: <20050127113036.6ce76cc6.mshefty@ichips.intel.com>; from mshefty@ichips.intel.com on Thu, Jan 27, 2005 at 11:30:36AM -0800 References: <20050127113036.6ce76cc6.mshefty@ichips.intel.com> Message-ID: <20050127121619.B14300@topspin.com> On Thu, Jan 27, 2005 at 11:30:36AM -0800, Sean Hefty wrote: > This patch fixes accessing the wrong cm_msg pointer in cm_alloc_msg. > Sean, FYI, This did solve the oops I was seeing. -Libor From libor at topspin.com Thu Jan 27 14:00:14 2005 From: libor at topspin.com (Libor Michalek) Date: Thu, 27 Jan 2005 14:00:14 -0800 Subject: [openib-general] CM convert_to_ms typo In-Reply-To: <20050127113036.6ce76cc6.mshefty@ichips.intel.com>; from mshefty@ichips.intel.com on Thu, Jan 27, 2005 at 11:30:36AM -0800 References: <20050127113036.6ce76cc6.mshefty@ichips.intel.com> Message-ID: <20050127140014.C14300@topspin.com> Sean, Found what looks like a typo in cm_convert_to_ms() should be max() instead of min() for converting to milliseconds. -Libor Index: core/cm.c =================================================================== --- core/cm.c (revision 1679) +++ core/cm.c (working copy) @@ -671,7 +671,7 @@ static inline int cm_convert_to_ms(u8 iba_time) { /* approximate conversion to ms from 4.096us x 2^iba_time */ - return (1 << ((uint)min(iba_time, (u8) 8) - (uint)8)); + return (1 << ((uint)max(iba_time, (u8) 8) - (uint)8)); } static void cm_format_mad_hdr(struct ib_mad_hdr *hdr, From mshefty at ichips.intel.com Thu Jan 27 14:06:59 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 27 Jan 2005 14:06:59 -0800 Subject: [openib-general] Re: CM convert_to_ms typo In-Reply-To: <20050127140014.C14300@topspin.com> References: <20050127113036.6ce76cc6.mshefty@ichips.intel.com> <20050127140014.C14300@topspin.com> Message-ID: <41F96603.2060201@ichips.intel.com> Libor Michalek wrote: > Sean, > > Found what looks like a typo in cm_convert_to_ms() should be max() > instead of min() for converting to milliseconds. Thanks. I've just committed this. - Sean From tduffy at sun.com Thu Jan 27 14:19:24 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 27 Jan 2005 14:19:24 -0800 Subject: [openib-general] Re: osm log In-Reply-To: <1106851341.4648.11431.camel@localhost.localdomain> References: <1106340999.28559.17.camel@duffman> <1106345818.4648.1777.camel@localhost.localdomain> <1106352862.28559.51.camel@duffman> <1106361026.4648.1805.camel@localhost.localdomain> <1106609479.4339.14.camel@duffman> <1106609772.4648.3688.camel@localhost.localdomain> <1106777676.29575.50.camel@duffman> <1106787475.4648.8903.camel@localhost.localdomain> <1106851341.4648.11431.camel@localhost.localdomain> Message-ID: <1106864364.21368.29.camel@duffman> On Thu, 2005-01-27 at 13:42 -0500, Hal Rosenstock wrote: > Does Solaris want something from the SM/SA after it registers for SA > events which determines whether it registers or not ? I am not sure. I am getting somebody on this end to look into what could be wrong with Solaris at this point. > I'm searching for what Solaris is expecting to see but is not getting as > I do not recall seeing any of the registrations from the Solaris machine > in the OSM log. I do see a SA GetTable PathRecord from this node and a > "truncated" response (artifically made to fit into a single MAD. That > could be the source of the issue. > > Could you revert back to a simple topology (back to back HCAs) with > Solaris on one side and Linux OpenIB on the other ? Once we can get this > to work, we can move onto more complex topologies. Thanks. OK my topology now is that simple: [root at flopteron2 bin]# ./ibnetdiscover # # Topology file: generated on Thu Jan 27 22:22:20 2005 # hcaguids=0x2c901097651d0 Hca 2 "H-0002c901097651d0" # MT23108 InfiniHost Mellanox Technologies [1] "H-0002c9010a99e030"[1] # lid 2 lmc 0 hcaguids=0x2c9010a99e030 Hca 2 "H-0002c9010a99e030" # MT25208 InfiniHostEx Mellanox Technologies [1] "H-0002c901097651d0"[1] # lid 1 lmc 0 The arbel is my x86_64 box running opensm (lid 1). The Tavor is on my sparc64 box running Solaris 10 (lid 2). I am getting this in the osm.log now every few seconds: Jan 27 23:14:35 [44808960] -> osm_vendor_get: Acquired UMAD 0x2a95a008d0, size = 256. Jan 27 23:14:35 [44808960] -> osm_vendor_get: ] Jan 27 23:14:35 [44808960] -> osm_mad_pool_get: Acquired p_madw = 0x56db60, p_mad = 0x2a95a008d0, size = 256. Jan 27 23:14:35 [44808960] -> osm_mad_pool_get: ] Jan 27 23:14:35 [44808960] -> umad_receiver: send completed with error(method=6 attr=2) -- dropping. Jan 27 23:14:35 [44808960] -> osm_vendor_send: [ Jan 27 23:14:35 [44808960] -> __osm_mtl_send_callback: Completed Sending Request MADW:0x56da90. Jan 27 23:14:35 [44808960] -> osm_vendor_send: ] Jan 27 23:14:35 [44808960] -> osm_mad_pool_put: [ Jan 27 23:14:35 [44808960] -> osm_mad_pool_put: Releasing p_madw = 0x56db60, p_mad = 0x2a95a00a10. Jan 27 23:14:35 [44808960] -> osm_vendor_put: [ Jan 27 23:14:35 [44808960] -> osm_vendor_put: Retiring UMAD 0x2a95a00a10. Jan 27 23:14:35 [44808960] -> osm_vendor_put: ] -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From roland at topspin.com Thu Jan 27 14:20:59 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 27 Jan 2005 14:20:59 -0800 Subject: [openib-general] CM convert_to_ms typo In-Reply-To: <20050127140014.C14300@topspin.com> (Libor Michalek's message of "Thu, 27 Jan 2005 14:00:14 -0800") References: <20050127113036.6ce76cc6.mshefty@ichips.intel.com> <20050127140014.C14300@topspin.com> Message-ID: <52acquy0ms.fsf@topspin.com> Holy Canoli, that's an obfuscated way to write that! uint isn't really favored as a type to use (just use "unsigned" if you want an unsigned integer). In any case, I think it might be clearer to write this as: static inline int cm_convert_to_ms(int iba_time) { return 1 << max(iba_time - 8, 0); } I'm pretty sure that ordinary promotion/conversion rules should make this work even when called with as parameter. - R. From roland at topspin.com Thu Jan 27 14:23:00 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 27 Jan 2005 14:23:00 -0800 Subject: [openib-general] CM convert_to_ms typo In-Reply-To: <52acquy0ms.fsf@topspin.com> (Roland Dreier's message of "Thu, 27 Jan 2005 14:20:59 -0800") References: <20050127113036.6ce76cc6.mshefty@ichips.intel.com> <20050127140014.C14300@topspin.com> <52acquy0ms.fsf@topspin.com> Message-ID: <52651iy0jf.fsf@topspin.com> Roland> I'm pretty sure that ordinary promotion/conversion rules Roland> should make this work even when called with as parameter. err... "... with a u8 as param ..." From libor at topspin.com Thu Jan 27 14:30:45 2005 From: libor at topspin.com (Libor Michalek) Date: Thu, 27 Jan 2005 14:30:45 -0800 Subject: [openib-general] CM stale connection collision. In-Reply-To: <41F96603.2060201@ichips.intel.com>; from mshefty@ichips.intel.com on Thu, Jan 27, 2005 at 02:06:59PM -0800 References: <20050127113036.6ce76cc6.mshefty@ichips.intel.com> <20050127140014.C14300@topspin.com> <41F96603.2060201@ichips.intel.com> Message-ID: <20050127143045.D14300@topspin.com> Sean, I've been seeing some stale connection collisions, as a result of one of my test hosts being rebooted much more frequently then the other. Specifically one of my nodes had two connections with the same remote communications ID and different local communications IDs, when the remote node received a DREQ from this node, a DREQ_RCVD was generated for the given local ID whithout checking to see if the remote ID matched, which it didn't. Since the remote node was back from a fresh reboot in both cases that generated the local ID, the local QPN was the same as well. I think that all applicable messages should check both IDs. -Libor From roland at topspin.com Thu Jan 27 14:51:42 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 27 Jan 2005 14:51:42 -0800 Subject: [openib-general] CM stale connection collision. In-Reply-To: <20050127143045.D14300@topspin.com> (Libor Michalek's message of "Thu, 27 Jan 2005 14:30:45 -0800") References: <20050127113036.6ce76cc6.mshefty@ichips.intel.com> <20050127140014.C14300@topspin.com> <41F96603.2060201@ichips.intel.com> <20050127143045.D14300@topspin.com> Message-ID: <521xc6xz7l.fsf@topspin.com> Libor> I've been seeing some stale connection collisions, as a Libor> result of one of my test hosts being rebooted much more Libor> frequently then the other. It might not hurt to make this harder to hit by randomizing the starting ID that's used. One simple way to implement this would be to pick a random 32-bit mask when the module is loaded and XOR that with the index that comes from the idr. (And then mask it back off when looking up in the idr, of course) - R. From mshefty at ichips.intel.com Thu Jan 27 14:58:24 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 27 Jan 2005 14:58:24 -0800 Subject: [openib-general] Re: CM stale connection collision. In-Reply-To: <20050127143045.D14300@topspin.com> References: <20050127113036.6ce76cc6.mshefty@ichips.intel.com> <20050127140014.C14300@topspin.com> <41F96603.2060201@ichips.intel.com> <20050127143045.D14300@topspin.com> Message-ID: <41F97210.9030908@ichips.intel.com> Libor Michalek wrote: > I've been seeing some stale connection collisions, as a result of one > of my test hosts being rebooted much more frequently then the other. Tests to handle stale connections are not in the current code. (There's some commented out portions of it, but the checks aren't where they need to be.) My plan is to add this when adding in timewait checking. > Specifically one of my nodes had two connections with the same remote > communications ID and different local communications IDs, when the remote > node received a DREQ from this node, a DREQ_RCVD was generated for the > given local ID whithout checking to see if the remote ID matched, which > it didn't. Since the remote node was back from a fresh reboot in both > cases that generated the local ID, the local QPN was the same as well. Currently the dreq_handler checks the DREQ:remote_comm_id and remote_qpn. Since you have the same QPN, you're hitting this issue. If the stale connection tests mentioned above were finished, this second connection wouldn't have occurred. > I think that all applicable messages should check both IDs. This isn't overly difficult to add. My thinking on the CM implementation was to treat the remote ID as opaque, so that the local CM didn't need to make any assumptions about how the remote IDs were assigned or used. I'll add in checks against the remote ID (and reject if invalid). From mshefty at ichips.intel.com Thu Jan 27 15:20:47 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 27 Jan 2005 15:20:47 -0800 Subject: [openib-general] CM convert_to_ms typo In-Reply-To: <52acquy0ms.fsf@topspin.com> References: <20050127113036.6ce76cc6.mshefty@ichips.intel.com> <20050127140014.C14300@topspin.com> <52acquy0ms.fsf@topspin.com> Message-ID: <41F9774F.2000203@ichips.intel.com> Roland Dreier wrote: > static inline int cm_convert_to_ms(int iba_time) > { > return 1 << max(iba_time - 8, 0); > } Thanks. I changed the call to this format. - Sean From tduffy at sun.com Thu Jan 27 15:30:47 2005 From: tduffy at sun.com (Tom Duffy) Date: Thu, 27 Jan 2005 15:30:47 -0800 Subject: [openib-general] Re: osm log In-Reply-To: <1106864364.21368.29.camel@duffman> References: <1106340999.28559.17.camel@duffman> <1106345818.4648.1777.camel@localhost.localdomain> <1106352862.28559.51.camel@duffman> <1106361026.4648.1805.camel@localhost.localdomain> <1106609479.4339.14.camel@duffman> <1106609772.4648.3688.camel@localhost.localdomain> <1106777676.29575.50.camel@duffman> <1106787475.4648.8903.camel@localhost.localdomain> <1106851341.4648.11431.camel@localhost.localdomain> <1106864364.21368.29.camel@duffman> Message-ID: <1106868647.21368.37.camel@duffman> On Thu, 2005-01-27 at 14:19 -0800, Tom Duffy wrote: > I am getting this in the osm.log now every few seconds: > > Jan 27 23:14:35 [44808960] -> osm_vendor_get: Acquired UMAD 0x2a95a008d0, size = 256. > Jan 27 23:14:35 [44808960] -> osm_vendor_get: ] > Jan 27 23:14:35 [44808960] -> osm_mad_pool_get: Acquired p_madw = 0x56db60, p_mad = 0x2a95a008d0, size = 256. > Jan 27 23:14:35 [44808960] -> osm_mad_pool_get: ] > Jan 27 23:14:35 [44808960] -> umad_receiver: send completed with error(method=6 attr=2) -- dropping. > Jan 27 23:14:35 [44808960] -> osm_vendor_send: [ > Jan 27 23:14:35 [44808960] -> __osm_mtl_send_callback: Completed Sending Request MADW:0x56da90. > Jan 27 23:14:35 [44808960] -> osm_vendor_send: ] > Jan 27 23:14:35 [44808960] -> osm_mad_pool_put: [ > Jan 27 23:14:35 [44808960] -> osm_mad_pool_put: Releasing p_madw = 0x56db60, p_mad = 0x2a95a00a10. > Jan 27 23:14:35 [44808960] -> osm_vendor_put: [ > Jan 27 23:14:35 [44808960] -> osm_vendor_put: Retiring UMAD 0x2a95a00a10. > Jan 27 23:14:35 [44808960] -> osm_vendor_put: ] I reset everything. I am not getting this now, but I am seeing this when running devfsadm -C on Solaris: Jan 27 23:53:46 [44808960] -> umad_receiver: class 0x3 method 0x12 RMPP version 1 type 2 flags 0x71 received -- dropping. Don't know if it is relevant. Attached is the portion from the log in between sweeps. -tduffy -------------- next part -------------- A non-text attachment was scrubbed... Name: sweep.log.bz2 Type: application/x-bzip Size: 4490 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From halr at voltaire.com Thu Jan 27 16:32:56 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 27 Jan 2005 19:32:56 -0500 Subject: [openib-general] Re: osm log In-Reply-To: <1106868647.21368.37.camel@duffman> References: <1106340999.28559.17.camel@duffman> <1106345818.4648.1777.camel@localhost.localdomain> <1106352862.28559.51.camel@duffman> <1106361026.4648.1805.camel@localhost.localdomain> <1106609479.4339.14.camel@duffman> <1106609772.4648.3688.camel@localhost.localdomain> <1106777676.29575.50.camel@duffman> <1106787475.4648.8903.camel@localhost.localdomain> <1106851341.4648.11431.camel@localhost.localdomain> <1106864364.21368.29.camel@duffman> <1106868647.21368.37.camel@duffman> Message-ID: <1106872375.4648.12599.camel@localhost.localdomain> On Thu, 2005-01-27 at 18:30, Tom Duffy wrote: > I reset everything. I am not getting this now, but I am seeing this > when running devfsadm -C on Solaris: > > Jan 27 23:53:46 [44808960] -> umad_receiver: class 0x3 method 0x12 RMPP version 1 type 2 flags 0x71 received -- dropping. > > Don't know if it is relevant. That's just the ACK (from Solaris to OpenSM) being dropped. It's OK. > Attached is the portion from the log in between sweeps. Looks OK. I see a precreated multicast LID 0xC001 (but no MC group joins/creates). -- Hal From libor at topspin.com Thu Jan 27 17:14:00 2005 From: libor at topspin.com (Libor Michalek) Date: Thu, 27 Jan 2005 17:14:00 -0800 Subject: [openib-general] CM qpn byte order bug In-Reply-To: <41F9774F.2000203@ichips.intel.com>; from mshefty@ichips.intel.com on Thu, Jan 27, 2005 at 03:20:47PM -0800 References: <20050127113036.6ce76cc6.mshefty@ichips.intel.com> <20050127140014.C14300@topspin.com> <52acquy0ms.fsf@topspin.com> <41F9774F.2000203@ichips.intel.com> Message-ID: <20050127171400.E14300@topspin.com> Sean, The local_qpn in the outgoing REP message is incorrect because of a missing byte order swap. -Libor Signed-off-by: Libor Michalek Index: infiniband/core/cm.c =================================================================== --- infiniband/core/cm.c (revision 1686) +++ infiniband/core/cm.c (working copy) @@ -1102,7 +1102,7 @@ rep_msg->local_comm_id = cm_id_priv->id.local_id; rep_msg->remote_comm_id = cm_id_priv->id.remote_id; - cm_rep_set_local_qpn(rep_msg, param->qp->qp_num); + cm_rep_set_local_qpn(rep_msg, cpu_to_be32(param->qp->qp_num)); cm_rep_set_starting_psn(rep_msg, param->starting_psn); rep_msg->resp_resources = param->responder_resources; rep_msg->initiator_depth = param->initiator_depth; From MAILER-DAEMON at mssociety.ca Thu Jan 27 17:27:48 2005 From: MAILER-DAEMON at mssociety.ca (BorderWare MXtreme Mail Firewall) Date: Thu, 27 Jan 2005 20:27:48 -0500 (EST) Subject: [openib-general] Quarantined Mail: virus from openib-general@openib.org Message-ID: <20050128012748.7144FBAE1D@mxtreme.mssociety.ca> This is an automated message from the BorderWare MXtreme Mail Firewall at host mxtreme.mssociety.ca. A mail from you (openib-general at openib.org) to (italertnotifications at mssociety.ca) was stopped and Quarantined because it contains one or more viruses. Summary of email contents: -------------- next part -------------- Attachment: file.zip Kaspersky AV found virus I-Worm.NetSky.q /document.txt .exe. Reference: FCAC5AB450 Queue ID: FCAC5AB450 From libor at topspin.com Thu Jan 27 17:52:34 2005 From: libor at topspin.com (Libor Michalek) Date: Thu, 27 Jan 2005 17:52:34 -0800 Subject: [openib-general] [PATCH] mthca_post_send oops w/ RC QPs Message-ID: <20050127175234.F14300@topspin.com> Roland, Calling mthca_post_send() on a RC QP results in an oops because of a missing break statement in the transport switch block. Here's the patch. Signed-off-by: Libor Michalek Index: infiniband/hw/mthca/mthca_qp.c =================================================================== --- infiniband/hw/mthca/mthca_qp.c (revision 1686) +++ infiniband/hw/mthca/mthca_qp.c (working copy) @@ -1352,6 +1352,7 @@ break; } + break; case UD: ((struct mthca_ud_seg *) wqe)->lkey = cpu_to_be32(to_mah(wr->wr.ud.ah)->key); From roland at topspin.com Thu Jan 27 19:15:46 2005 From: roland at topspin.com (Roland Dreier) Date: Thu, 27 Jan 2005 19:15:46 -0800 Subject: [openib-general] Re: [PATCH] mthca_post_send oops w/ RC QPs In-Reply-To: <20050127175234.F14300@topspin.com> (Libor Michalek's message of "Thu, 27 Jan 2005 17:52:34 -0800") References: <20050127175234.F14300@topspin.com> Message-ID: <52llaew8f1.fsf@topspin.com> Thanks, applied. Looks like I introduced that bug when I added support for RDMA. - R. From mshefty at ichips.intel.com Thu Jan 27 22:50:13 2005 From: mshefty at ichips.intel.com (Sean Hefty) Date: Thu, 27 Jan 2005 22:50:13 -0800 Subject: [openib-general] Re: CM qpn byte order bug In-Reply-To: <20050127171400.E14300@topspin.com> References: <20050127113036.6ce76cc6.mshefty@ichips.intel.com> <20050127140014.C14300@topspin.com> <52acquy0ms.fsf@topspin.com> <41F9774F.2000203@ichips.intel.com> <20050127171400.E14300@topspin.com> Message-ID: <20050127225013.52e8ac9a.mshefty@ichips.intel.com> On Thu, 27 Jan 2005 17:14:00 -0800 Libor Michalek wrote: > Sean, > > The local_qpn in the outgoing REP message is incorrect because of > a missing byte order swap. Thanks! Applied. From mst at mellanox.co.il Fri Jan 28 06:34:16 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Fri, 28 Jan 2005 16:34:16 +0200 Subject: [openib-general] memfree support for main trunk Message-ID: <20050128143415.GA32707@mellanox.co.il> Hello, Roland! There are beginnings of memfree support on your branch. Are there plans to merge them to the main trunk? MST -- MST - Michael S. Tsirkin From roland at topspin.com Fri Jan 28 06:58:11 2005 From: roland at topspin.com (Roland Dreier) Date: Fri, 28 Jan 2005 06:58:11 -0800 Subject: [openib-general] memfree support for main trunk In-Reply-To: <20050128143415.GA32707@mellanox.co.il> (Michael S. Tsirkin's message of "Fri, 28 Jan 2005 16:34:16 +0200") References: <20050128143415.GA32707@mellanox.co.il> Message-ID: <52acqtwqgs.fsf@topspin.com> Michael> Hello, Roland! There are beginnings of memfree support Michael> on your branch. Michael> Are there plans to merge them to the main trunk? Yes, of course. - R. From mst at mellanox.co.il Fri Jan 28 07:10:01 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Fri, 28 Jan 2005 17:10:01 +0200 Subject: [openib-general] Re: memfree support for main trunk In-Reply-To: <52acqtwqgs.fsf@topspin.com> References: <20050128143415.GA32707@mellanox.co.il> <52acqtwqgs.fsf@topspin.com> Message-ID: <20050128151001.GA413@mellanox.co.il> Quoting r. Roland Dreier : > Subject: Re: memfree support for main trunk > > Michael> Hello, Roland! There are beginnings of memfree support > Michael> on your branch. > > Michael> Are there plans to merge them to the main trunk? > > Yes, of course. > > - R. > It would be nice to have memfree working (actually moving bits, you know) at least partially by the workshop first day. For the cq/qp doorbells need to be finished, and the backport done. Do you have some non-checked in stuff? I could look at either or both of these starting Sunday if you want. What do you think? MST -- MST - Michael S. Tsirkin From vonwyl at EIG.UNIGE.CH Fri Jan 28 08:36:23 2005 From: vonwyl at EIG.UNIGE.CH (Marc von Wyl) Date: Fri, 28 Jan 2005 17:36:23 +0100 Subject: [openib-general] openIB + RTAI, kernel freezing... In-Reply-To: <1106760784.4648.7991.camel@localhost.localdomain> References: <506C3D7B14CDD411A52C00025558DED6064BED71@mtlex01.yok.mtl.com> <1105381618.8427.1.camel@duffman> <41E3E179.7000407@eig.unige.ch> <1105457796.11083.2.camel@duffman> <41EE7906.5080703@eig.unige.ch> <1106154877.7680.3.camel@duffman> <41F11D5F.9010307@eig.unige.ch> <1106324023.27916.38.camel@duffman> <1106324781.4648.1616.camel@localhost.localdomain> <41F508FA.7040602@eig.unige.ch> <1106577743.4648.2238.camel@localhost.localdomain> <41F7D00D.3080607@eig.unige.ch> <1106760784.4648.7991.camel@localhost.localdomain> Message-ID: <41FA6A07.10804@eig.unige.ch> Hal Rosenstock a écrit : >Hi Marc, > >On Wed, 2005-01-26 at 12:14, Marc von Wyl wrote: > > >>I mounted the ib_core, ib_mad, ib_umad and ib_mthca modules. After that >>I tried a /usr/local/ib/bin/opensm -V -d5 and get this : >> >> > >Is this invoked as root ? > > > Of course. >I fixed an error message in the log. Can you pick this up and retry ? > >Thanks. > >-- Hal > > > > I took the last version of gen2 tried it again. So after mounting the ib_core, ib_mad, ib_umad and ib_mthca modules I tried a /usr/local/ib/bin/opensm -V -d5 and : ------------------------------------------------- OpenSM Rev:openib-1.0.0 Command Line Arguments: Big V selected d level = 0x5 Log File: /var/log/osm.log ------------------------------------------------- warn: [27547] umad_init: warn: [27547] umad_get_cas_names: max 32 warn: [27547] umad_get_cas_names: return 1 cas warn: [27547] umad_get_ca_portguids: ca name mthca0 max port guids warn: [27547] umad_get_ca: ca_name mthca0 Error from osm_vendor_get_all_port_attr (ffffffff) Error: port guid 0x0 not found warn: [27547] umad_done: And the /var/log/osm.log file is attached to this mail. It seems that opensm don't find the card. I think it could be a udev problem... The files /dev/umad0 and /dev/umad1 exist but there isn't any trace of /dev/infiniband/umad0 or 1. -------------- next part -------------- Jan 28 17:06:36 [B7E678A0] -> OpenSM Rev:openib-1.0.0 Jan 28 17:06:36 [B7E678A0] -> osm_opensm_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_opensm_init: Forcing single threaded dispatcher. Jan 28 17:06:36 [B7E678A0] -> osm_vendor_new: [ Jan 28 17:06:36 [B7E678A0] -> osm_vendor_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_vendor_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_vendor_new: ] Jan 28 17:06:36 [B7E678A0] -> osm_mad_pool_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_mad_pool_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_vl15_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_vl15_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_sm_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_sm_mad_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_sm_mad_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_req_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_req_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_req_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_req_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_resp_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_resp_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_ni_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_ni_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_ni_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_ni_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_pi_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_pi_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_pi_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_pi_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_si_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_si_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_si_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_si_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_nd_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_nd_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_nd_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_nd_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_lid_mgr_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_lid_mgr_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_ucast_mgr_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_ucast_mgr_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_link_mgr_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_link_mgr_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_state_mgr_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_state_mgr_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_state_mgr_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_state_mgr_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_drop_mgr_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_drop_mgr_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_lft_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_lft_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_lft_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_lft_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_mft_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_mft_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_mft_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_mft_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_sweep_fail_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_sweep_fail_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_sminfo_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_sminfo_rcv_init: ] Jan 28 17:06:36 [B4E5EBB0] -> __osm_vl15_poller: [ Jan 28 17:06:36 [B7E678A0] -> osm_sminfo_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_sminfo_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_trap_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> cl_event_wheel_init: [ Jan 28 17:06:36 [B7E678A0] -> cl_event_wheel_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_trap_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_trap_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_trap_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_sm_state_mgr_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_sm_state_mgr_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_mcast_mgr_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_mcast_mgr_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_slvl_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_slvl_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_slvl_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_slvl_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_vla_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_vla_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_vla_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_vla_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_pkey_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_pkey_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_pkey_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_pkey_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_sm_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_sa_init: [ Jan 28 17:06:36 [B465DBB0] -> __osm_sm_sweeper: [ Jan 28 17:06:36 [B465DBB0] -> __osm_sm_sweeper: Masking ^C Signals. Jan 28 17:06:36 [B7E678A0] -> osm_sa_resp_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_sa_resp_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_sa_mad_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_sa_mad_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_cpi_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_cpi_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_cpi_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_cpi_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_nr_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_nr_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_nr_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_nr_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_pir_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_pir_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_pir_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_pir_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_lr_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_lr_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_lr_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_lr_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_pr_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_pr_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_pr_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_pr_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_smir_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_smir_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_smir_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_smir_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_mcmr_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_mcmr_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_mcmr_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_mcmr_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_sr_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_sr_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_sr_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_sr_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_infr_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_infr_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_infr_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_infr_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_vlarb_rec_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_vlarb_rec_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_vlarb_rec_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_vlarb_rec_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_slvl_rec_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_slvl_rec_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_slvl_rec_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_slvl_rec_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_pkey_rec_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_pkey_rec_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_pkey_rec_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_pkey_rec_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_lftr_rcv_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_lftr_rcv_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_lftr_rcv_ctrl_init: [ Jan 28 17:06:36 [B7E678A0] -> osm_lftr_rcv_ctrl_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_sa_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_opensm_create_mcgroups: [ Jan 28 17:06:36 [B7E678A0] -> osm_sa_create_template_record_ipoib: [ Jan 28 17:06:36 [B7E678A0] -> osm_mcmr_rcv_create_new_mgrp: [ Jan 28 17:06:36 [B7E678A0] -> osm_mcmr_rcv_create_new_mgrp: Getting new mlid 0xc000. Jan 28 17:06:36 [B7E678A0] -> __validate_requested_mgid: [ Jan 28 17:06:36 [B7E678A0] -> __validate_requested_mgid: MGID Signed as 0x401B. Jan 28 17:06:36 [B7E678A0] -> __validate_requested_mgid: Skipping MGID Validation for IPoIB Signed (0x401B) MGIDs. Jan 28 17:06:36 [B7E678A0] -> __validate_requested_mgid: ] Jan 28 17:06:36 [B7E678A0] -> osm_mgrp_send_create_notice: [ Jan 28 17:06:36 [B7E678A0] -> osm_report_notice: [ Jan 28 17:06:36 [B7E678A0] -> osm_report_notice: Reporting Generic Notice type:3 num:66 from LID:0x0000 GID:0xfe80000000000000,0x0000000000000000 Jan 28 17:06:36 [B7E678A0] -> osm_report_notice: ] Jan 28 17:06:36 [B7E678A0] -> osm_mgrp_send_create_notice: ] Jan 28 17:06:36 [B7E678A0] -> osm_mcmr_rcv_create_new_mgrp: ] Jan 28 17:06:36 [B7E678A0] -> osm_mcmr_rcv_create_new_mgrp: [ Jan 28 17:06:36 [B7E678A0] -> osm_mcmr_rcv_create_new_mgrp: Getting new mlid 0xc001. Jan 28 17:06:36 [B7E678A0] -> __validate_requested_mgid: [ Jan 28 17:06:36 [B7E678A0] -> __validate_requested_mgid: MGID Signed as 0x401B. Jan 28 17:06:36 [B7E678A0] -> __validate_requested_mgid: Skipping MGID Validation for IPoIB Signed (0x401B) MGIDs. Jan 28 17:06:36 [B7E678A0] -> __validate_requested_mgid: ] Jan 28 17:06:36 [B7E678A0] -> osm_mgrp_send_create_notice: [ Jan 28 17:06:36 [B7E678A0] -> osm_report_notice: [ Jan 28 17:06:36 [B7E678A0] -> osm_report_notice: Reporting Generic Notice type:3 num:66 from LID:0x0000 GID:0xfe80000000000000,0x0000000000000000 Jan 28 17:06:36 [B7E678A0] -> osm_report_notice: ] Jan 28 17:06:36 [B7E678A0] -> osm_mgrp_send_create_notice: ] Jan 28 17:06:36 [B7E678A0] -> osm_mcmr_rcv_create_new_mgrp: ] Jan 28 17:06:36 [B7E678A0] -> osm_sa_create_template_record_ipoib: ] Jan 28 17:06:36 [B7E678A0] -> osm_opensm_create_mcgroups: ] Jan 28 17:06:36 [B7E678A0] -> updn_construct: [ Jan 28 17:06:36 [B7E678A0] -> updn_construct: ] Jan 28 17:06:36 [B7E678A0] -> updn_init: [ Jan 28 17:06:36 [B7E678A0] -> updn_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_opensm_init: ] Jan 28 17:06:36 [B7E678A0] -> osm_vendor_get_all_port_attr: [ Jan 28 17:06:36 [B7E678A0] -> osm_vendor_get_all_port_attr: Unable to get CA mthca0 port guids (Unknown error 4294967295). Jan 28 17:06:36 [B7E678A0] -> osm_vendor_get_all_port_attr: ] Jan 28 17:06:36 [B7E678A0] -> osm_vl15_shutdown: [ Jan 28 17:06:36 [B7E678A0] -> osm_vl15_shutdown: ] Jan 28 17:06:36 [B7E678A0] -> osm_sm_destroy: [ Jan 28 17:06:36 [B465DBB0] -> __osm_sm_sweeper: Off schedule sweep signalled. Jan 28 17:06:36 [B465DBB0] -> __osm_sm_sweeper: ] Jan 28 17:06:36 [B7E678A0] -> osm_trap_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> cl_event_wheel_destroy: [ Jan 28 17:06:36 [B7E678A0] -> cl_event_wheel_dump: [ Jan 28 17:06:36 [B7E678A0] -> cl_event_wheel_dump: event_wheel ptr:0x80941f8 Jan 28 17:06:36 [B7E678A0] -> cl_event_wheel_dump: ] Jan 28 17:06:36 [B7E678A0] -> cl_event_wheel_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_trap_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_sminfo_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_sminfo_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_ni_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_ni_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_pi_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_pi_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_si_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_si_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_nd_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_nd_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_lid_mgr_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_lid_mgr_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_ucast_mgr_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_ucast_mgr_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_link_mgr_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_link_mgr_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_drop_mgr_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_drop_mgr_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_lft_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_lft_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_mft_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_mft_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_slvl_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_slvl_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_vla_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_vla_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_pkey_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_pkey_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_state_mgr_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_state_mgr_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_sm_state_mgr_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_sm_state_mgr_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_mcast_mgr_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_mcast_mgr_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_sm_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_sa_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_nr_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_nr_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_pir_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_pir_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_lr_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_lr_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_pr_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_pr_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_smir_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_smir_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_mcmr_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_mcmr_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_sr_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_sr_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_infr_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_infr_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_vlarb_rec_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_vlarb_rec_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_slvl_rec_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_slvl_rec_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_pkey_rec_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_pkey_rec_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_lftr_rcv_destroy: [ Jan 28 17:06:36 [B7E678A0] -> osm_lftr_rcv_destroy: ] Jan 28 17:06:36 [B7E678A0] -> osm_sa_destroy: ] From rpearson at systemfabricworks.com Fri Jan 28 08:41:46 2005 From: rpearson at systemfabricworks.com (Robert Pearson) Date: Fri, 28 Jan 2005 10:41:46 -0600 Subject: [openib-general] VPD capabilty address flag Message-ID: <000c01c50558$421f0fc0$6801a8c0@sfw.int> On a gen2 system when using /proc/bus/pci/nn/mm.m to access the PCI configuration space of an HCA in an attempt to read the VPD for the adapter, the flag bit in the VPD address fails to set after a reasonable delay after writing a new address and the VPD data are invalid. Other adapters (e.g. Broadcom NICs) that also have a VPD do set the flag bit and return valid VPD data. Any ideas? -------------- next part -------------- An HTML attachment was scrubbed... URL: From roland at topspin.com Fri Jan 28 08:53:37 2005 From: roland at topspin.com (Roland Dreier) Date: Fri, 28 Jan 2005 08:53:37 -0800 Subject: [openib-general] VPD capabilty address flag In-Reply-To: <000c01c50558$421f0fc0$6801a8c0@sfw.int> (Robert Pearson's message of "Fri, 28 Jan 2005 10:41:46 -0600") References: <000c01c50558$421f0fc0$6801a8c0@sfw.int> Message-ID: <52651hwl4e.fsf@topspin.com> Robert> On a gen2 system when using /proc/bus/pci/nn/mm.m to Robert> access the PCI configuration space of an HCA in an attempt Robert> to read the VPD for the adapter, the flag bit in the VPD Robert> address fails to set after a reasonable delay after Robert> writing a new address and the VPD data are invalid. Other Robert> adapters (e.g. Broadcom NICs) that also have a VPD do set Robert> the flag bit and return valid VPD data. Any ideas? This isn't a gen2 issue -- the driver is irrelevant, since this is purely a PCI operation that would work if no driver is loaded. Unfortunately I don't know much about the behavior of PCI VPD with Mellanox HCAs so I can't help you. - R. From roland at topspin.com Fri Jan 28 08:54:51 2005 From: roland at topspin.com (Roland Dreier) Date: Fri, 28 Jan 2005 08:54:51 -0800 Subject: [openib-general] Re: memfree support for main trunk In-Reply-To: <20050128151001.GA413@mellanox.co.il> (Michael S. Tsirkin's message of "Fri, 28 Jan 2005 17:10:01 +0200") References: <20050128143415.GA32707@mellanox.co.il> <52acqtwqgs.fsf@topspin.com> <20050128151001.GA413@mellanox.co.il> Message-ID: <521xc5wl2c.fsf@topspin.com> Michael> It would be nice to have memfree working (actually moving Michael> bits, you know) at least partially by the workshop first Michael> day. For the cq/qp doorbells need to be finished, and Michael> the backport done. Do you have some non-checked in Michael> stuff? I could look at either or both of these starting Michael> Sunday if you want. What do you think? I don't have anything pending in my tree right now, and I'll make sure that any work I do gets checked in before Sunday. - R. From halr at voltaire.com Sat Jan 29 10:36:34 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 29 Jan 2005 13:36:34 -0500 Subject: [openib-general] [ANNOUNCE] userspace/management now partially uses autotools Message-ID: <1107023794.15832.2941.camel@localhost.localdomain> The management common libraries (libibcommon, libibumad, and libibmad) as well as the diags and util subdirectories have been switched over to use autotools. The build process is different due to this and is documented in the README file in the userspace/management directory. OpenSM and its libraries have not as yet although that is the next step in the evolution. -- Hal From mst at mellanox.co.il Sun Jan 30 00:33:13 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 30 Jan 2005 10:33:13 +0200 Subject: [openib-general] ipoib_faq.txt Message-ID: <20050130083313.GB26505@mellanox.co.il> The followng probably needs fixing - openib now supports opensm: 1. You need an SM in your subnet to bring the ports to active. Do you have an SM ? This can be embedded in a switch or some other IB hardware or run on an end node (HCA) although OpenIB (gen2) does not currently support this. Shall be somethign like: 1. You need an SM in your subnet to bring the ports to active. Do you have an SM ? This can be embedded in a switch or some other IB hardware or run on an end node (HCA). Check out opensm under https://openib.org/svn/gen2/trunk/src/userspace/management/ MST -- MST - Michael S. Tsirkin From mst at mellanox.co.il Sun Jan 30 00:50:48 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 30 Jan 2005 10:50:48 +0200 Subject: [openib-general] ecr_mask Message-ID: <20050130085048.GC26505@mellanox.co.il> Hi, Roland! You have eq->eqn_mask = swab32(1 << eq->eqn); and trunk has: eq->ecr_mask = swab32(1 << eq->eqn); Why should that not be cpu_to_be32? Thanks. -- MST - Michael S. Tsirkin From mst at mellanox.co.il Sun Jan 30 03:06:04 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 30 Jan 2005 13:06:04 +0200 Subject: [openib-general] Re: [ANNOUNCE] userspace/management now partially uses autotools In-Reply-To: <1107023794.15832.2941.camel@localhost.localdomain> References: <1107023794.15832.2941.camel@localhost.localdomain> Message-ID: <20050130110604.GD26505@mellanox.co.il> Quoting r. Hal Rosenstock : > Subject: [ANNOUNCE] userspace/management now partially uses autotools > > The management common libraries (libibcommon, libibumad, and libibmad) > as well as the diags and util subdirectories have been switched over to > use autotools. The build process is different due to this and is > documented in the README file in the userspace/management directory. > > OpenSM and its libraries have not as yet although that is the next step > in the evolution. > > -- Hal > For now, we have a huge step backwards. I quote the README file: > To make this tree, > 1. In libibcommon, libibumad, and libibmad (in that order), run: > ./autogen.sh && ./configure && make && make install > 2. In all util and diag subdirectories, run: > ./autogen.sh && ./configure > 3. At top level of management, run: > make && make install Hal, currently this means that 1. its painful to build opensm Several manual steps are required. 2. The process differs from the standard configure/make I think generated configure files shall be checked in so that the process is less painful for most people. 3. Current build requires that libraries are *installed* before opensm is built. This means that I cant have two versions installed without manual tweaks, and that just to *check* if some problem I have is fixed on trunk, I must install newer libraries possibly breaking a perfectly good installation. May I suggest such changes shall be checked in when they are fully ready (when all the tree has been converted) and not half ready? Alternatively, put them on a branch. -- MST - Michael S. Tsirkin From halr at voltaire.com Sun Jan 30 05:56:52 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 30 Jan 2005 08:56:52 -0500 Subject: [openib-general] Re: [ANNOUNCE] userspace/management now partially uses autotools In-Reply-To: <20050130110604.GD26505@mellanox.co.il> References: <1107023794.15832.2941.camel@localhost.localdomain> <20050130110604.GD26505@mellanox.co.il> Message-ID: <1107093272.15832.4016.camel@localhost.localdomain> On Sun, 2005-01-30 at 06:06, Michael S. Tsirkin wrote: > For now, we have a huge step backwards. I don't agree with your qualification of this as huge. > I quote the README file: > > > To make this tree, > > 1. In libibcommon, libibumad, and libibmad (in that order), run: > > ./autogen.sh && ./configure && make && make install > > 2. In all util and diag subdirectories, run: > > ./autogen.sh && ./configure > > 3. At top level of management, run: > > make && make install > > > Hal, currently this means that > 1. its painful to build opensm > Several manual steps are required. This is only temporary. > 2. The process differs from the standard configure/make How ? > I think generated configure files shall be checked in so that > the process is less painful for most people. I did the same thing as was done in the other userspace directories. > 3. Current build requires that libraries are *installed* > before opensm is built. > This means that I cant have two versions installed without > manual tweaks, and that just to *check* if some problem I have is fixed on > trunk, I must install newer libraries possibly breaking a > perfectly good installation. The newer libraries are only required if there are changes in them. This is the way the other userspace libraries are done. If it is consensus to remove the installation dependency, this is straightforward to do. > May I suggest such changes shall be checked in > when they are fully ready (when all the tree has been converted) > and not half ready? > Alternatively, put them on a branch. I'll convert it back if that's what people want. It's pretty simple to do. You can do this in your own tree if you don't like the way it is. -- Hal From halr at voltaire.com Sun Jan 30 06:00:05 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 30 Jan 2005 09:00:05 -0500 Subject: [openib-general] ipoib_faq.txt In-Reply-To: <20050130083313.GB26505@mellanox.co.il> References: <20050130083313.GB26505@mellanox.co.il> Message-ID: <1107093387.15832.4020.camel@localhost.localdomain> On Sun, 2005-01-30 at 03:33, Michael S. Tsirkin wrote: > The followng probably needs fixing - openib now supports opensm: > > 1. You need an SM in your subnet to bring the ports to active. Do you > have an SM ? This can be embedded in a switch or some other IB hardware > or run on an end node (HCA) although OpenIB (gen2) does not currently > support this. > > Shall be somethign like: > > 1. You need an SM in your subnet to bring the ports to active. Do you > have an SM ? This can be embedded in a switch or some other IB hardware > or run on an end node (HCA). Check out opensm under > > https://openib.org/svn/gen2/trunk/src/userspace/management/ Thanks. Applied. -- Hal From mst at mellanox.co.il Sun Jan 30 06:18:14 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 30 Jan 2005 16:18:14 +0200 Subject: [openib-general] [PATCH] backport memfree support to trunk Message-ID: <20050130141814.GF26505@mellanox.co.il> Hello! The following backports the memfree support mthca code from https://openib.org/svn/gen2/branches/roland-uverbs/ revision 1701, to trunk. Please note I did this in the simplest possible way, so that the handling of uar tables is still compiled in mthca. The idea is to make back and forward porting updates easy. This works basically as well as the roland-uverbs for me, that is ip over ib works in Tavor mode, and passes modprobe ib_mthca in Arbel mode. Signed-off-by: Michael S. Tsirkin Backport memfree support code from roland-uverbs, revision 1701. Index: hw/mthca/mthca_dev.h =================================================================== --- hw/mthca/mthca_dev.h (revision 1701) +++ hw/mthca/mthca_dev.h (working copy) @@ -65,7 +65,6 @@ enum { }; enum { - MTHCA_KAR_PAGE = 1, MTHCA_MAX_PORTS = 2 }; @@ -108,6 +107,7 @@ struct mthca_limits { int gid_table_len; int pkey_table_len; int local_ca_ack_delay; + int num_uars; int max_sg; int num_qps; int reserved_qps; @@ -148,6 +148,12 @@ struct mthca_array { } *page_list; }; +struct mthca_uar_table { + struct mthca_alloc alloc; + u64 uarc_base; + int uarc_size; +}; + struct mthca_pd_table { struct mthca_alloc alloc; }; @@ -237,13 +243,22 @@ struct mthca_dev { struct semaphore cap_mask_mutex; void __iomem *hcr; - void __iomem *ecr_base; - void __iomem *clr_base; void __iomem *kar; + void __iomem *clr_base; + union { + struct { + void __iomem *ecr_base; + } tavor; + struct { + void __iomem *eq_arm; + void __iomem *eq_set_ci_base; + } arbel; + } eq_regs; struct mthca_cmd cmd; struct mthca_limits limits; + struct mthca_uar_table uar_table; struct mthca_pd_table pd_table; struct mthca_mr_table mr_table; struct mthca_eq_table eq_table; @@ -252,8 +267,10 @@ struct mthca_dev { struct mthca_av_table av_table; struct mthca_mcg_table mcg_table; - struct mthca_pd driver_pd; - struct mthca_mr driver_mr; + struct mthca_uar driver_uar; + struct mthca_db_table *db_tab; + struct mthca_pd driver_pd; + struct mthca_mr driver_mr; struct ib_mad_agent *send_agent[MTHCA_MAX_PORTS][2]; struct ib_ah *sm_ah[MTHCA_MAX_PORTS]; @@ -310,6 +327,7 @@ void mthca_array_clear(struct mthca_arra int mthca_array_init(struct mthca_array *array, int nent); void mthca_array_cleanup(struct mthca_array *array, int nent); +int mthca_init_uar_table(struct mthca_dev *dev); int mthca_init_pd_table(struct mthca_dev *dev); int mthca_init_mr_table(struct mthca_dev *dev); int mthca_init_eq_table(struct mthca_dev *dev); @@ -318,6 +336,7 @@ int mthca_init_qp_table(struct mthca_dev int mthca_init_av_table(struct mthca_dev *dev); int mthca_init_mcg_table(struct mthca_dev *dev); +void mthca_cleanup_uar_table(struct mthca_dev *dev); void mthca_cleanup_pd_table(struct mthca_dev *dev); void mthca_cleanup_mr_table(struct mthca_dev *dev); void mthca_cleanup_eq_table(struct mthca_dev *dev); @@ -329,6 +348,9 @@ void mthca_cleanup_mcg_table(struct mthc int mthca_register_device(struct mthca_dev *dev); void mthca_unregister_device(struct mthca_dev *dev); +int mthca_uar_alloc(struct mthca_dev *dev, struct mthca_uar *uar); +void mthca_uar_free(struct mthca_dev *dev, struct mthca_uar *uar); + int mthca_pd_alloc(struct mthca_dev *dev, struct mthca_pd *pd); void mthca_pd_free(struct mthca_dev *dev, struct mthca_pd *pd); @@ -345,8 +367,8 @@ void mthca_unmap_eq_icm(struct mthca_dev int mthca_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *entry); -void mthca_arm_cq(struct mthca_dev *dev, struct mthca_cq *cq, - int solicited); +int mthca_tavor_arm_cq(struct ib_cq *cq, enum ib_cq_notify notify); +int mthca_arbel_arm_cq(struct ib_cq *cq, enum ib_cq_notify notify); int mthca_init_cq(struct mthca_dev *dev, int nent, struct mthca_cq *cq); void mthca_free_cq(struct mthca_dev *dev, @@ -357,10 +379,14 @@ void mthca_cq_clean(struct mthca_dev *de void mthca_qp_event(struct mthca_dev *dev, u32 qpn, enum ib_event_type event_type); int mthca_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, int attr_mask); -int mthca_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr, - struct ib_send_wr **bad_wr); -int mthca_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr, - struct ib_recv_wr **bad_wr); +int mthca_tavor_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr, + struct ib_send_wr **bad_wr); +int mthca_tavor_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr, + struct ib_recv_wr **bad_wr); +int mthca_arbel_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr, + struct ib_send_wr **bad_wr); +int mthca_arbel_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr, + struct ib_recv_wr **bad_wr); int mthca_free_err_wqe(struct mthca_qp *qp, int is_send, int index, int *dbd, u32 *new_wqe); int mthca_alloc_qp(struct mthca_dev *dev, Index: hw/mthca/mthca_main.c =================================================================== --- hw/mthca/mthca_main.c (revision 1701) +++ hw/mthca/mthca_main.c (working copy) @@ -363,10 +363,9 @@ static int __devinit mthca_init_icm(stru } mdev->mr_table.mtt_table = mthca_alloc_icm_table(mdev, init_hca->mtt_base, - mdev->limits.num_mtt_segs * init_hca->mtt_seg_sz, - mdev->limits.reserved_mtts * - init_hca->mtt_seg_sz, 1); + mdev->limits.num_mtt_segs, + mdev->limits.reserved_mtts, 1); if (!mdev->mr_table.mtt_table) { mthca_err(mdev, "Failed to map MTT context memory, aborting.\n"); err = -ENOMEM; @@ -374,10 +373,9 @@ static int __devinit mthca_init_icm(stru } mdev->mr_table.mpt_table = mthca_alloc_icm_table(mdev, init_hca->mpt_base, - mdev->limits.num_mpts * dev_lim->mpt_entry_sz, - mdev->limits.reserved_mrws * - dev_lim->mpt_entry_sz, 1); + mdev->limits.num_mpts, + mdev->limits.reserved_mrws, 1); if (!mdev->mr_table.mpt_table) { mthca_err(mdev, "Failed to map MPT context memory, aborting.\n"); err = -ENOMEM; @@ -385,10 +383,9 @@ static int __devinit mthca_init_icm(stru } mdev->qp_table.qp_table = mthca_alloc_icm_table(mdev, init_hca->qpc_base, - mdev->limits.num_qps * dev_lim->qpc_entry_sz, - mdev->limits.reserved_qps * - dev_lim->qpc_entry_sz, 1); + mdev->limits.num_qps, + mdev->limits.reserved_qps, 0); if (!mdev->qp_table.qp_table) { mthca_err(mdev, "Failed to map QP context memory, aborting.\n"); err = -ENOMEM; @@ -396,10 +393,9 @@ static int __devinit mthca_init_icm(stru } mdev->qp_table.eqp_table = mthca_alloc_icm_table(mdev, init_hca->eqpc_base, - mdev->limits.num_qps * dev_lim->eqpc_entry_sz, - mdev->limits.reserved_qps * - dev_lim->eqpc_entry_sz, 1); + mdev->limits.num_qps, + mdev->limits.reserved_qps, 0); if (!mdev->qp_table.eqp_table) { mthca_err(mdev, "Failed to map EQP context memory, aborting.\n"); err = -ENOMEM; @@ -407,10 +403,9 @@ static int __devinit mthca_init_icm(stru } mdev->cq_table.table = mthca_alloc_icm_table(mdev, init_hca->cqc_base, - mdev->limits.num_cqs * dev_lim->cqc_entry_sz, - mdev->limits.reserved_cqs * - dev_lim->cqc_entry_sz, 1); + mdev->limits.num_cqs, + mdev->limits.reserved_cqs, 0); if (!mdev->cq_table.table) { mthca_err(mdev, "Failed to map CQ context memory, aborting.\n"); err = -ENOMEM; @@ -570,11 +565,33 @@ static int __devinit mthca_setup_hca(str MTHCA_INIT_DOORBELL_LOCK(&dev->doorbell_lock); + err = mthca_init_uar_table(dev); + if (err) { + mthca_err(dev, "Failed to initialize " + "user access region table, aborting.\n"); + return err; + } + + err = mthca_uar_alloc(dev, &dev->driver_uar); + if (err) { + mthca_err(dev, "Failed to allocate driver access region, " + "aborting.\n"); + goto err_uar_table_free; + } + + dev->kar = ioremap(dev->driver_uar.pfn << PAGE_SHIFT, PAGE_SIZE); + if (!dev->kar) { + mthca_err(dev, "Couldn't map kernel access region, " + "aborting.\n"); + err = -ENOMEM; + goto err_uar_free; + } + err = mthca_init_pd_table(dev); if (err) { mthca_err(dev, "Failed to initialize " "protection domain table, aborting.\n"); - return err; + goto err_kar_unmap; } err = mthca_init_mr_table(dev); @@ -591,13 +608,6 @@ static int __devinit mthca_setup_hca(str goto err_mr_table_free; } - if (dev->hca_type == ARBEL_NATIVE) { - mthca_warn(dev, "Sorry, native MT25208 mode support is not done, " - "aborting.\n"); - err = -ENODEV; - goto err_pd_free; - } - err = mthca_init_eq_table(dev); if (err) { mthca_err(dev, "Failed to initialize " @@ -621,8 +631,8 @@ static int __devinit mthca_setup_hca(str mthca_err(dev, "BIOS or ACPI interrupt routing problem?\n"); goto err_cmd_poll; - } else - mthca_dbg(dev, "NOP command IRQ test passed\n"); + } + mthca_dbg(dev, "NOP command IRQ test passed\n"); err = mthca_init_cq_table(dev); if (err) { @@ -677,6 +687,15 @@ err_mr_table_free: err_pd_table_free: mthca_cleanup_pd_table(dev); + +err_kar_unmap: + iounmap(dev->kar); + +err_uar_free: + mthca_uar_free(dev, &dev->driver_uar); + +err_uar_table_free: + mthca_cleanup_uar_table(dev); return err; } @@ -686,37 +705,18 @@ static int __devinit mthca_request_regio int err; /* - * We request our first BAR in two chunks, since the MSI-X - * vector table is right in the middle. + * We can't just use pci_request_regions() because the MSI-X + * table is right in the middle of the first BAR. If we did + * pci_request_region and grab all of the first BAR, then + * setting up MSI-X would fail, since the PCI core wants to do + * request_mem_region on the MSI-X vector table. * - * This is why we can't just use pci_request_regions() -- if - * we did then setting up MSI-X would fail, since the PCI core - * wants to do request_mem_region on the MSI-X vector table. + * So just request what we need right now, and request any + * other regions we need when setting up EQs. */ - if (!request_mem_region(pci_resource_start(pdev, 0) + - MTHCA_HCR_BASE, - MTHCA_HCR_SIZE, - DRV_NAME)) { - err = -EBUSY; - goto err_hcr_failed; - } - - if (!request_mem_region(pci_resource_start(pdev, 0) + - MTHCA_ECR_BASE, - MTHCA_MAP_ECR_SIZE, - DRV_NAME)) { - err = -EBUSY; - goto err_ecr_failed; - } - - if (!request_mem_region(pci_resource_start(pdev, 0) + - MTHCA_CLR_INT_BASE, - MTHCA_CLR_INT_SIZE, - DRV_NAME)) { - err = -EBUSY; - goto err_int_failed; - } - + if (!request_mem_region(pci_resource_start(pdev, 0) + MTHCA_HCR_BASE, + MTHCA_HCR_SIZE, DRV_NAME)) + return -EBUSY; err = pci_request_region(pdev, 2, DRV_NAME); if (err) @@ -730,25 +730,12 @@ static int __devinit mthca_request_regio return 0; -err_bar4_failed: - - pci_release_region(pdev, 2); err_bar2_failed: - - release_mem_region(pci_resource_start(pdev, 0) + - MTHCA_CLR_INT_BASE, - MTHCA_CLR_INT_SIZE); -err_int_failed: - - release_mem_region(pci_resource_start(pdev, 0) + - MTHCA_ECR_BASE, - MTHCA_MAP_ECR_SIZE); -err_ecr_failed: - - release_mem_region(pci_resource_start(pdev, 0) + - MTHCA_HCR_BASE, + release_mem_region(pci_resource_start(pdev, 0) + MTHCA_HCR_BASE, MTHCA_HCR_SIZE); -err_hcr_failed: + +err_bar4_failed: + pci_release_region(pdev, 2); return err; } @@ -761,16 +748,7 @@ static void mthca_release_regions(struct pci_release_region(pdev, 2); - release_mem_region(pci_resource_start(pdev, 0) + - MTHCA_CLR_INT_BASE, - MTHCA_CLR_INT_SIZE); - - release_mem_region(pci_resource_start(pdev, 0) + - MTHCA_ECR_BASE, - MTHCA_MAP_ECR_SIZE); - - release_mem_region(pci_resource_start(pdev, 0) + - MTHCA_HCR_BASE, + release_mem_region(pci_resource_start(pdev, 0) + MTHCA_HCR_BASE, MTHCA_HCR_SIZE); } @@ -830,7 +808,6 @@ static int __devinit mthca_init_one(stru static int mthca_version_printed = 0; int ddr_hidden = 0; int err; - unsigned long mthca_base; struct mthca_dev *mdev; if (!mthca_version_printed) { @@ -908,6 +885,10 @@ static int __devinit mthca_init_one(stru mdev->pdev = pdev; mdev->hca_type = id->driver_data; + if (mdev->hca_type == ARBEL_NATIVE) + mthca_warn(mdev, "Warning: native MT25208 mode support is not done. " + "Your HCA may not work properly.\n"); + if (ddr_hidden) mdev->mthca_flags |= MTHCA_FLAG_DDR_HIDDEN; @@ -932,8 +913,7 @@ static int __devinit mthca_init_one(stru sema_init(&mdev->cmd.poll_sem, 1); mdev->cmd.use_events = 0; - mthca_base = pci_resource_start(pdev, 0); - mdev->hcr = ioremap(mthca_base + MTHCA_HCR_BASE, MTHCA_HCR_SIZE); + mdev->hcr = ioremap(pci_resource_start(pdev, 0) + MTHCA_HCR_BASE, MTHCA_HCR_SIZE); if (!mdev->hcr) { mthca_err(mdev, "Couldn't map command register, " "aborting.\n"); @@ -941,40 +921,13 @@ static int __devinit mthca_init_one(stru goto err_free_dev; } - mdev->clr_base = ioremap(mthca_base + MTHCA_CLR_INT_BASE, - MTHCA_CLR_INT_SIZE); - if (!mdev->clr_base) { - mthca_err(mdev, "Couldn't map interrupt clear register, " - "aborting.\n"); - err = -ENOMEM; - goto err_iounmap; - } - - mdev->ecr_base = ioremap(mthca_base + MTHCA_ECR_BASE, - MTHCA_ECR_SIZE + MTHCA_ECR_CLR_SIZE); - if (!mdev->ecr_base) { - mthca_err(mdev, "Couldn't map ecr register, " - "aborting.\n"); - err = -ENOMEM; - goto err_iounmap_clr; - } - - mthca_base = pci_resource_start(pdev, 2); - mdev->kar = ioremap(mthca_base + PAGE_SIZE * MTHCA_KAR_PAGE, PAGE_SIZE); - if (!mdev->kar) { - mthca_err(mdev, "Couldn't map kernel access region, " - "aborting.\n"); - err = -ENOMEM; - goto err_iounmap_ecr; - } - err = mthca_tune_pci(mdev); if (err) - goto err_iounmap_kar; + goto err_iounmap; err = mthca_init_hca(mdev); if (err) - goto err_iounmap_kar; + goto err_iounmap; err = mthca_setup_hca(mdev); if (err) @@ -1007,19 +960,11 @@ err_cleanup: mthca_cleanup_mr_table(mdev); mthca_cleanup_pd_table(mdev); + mthca_cleanup_uar_table(mdev); err_close: mthca_close_hca(mdev); -err_iounmap_kar: - iounmap(mdev->kar); - -err_iounmap_ecr: - iounmap(mdev->ecr_base); - -err_iounmap_clr: - iounmap(mdev->clr_base); - err_iounmap: iounmap(mdev->hcr); @@ -1064,12 +1009,14 @@ static void __devexit mthca_remove_one(s mthca_cleanup_mr_table(mdev); mthca_cleanup_pd_table(mdev); + + iounmap(mdev->kar); + mthca_uar_free(mdev, &mdev->driver_uar); + mthca_cleanup_uar_table(mdev); mthca_close_hca(mdev); iounmap(mdev->hcr); - iounmap(mdev->ecr_base); - iounmap(mdev->clr_base); if (mdev->mthca_flags & MTHCA_FLAG_MSI_X) pci_disable_msix(pdev); Index: hw/mthca/mthca_memfree.h =================================================================== --- hw/mthca/mthca_memfree.h (revision 1701) +++ hw/mthca/mthca_memfree.h (working copy) @@ -52,13 +52,17 @@ struct mthca_icm_chunk { }; struct mthca_icm { + int refcount; struct list_head chunk_list; }; struct mthca_icm_table { u64 virt; int num_icm; - struct semaphore sem; + int num_obj; + int obj_size; + int lowmem; + struct semaphore mutex; struct mthca_icm *icm[0]; }; @@ -75,10 +79,12 @@ struct mthca_icm *mthca_alloc_icm(struct void mthca_free_icm(struct mthca_dev *dev, struct mthca_icm *icm); struct mthca_icm_table *mthca_alloc_icm_table(struct mthca_dev *dev, - u64 virt, unsigned size, - unsigned reserved, + u64 virt, int obj_size, + int nobj, int reserved, int use_lowmem); void mthca_free_icm_table(struct mthca_dev *dev, struct mthca_icm_table *table); +int mthca_table_get(struct mthca_dev *dev, struct mthca_icm_table *table, int obj); +void mthca_table_put(struct mthca_dev *dev, struct mthca_icm_table *table, int obj); static inline void mthca_icm_first(struct mthca_icm *icm, struct mthca_icm_iter *iter) @@ -119,4 +125,37 @@ static inline unsigned long mthca_icm_si return sg_dma_len(&iter->chunk->mem[iter->page_idx]); } +enum { + MTHCA_DB_REC_PER_PAGE = 4096 / 8 +}; + +struct mthca_db_page { + DECLARE_BITMAP(used, MTHCA_DB_REC_PER_PAGE); + u64 *db_rec; + dma_addr_t mapping; +}; + +struct mthca_db_table { + int npages; + int max_group1; + int min_group2; + struct mthca_db_page *page; + struct semaphore mutex; +}; + +enum { + MTHCA_DB_TYPE_INVALID = 0x0, + MTHCA_DB_TYPE_CQ_SET_CI = 0x1, + MTHCA_DB_TYPE_CQ_ARM = 0x2, + MTHCA_DB_TYPE_SQ = 0x3, + MTHCA_DB_TYPE_RQ = 0x4, + MTHCA_DB_TYPE_SRQ = 0x5, + MTHCA_DB_TYPE_GROUP_SEP = 0x7 +}; + +int mthca_init_db_tab(struct mthca_dev *dev); +void mthca_cleanup_db_tab(struct mthca_dev *dev); +int mthca_alloc_db(struct mthca_dev *dev, int type, u32 qn, u32 **db); +void mthca_free_db(struct mthca_dev *dev, int type, int db_index); + #endif /* MTHCA_MEMFREE_H */ Index: hw/mthca/mthca_provider.c =================================================================== --- hw/mthca/mthca_provider.c (revision 1701) +++ hw/mthca/mthca_provider.c (working copy) @@ -379,7 +379,9 @@ static struct ib_qp *mthca_create_qp(str return ERR_PTR(err); } - init_attr->cap.max_inline_data = 0; + init_attr->cap.max_inline_data = 0; + init_attr->cap.max_send_wr = qp->sq.max; + init_attr->cap.max_recv_wr = qp->rq.max; return &qp->ibqp; } @@ -422,13 +424,6 @@ static int mthca_destroy_cq(struct ib_cq return 0; } -static int mthca_req_notify_cq(struct ib_cq *cq, enum ib_cq_notify notify) -{ - mthca_arm_cq(to_mdev(cq->device), to_mcq(cq), - notify == IB_CQ_SOLICITED); - return 0; -} - static inline u32 convert_access(int acc) { return (acc & IB_ACCESS_REMOTE_ATOMIC ? MTHCA_MPT_FLAG_ATOMIC : 0) | @@ -621,12 +616,9 @@ int mthca_register_device(struct mthca_d dev->ib_dev.create_qp = mthca_create_qp; dev->ib_dev.modify_qp = mthca_modify_qp; dev->ib_dev.destroy_qp = mthca_destroy_qp; - dev->ib_dev.post_send = mthca_post_send; - dev->ib_dev.post_recv = mthca_post_receive; dev->ib_dev.create_cq = mthca_create_cq; dev->ib_dev.destroy_cq = mthca_destroy_cq; dev->ib_dev.poll_cq = mthca_poll_cq; - dev->ib_dev.req_notify_cq = mthca_req_notify_cq; dev->ib_dev.get_dma_mr = mthca_get_dma_mr; dev->ib_dev.reg_phys_mr = mthca_reg_phys_mr; dev->ib_dev.dereg_mr = mthca_dereg_mr; @@ -634,6 +626,16 @@ int mthca_register_device(struct mthca_d dev->ib_dev.detach_mcast = mthca_multicast_detach; dev->ib_dev.process_mad = mthca_process_mad; + if (dev->hca_type == ARBEL_NATIVE) { + dev->ib_dev.req_notify_cq = mthca_arbel_arm_cq; + dev->ib_dev.post_send = mthca_arbel_post_send; + dev->ib_dev.post_recv = mthca_arbel_post_receive; + } else { + dev->ib_dev.req_notify_cq = mthca_tavor_arm_cq; + dev->ib_dev.post_send = mthca_tavor_post_send; + dev->ib_dev.post_recv = mthca_tavor_post_receive; + } + init_MUTEX(&dev->cap_mask_mutex); ret = ib_register_device(&dev->ib_dev); Index: hw/mthca/mthca_provider.h =================================================================== --- hw/mthca/mthca_provider.h (revision 1701) +++ hw/mthca/mthca_provider.h (working copy) @@ -49,6 +49,11 @@ struct mthca_buf_list { DECLARE_PCI_UNMAP_ADDR(mapping) }; +struct mthca_uar { + unsigned long pfn; + int index; +}; + struct mthca_mr { struct ib_mr ibmr; int order; @@ -65,7 +70,7 @@ struct mthca_pd { struct mthca_eq { struct mthca_dev *dev; int eqn; - u32 ecr_mask; + u32 eqn_mask; u32 cons_index; u16 msi_x_vector; u16 msi_x_entry; @@ -77,12 +82,18 @@ struct mthca_eq { struct mthca_av; +enum mthca_ah_type { + MTHCA_AH_ON_HCA, + MTHCA_AH_PCI_POOL, + MTHCA_AH_KMALLOC +}; + struct mthca_ah { - struct ib_ah ibah; - int on_hca; - u32 key; - struct mthca_av *av; - dma_addr_t avdma; + struct ib_ah ibah; + enum mthca_ah_type type; + u32 key; + struct mthca_av *av; + dma_addr_t avdma; }; /* @@ -136,8 +147,16 @@ struct mthca_cq { spinlock_t lock; atomic_t refcount; int cqn; - int cons_index; + u32 cons_index; int is_direct; + + /* Next fields are Arbel only */ + int set_ci_db_index; + u32 *set_ci_db; + int arm_db_index; + u32 *arm_db; + int arm_sn; + union { struct mthca_buf_list direct; struct mthca_buf_list *page_list; @@ -155,6 +174,9 @@ struct mthca_wq { int max_gs; int wqe_shift; enum ib_sig_type policy; + + int db_index; /* Arbel only */ + u32 *db; }; struct mthca_qp { Index: hw/mthca/mthca_profile.c =================================================================== --- hw/mthca/mthca_profile.c (revision 1701) +++ hw/mthca/mthca_profile.c (working copy) @@ -236,15 +236,20 @@ u64 mthca_make_profile(struct mthca_dev init_hca->mtt_seg_sz = ffs(dev_lim->mtt_seg_sz) - 7; break; case MTHCA_RES_UAR: + dev->limits.num_uars = profile[i].num; init_hca->uar_scratch_base = profile[i].start; break; case MTHCA_RES_UDAV: dev->av_table.ddr_av_base = profile[i].start; dev->av_table.num_ddr_avs = profile[i].num; + break; case MTHCA_RES_UARC: - init_hca->uarc_base = profile[i].start; - init_hca->log_uarc_sz = ffs(request->uarc_size) - 13; - init_hca->log_uar_sz = ffs(request->num_uar) - 1; + dev->uar_table.uarc_size = request->uarc_size; + dev->uar_table.uarc_base = profile[i].start; + init_hca->uarc_base = profile[i].start; + init_hca->log_uarc_sz = ffs(request->uarc_size) - 13; + init_hca->log_uar_sz = ffs(request->num_uar) - 1; + break; default: break; } Index: hw/mthca/mthca_cq.c =================================================================== --- hw/mthca/mthca_cq.c (revision 1701) +++ hw/mthca/mthca_cq.c (working copy) @@ -39,6 +39,7 @@ #include "mthca_dev.h" #include "mthca_cmd.h" +#include "mthca_memfree.h" enum { MTHCA_MAX_DIRECT_CQ_SIZE = 4 * PAGE_SIZE @@ -55,7 +56,7 @@ struct mthca_cq_context { u32 flags; u64 start; u32 logsize_usrpage; - u32 error_eqn; + u32 error_eqn; /* Tavor only */ u32 comp_eqn; u32 pd; u32 lkey; @@ -64,7 +65,9 @@ struct mthca_cq_context { u32 consumer_index; u32 producer_index; u32 cqn; - u32 reserved[3]; + u32 ci_db; /* Arbel only */ + u32 state_db; /* Arbel only */ + u32 reserved; } __attribute__((packed)); #define MTHCA_CQ_STATUS_OK ( 0 << 28) @@ -133,11 +136,15 @@ struct mthca_err_cqe { #define MTHCA_CQ_ENTRY_OWNER_SW (0 << 7) #define MTHCA_CQ_ENTRY_OWNER_HW (1 << 7) -#define MTHCA_CQ_DB_INC_CI (1 << 24) -#define MTHCA_CQ_DB_REQ_NOT (2 << 24) -#define MTHCA_CQ_DB_REQ_NOT_SOL (3 << 24) -#define MTHCA_CQ_DB_SET_CI (4 << 24) -#define MTHCA_CQ_DB_REQ_NOT_MULT (5 << 24) +#define MTHCA_TAVOR_CQ_DB_INC_CI (1 << 24) +#define MTHCA_TAVOR_CQ_DB_REQ_NOT (2 << 24) +#define MTHCA_TAVOR_CQ_DB_REQ_NOT_SOL (3 << 24) +#define MTHCA_TAVOR_CQ_DB_SET_CI (4 << 24) +#define MTHCA_TAVOR_CQ_DB_REQ_NOT_MULT (5 << 24) + +#define MTHCA_ARBEL_CQ_DB_REQ_NOT_SOL (1 << 24) +#define MTHCA_ARBEL_CQ_DB_REQ_NOT (2 << 24) +#define MTHCA_ARBEL_CQ_DB_REQ_NOT_MULT (3 << 24) static inline struct mthca_cqe *get_cqe(struct mthca_cq *cq, int entry) { @@ -156,7 +163,7 @@ static inline struct mthca_cqe *cqe_sw(s static inline struct mthca_cqe *next_cqe_sw(struct mthca_cq *cq) { - return cqe_sw(cq, cq->cons_index); + return cqe_sw(cq, cq->cons_index & cq->ibcq.cqe); } static inline void set_cqe_hw(struct mthca_cqe *cqe) @@ -169,7 +176,7 @@ static inline void inc_cons_index(struct { u32 doorbell[2]; - doorbell[0] = cpu_to_be32(MTHCA_CQ_DB_INC_CI | cq->cqn); + doorbell[0] = cpu_to_be32(MTHCA_TAVOR_CQ_DB_INC_CI | cq->cqn); doorbell[1] = cpu_to_be32(nent - 1); mthca_write64(doorbell, @@ -188,6 +195,8 @@ void mthca_cq_event(struct mthca_dev *de return; } + ++cq->arm_sn; + cq->ibcq.comp_handler(&cq->ibcq, cq->ibcq.cq_context); } @@ -245,7 +254,7 @@ void mthca_cq_clean(struct mthca_dev *de if (nfreed) { wmb(); inc_cons_index(dev, cq, nfreed); - cq->cons_index = (cq->cons_index + nfreed) & cq->ibcq.cqe; + cq->cons_index = cq->cons_index + nfreed; } spin_unlock_irq(&cq->lock); @@ -504,7 +513,7 @@ static inline int mthca_poll_one(struct if (likely(free_cqe)) { set_cqe_hw(cqe); ++(*freed); - cq->cons_index = (cq->cons_index + 1) & cq->ibcq.cqe; + ++cq->cons_index; } return err; @@ -543,20 +552,57 @@ int mthca_poll_cq(struct ib_cq *ibcq, in return err == 0 || err == -EAGAIN ? npolled : err; } -void mthca_arm_cq(struct mthca_dev *dev, struct mthca_cq *cq, - int solicited) +int mthca_tavor_arm_cq(struct ib_cq *cq, enum ib_cq_notify notify) { u32 doorbell[2]; - doorbell[0] = cpu_to_be32((solicited ? - MTHCA_CQ_DB_REQ_NOT_SOL : - MTHCA_CQ_DB_REQ_NOT) | - cq->cqn); + doorbell[0] = cpu_to_be32((notify == IB_CQ_SOLICITED ? + MTHCA_TAVOR_CQ_DB_REQ_NOT_SOL : + MTHCA_TAVOR_CQ_DB_REQ_NOT) | + to_mcq(cq)->cqn); doorbell[1] = 0xffffffff; mthca_write64(doorbell, - dev->kar + MTHCA_CQ_DOORBELL, - MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock)); + to_mdev(cq->device)->kar + MTHCA_CQ_DOORBELL, + MTHCA_GET_DOORBELL_LOCK(&to_mdev(cq->device)->doorbell_lock)); + + return 0; +} + +int mthca_arbel_arm_cq(struct ib_cq *ibcq, enum ib_cq_notify notify) +{ + struct mthca_cq *cq = to_mcq(ibcq); + u32 doorbell[2]; + u32 sn; + u32 ci; + + sn = cq->arm_sn & 3; + ci = cpu_to_be32(cq->cons_index); + + doorbell[0] = ci; + doorbell[1] = cpu_to_be32((cq->cqn << 8) | (2 << 5) | (sn << 3) | + (notify == IB_CQ_SOLICITED ? 1 : 2)); + + mthca_write_db_rec(doorbell, cq->arm_db); + + /* + * Make sure that the doorbell record in host memory is + * written before ringing the doorbell via PCI MMIO. + */ + wmb(); + + doorbell[0] = cpu_to_be32((sn << 28) | + (notify == IB_CQ_SOLICITED ? + MTHCA_ARBEL_CQ_DB_REQ_NOT_SOL : + MTHCA_ARBEL_CQ_DB_REQ_NOT) | + cq->cqn); + doorbell[1] = ci; + + mthca_write64(doorbell, + to_mdev(ibcq->device)->kar + MTHCA_CQ_DOORBELL, + MTHCA_GET_DOORBELL_LOCK(&to_mdev(ibcq->device)->doorbell_lock)); + + return 0; } int mthca_init_cq(struct mthca_dev *dev, int nent, @@ -574,10 +620,34 @@ int mthca_init_cq(struct mthca_dev *dev, might_sleep(); + cq->cqn = mthca_alloc(&dev->cq_table.alloc); + if (cq->cqn == -1) + return -ENOMEM; + + if (dev->hca_type == ARBEL_NATIVE) { + cq->arm_sn = 1; + + err = mthca_table_get(dev, dev->cq_table.table, cq->cqn); + if (err) + goto err_out; + + err = -ENOMEM; + + cq->set_ci_db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_CQ_SET_CI, + cq->cqn, &cq->set_ci_db); + if (cq->set_ci_db_index < 0) + goto err_out_icm; + + cq->arm_db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_CQ_ARM, + cq->cqn, &cq->arm_db); + if (cq->arm_db_index < 0) + goto err_out_ci; + } + mailbox = kmalloc(sizeof (struct mthca_cq_context) + MTHCA_CMD_MAILBOX_EXTRA, GFP_KERNEL); if (!mailbox) - goto err_out; + goto err_out_mailbox; cq_context = MAILBOX_ALIGN(mailbox); @@ -592,7 +662,7 @@ int mthca_init_cq(struct mthca_dev *dev, cq->queue.direct.buf = pci_alloc_consistent(dev->pdev, size, &t); if (!cq->queue.direct.buf) - goto err_out; + goto err_out_mailbox; pci_unmap_addr_set(&cq->queue.direct, mapping, t); @@ -619,12 +689,12 @@ int mthca_init_cq(struct mthca_dev *dev, dma_list = kmalloc(npages * sizeof *dma_list, GFP_KERNEL); if (!dma_list) - goto err_out; + goto err_out_mailbox; cq->queue.page_list = kmalloc(npages * sizeof *cq->queue.page_list, GFP_KERNEL); if (!cq->queue.page_list) - goto err_out; + goto err_out_mailbox; for (i = 0; i < npages; ++i) cq->queue.page_list[i].buf = NULL; @@ -645,10 +715,6 @@ int mthca_init_cq(struct mthca_dev *dev, for (i = 0; i < nent; ++i) set_cqe_hw(get_cqe(cq, i)); - cq->cqn = mthca_alloc(&dev->cq_table.alloc); - if (cq->cqn == -1) - goto err_out_free; - err = mthca_mr_alloc_phys(dev, dev->driver_pd.pd_num, dma_list, shift, npages, 0, size, @@ -656,7 +722,7 @@ int mthca_init_cq(struct mthca_dev *dev, MTHCA_MPT_FLAG_LOCAL_READ, &cq->mr); if (err) - goto err_out_free_cq; + goto err_out_free; spin_lock_init(&cq->lock); atomic_set(&cq->refcount, 1); @@ -668,13 +734,18 @@ int mthca_init_cq(struct mthca_dev *dev, MTHCA_CQ_FLAG_TR); cq_context->start = cpu_to_be64(0); cq_context->logsize_usrpage = cpu_to_be32((ffs(nent) - 1) << 24 | - MTHCA_KAR_PAGE); + dev->driver_uar.index); cq_context->error_eqn = cpu_to_be32(dev->eq_table.eq[MTHCA_EQ_ASYNC].eqn); cq_context->comp_eqn = cpu_to_be32(dev->eq_table.eq[MTHCA_EQ_COMP].eqn); cq_context->pd = cpu_to_be32(dev->driver_pd.pd_num); cq_context->lkey = cpu_to_be32(cq->mr.ibmr.lkey); cq_context->cqn = cpu_to_be32(cq->cqn); + if (dev->hca_type == ARBEL_NATIVE) { + cq_context->ci_db = cpu_to_be32(cq->set_ci_db_index); + cq_context->state_db = cpu_to_be32(cq->arm_db_index); + } + err = mthca_SW2HW_CQ(dev, cq_context, cq->cqn, &status); if (err) { mthca_warn(dev, "SW2HW_CQ failed (%d)\n", err); @@ -707,9 +778,6 @@ int mthca_init_cq(struct mthca_dev *dev, err_out_free_mr: mthca_free_mr(dev, &cq->mr); - err_out_free_cq: - mthca_free(&dev->cq_table.alloc, cq->cqn); - err_out_free: if (cq->is_direct) pci_free_consistent(dev->pdev, size, @@ -726,10 +794,21 @@ int mthca_init_cq(struct mthca_dev *dev, kfree(cq->queue.page_list); } - err_out: + err_out_mailbox: kfree(dma_list); kfree(mailbox); + mthca_free_db(dev, MTHCA_DB_TYPE_CQ_ARM, cq->arm_db_index); + + err_out_ci: + mthca_free_db(dev, MTHCA_DB_TYPE_CQ_SET_CI, cq->set_ci_db_index); + + err_out_icm: + mthca_table_put(dev, dev->cq_table.table, cq->cqn); + + err_out: + mthca_free(&dev->cq_table.alloc, cq->cqn); + return err; } @@ -802,6 +881,11 @@ void mthca_free_cq(struct mthca_dev *dev kfree(cq->queue.page_list); } + if (dev->hca_type == ARBEL_NATIVE) { + mthca_free_db(dev, MTHCA_DB_TYPE_CQ_ARM, cq->arm_db_index); + mthca_free_db(dev, MTHCA_DB_TYPE_CQ_SET_CI, cq->set_ci_db_index); + } + mthca_free(&dev->cq_table.alloc, cq->cqn); kfree(mailbox); } Index: hw/mthca/mthca_cmd.c =================================================================== --- hw/mthca/mthca_cmd.c (revision 1701) +++ hw/mthca/mthca_cmd.c (working copy) @@ -1290,7 +1290,7 @@ int mthca_MAP_ICM_page(struct mthca_dev return -ENOMEM; inbox[0] = cpu_to_be64(virt); - inbox[1] = cpu_to_be64(dma_addr | (PAGE_SHIFT - 12)); + inbox[1] = cpu_to_be64(dma_addr); err = mthca_cmd(dev, indma, 1, 0, CMD_MAP_ICM, CMD_TIME_CLASS_B, status); @@ -1305,6 +1305,9 @@ int mthca_MAP_ICM_page(struct mthca_dev int mthca_UNMAP_ICM(struct mthca_dev *dev, u64 virt, u32 page_count, u8 *status) { + mthca_dbg(dev, "Unmapping %d pages at %llx from ICM.\n", + page_count, (unsigned long long) virt); + return mthca_cmd(dev, virt, page_count, 0, CMD_UNMAP_ICM, CMD_TIME_CLASS_B, status); } @@ -1538,10 +1541,10 @@ int mthca_MODIFY_QP(struct mthca_dev *de if (0) { int i; mthca_dbg(dev, "Dumping QP context:\n"); - printk(" %08x\n", be32_to_cpup(qp_context)); + printk(" opt param mask: %08x\n", be32_to_cpup(qp_context)); for (i = 0; i < 0x100 / 4; ++i) { if (i % 8 == 0) - printk("[%02x] ", i * 4); + printk(" [%02x] ", i * 4); printk(" %08x", be32_to_cpu(((u32 *) qp_context)[i + 2])); if ((i + 1) % 8 == 0) printk("\n"); Index: hw/mthca/mthca_eq.c =================================================================== --- hw/mthca/mthca_eq.c (revision 1701) +++ hw/mthca/mthca_eq.c (working copy) @@ -54,10 +54,10 @@ struct mthca_eq_context { u32 flags; u64 start; u32 logsize_usrpage; - u32 pd; + u32 tavor_pd; /* reserved for Arbel */ u8 reserved1[3]; u8 intr; - u32 lost_count; + u32 arbel_pd; /* lost_count for Tavor */ u32 lkey; u32 reserved2[2]; u32 consumer_index; @@ -75,6 +75,7 @@ struct mthca_eq_context { #define MTHCA_EQ_STATE_ARMED ( 1 << 8) #define MTHCA_EQ_STATE_FIRED ( 2 << 8) #define MTHCA_EQ_STATE_ALWAYS_ARMED ( 3 << 8) +#define MTHCA_EQ_STATE_ARBEL ( 8 << 8) enum { MTHCA_EVENT_TYPE_COMP = 0x00, @@ -164,19 +165,46 @@ static inline u64 async_mask(struct mthc MTHCA_ASYNC_EVENT_MASK; } -static inline void set_eq_ci(struct mthca_dev *dev, struct mthca_eq *eq, u32 ci) +static inline void tavor_set_eq_ci(struct mthca_dev *dev, struct mthca_eq *eq, u32 ci) { u32 doorbell[2]; doorbell[0] = cpu_to_be32(MTHCA_EQ_DB_SET_CI | eq->eqn); doorbell[1] = cpu_to_be32(ci & (eq->nent - 1)); + /* + * This barrier makes sure that all updates to ownership bits + * done by set_eqe_hw() hit memory before the consumer index + * is updated. set_eq_ci() allows the HCA to possibly write + * more EQ entries, and we want to avoid the exceedingly + * unlikely possibility of the HCA writing an entry and then + * having set_eqe_hw() overwrite the owner field. + */ + wmb(); mthca_write64(doorbell, dev->kar + MTHCA_EQ_DOORBELL, MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock)); } -static inline void eq_req_not(struct mthca_dev *dev, int eqn) +static inline void arbel_set_eq_ci(struct mthca_dev *dev, struct mthca_eq *eq, u32 ci) +{ + /* See comment in tavor_set_eq_ci() above. */ + wmb(); + __raw_writel(cpu_to_be32(ci), dev->eq_regs.arbel.eq_set_ci_base + + eq->eqn * 8); + /* We still want ordering, just not swabbing, so add a barrier */ + mb(); +} + +static inline void set_eq_ci(struct mthca_dev *dev, struct mthca_eq *eq, u32 ci) +{ + if (dev->hca_type == ARBEL_NATIVE) + arbel_set_eq_ci(dev, eq, ci); + else + tavor_set_eq_ci(dev, eq, ci); +} + +static inline void tavor_eq_req_not(struct mthca_dev *dev, int eqn) { u32 doorbell[2]; @@ -188,6 +216,11 @@ static inline void eq_req_not(struct mth MTHCA_GET_DOORBELL_LOCK(&dev->doorbell_lock)); } +static inline void arbel_eq_req_not(struct mthca_dev *dev, u32 eqn_mask) +{ + writel(eqn_mask, dev->eq_regs.arbel.eq_arm); +} + static inline void disarm_cq(struct mthca_dev *dev, int eqn, int cqn) { u32 doorbell[2]; @@ -232,7 +265,7 @@ static void port_change(struct mthca_dev ib_dispatch_event(&record); } -static void mthca_eq_int(struct mthca_dev *dev, struct mthca_eq *eq) +static int mthca_eq_int(struct mthca_dev *dev, struct mthca_eq *eq) { struct mthca_eqe *eqe; int disarm_cqn; @@ -333,30 +366,24 @@ static void mthca_eq_int(struct mthca_de ++eq->cons_index; eqes_found = 1; - if (set_ci) { - wmb(); /* see comment below */ + if (unlikely(set_ci)) { + /* + * Conditional on hca_type is OK here because + * this is a rare case, not the fast path. + */ set_eq_ci(dev, eq, eq->cons_index); set_ci = 0; } } /* - * This barrier makes sure that all updates to - * ownership bits done by set_eqe_hw() hit memory - * before the consumer index is updated. set_eq_ci() - * allows the HCA to possibly write more EQ entries, - * and we want to avoid the exceedingly unlikely - * possibility of the HCA writing an entry and then - * having set_eqe_hw() overwrite the owner field. + * Rely on caller to set consumer index so that we don't have + * to test hca_type in our interrupt handling fast path. */ - if (likely(eqes_found)) { - wmb(); - set_eq_ci(dev, eq, eq->cons_index); - } - eq_req_not(dev, eq->eqn); + return eqes_found; } -static irqreturn_t mthca_interrupt(int irq, void *dev_ptr, struct pt_regs *regs) +static irqreturn_t mthca_tavor_interrupt(int irq, void *dev_ptr, struct pt_regs *regs) { struct mthca_dev *dev = dev_ptr; u32 ecr; @@ -366,27 +393,70 @@ static irqreturn_t mthca_interrupt(int i if (dev->eq_table.clr_mask) writel(dev->eq_table.clr_mask, dev->eq_table.clr_int); - if ((ecr = readl(dev->ecr_base + 4)) != 0) { + if ((ecr = readl(dev->eq_regs.tavor.ecr_base + 4)) != 0) { work = 1; - writel(ecr, dev->ecr_base + + writel(ecr, dev->eq_regs.tavor.ecr_base + MTHCA_ECR_CLR_BASE - MTHCA_ECR_BASE + 4); for (i = 0; i < MTHCA_NUM_EQ; ++i) - if (ecr & dev->eq_table.eq[i].ecr_mask) - mthca_eq_int(dev, &dev->eq_table.eq[i]); + if (ecr & dev->eq_table.eq[i].eqn_mask && + mthca_eq_int(dev, &dev->eq_table.eq[i])) { + tavor_set_eq_ci(dev, &dev->eq_table.eq[i], + dev->eq_table.eq[i].cons_index); + tavor_eq_req_not(dev, dev->eq_table.eq[i].eqn); + } } return IRQ_RETVAL(work); } -static irqreturn_t mthca_msi_x_interrupt(int irq, void *eq_ptr, +static irqreturn_t mthca_tavor_msi_x_interrupt(int irq, void *eq_ptr, struct pt_regs *regs) { struct mthca_eq *eq = eq_ptr; struct mthca_dev *dev = eq->dev; - mthca_eq_int(dev, eq); + if (mthca_eq_int(dev, eq)) { + tavor_set_eq_ci(dev, eq, eq->cons_index); + tavor_eq_req_not(dev, eq->eqn); + } + + /* MSI-X vectors always belong to us */ + return IRQ_HANDLED; +} + +static irqreturn_t mthca_arbel_interrupt(int irq, void *dev_ptr, struct pt_regs *regs) +{ + struct mthca_dev *dev = dev_ptr; + u32 arm = 0; + int i; + + if (dev->eq_table.clr_mask) + writel(dev->eq_table.clr_mask, dev->eq_table.clr_int); + + for (i = 0; i < MTHCA_NUM_EQ; ++i) + if (mthca_eq_int(dev, &dev->eq_table.eq[i])) { + arbel_set_eq_ci(dev, &dev->eq_table.eq[i], + dev->eq_table.eq[i].cons_index); + arm |= dev->eq_table.eq[i].eqn_mask; + } + + arbel_eq_req_not(dev, arm); + + return IRQ_RETVAL(arm); +} + +static irqreturn_t mthca_arbel_msi_x_interrupt(int irq, void *eq_ptr, + struct pt_regs *regs) +{ + struct mthca_eq *eq = eq_ptr; + struct mthca_dev *dev = eq->dev; + + if (mthca_eq_int(dev, eq)) { + arbel_set_eq_ci(dev, eq, eq->cons_index); + arbel_eq_req_not(dev, eq->eqn_mask); + } /* MSI-X vectors always belong to us */ return IRQ_HANDLED; @@ -467,10 +537,16 @@ static int __devinit mthca_create_eq(str MTHCA_EQ_OWNER_HW | MTHCA_EQ_STATE_ARMED | MTHCA_EQ_FLAG_TR); - eq_context->start = cpu_to_be64(0); - eq_context->logsize_usrpage = cpu_to_be32((ffs(nent) - 1) << 24 | - MTHCA_KAR_PAGE); - eq_context->pd = cpu_to_be32(dev->driver_pd.pd_num); + if (dev->hca_type == ARBEL_NATIVE) + eq_context->flags |= cpu_to_be32(MTHCA_EQ_STATE_ARBEL); + + eq_context->logsize_usrpage = cpu_to_be32((ffs(nent) - 1) << 24); + if (dev->hca_type == ARBEL_NATIVE) { + eq_context->arbel_pd = cpu_to_be32(dev->driver_pd.pd_num); + } else { + eq_context->logsize_usrpage |= cpu_to_be32(dev->driver_uar.index); + eq_context->tavor_pd = cpu_to_be32(dev->driver_pd.pd_num); + } eq_context->intr = intr; eq_context->lkey = cpu_to_be32(eq->mr.ibmr.lkey); @@ -489,11 +565,9 @@ static int __devinit mthca_create_eq(str kfree(dma_list); kfree(mailbox); - eq->ecr_mask = swab32(1 << eq->eqn); + eq->eqn_mask = swab32(1 << eq->eqn); eq->cons_index = 0; - eq_req_not(dev, eq->eqn); - mthca_dbg(dev, "Allocated EQ %d with %d entries\n", eq->eqn, nent); @@ -555,7 +629,6 @@ static void mthca_free_eq(struct mthca_d } } - mthca_free_mr(dev, &eq->mr); for (i = 0; i < npages; ++i) pci_free_consistent(dev->pdev, PAGE_SIZE, @@ -578,6 +651,129 @@ static void mthca_free_irqs(struct mthca dev->eq_table.eq + i); } +static int __devinit mthca_map_reg(struct mthca_dev *dev, + unsigned long offset, unsigned long size, + void __iomem **map) +{ + unsigned long base = pci_resource_start(dev->pdev, 0); + + if (!request_mem_region(base + offset, size, DRV_NAME)) + return -EBUSY; + + *map = ioremap(base + offset, size); + if (!*map) { + release_mem_region(base + offset, size); + return -ENOMEM; + } + + return 0; +} + +static void mthca_unmap_reg(struct mthca_dev *dev, unsigned long offset, + unsigned long size, void __iomem *map) +{ + unsigned long base = pci_resource_start(dev->pdev, 0); + + release_mem_region(base + offset, size); + iounmap(map); +} + +static int __devinit mthca_map_eq_regs(struct mthca_dev *dev) +{ + unsigned long mthca_base; + + mthca_base = pci_resource_start(dev->pdev, 0); + + if (dev->hca_type == ARBEL_NATIVE) { + /* + * We assume that the EQ arm and EQ set CI registers + * fall within the first BAR. We can't trust the + * values firmware gives us, since those addresses are + * valid on the HCA's side of the PCI bus but not + * necessarily the host side. + */ + if (mthca_map_reg(dev, (pci_resource_len(dev->pdev, 0) - 1) & + dev->fw.arbel.clr_int_base, MTHCA_CLR_INT_SIZE, + &dev->clr_base)) { + mthca_err(dev, "Couldn't map interrupt clear register, " + "aborting.\n"); + return -ENOMEM; + } + + /* + * Add 4 because we limit ourselves to EQs 0 ... 31, + * so we only need the low word of the register. + */ + if (mthca_map_reg(dev, ((pci_resource_len(dev->pdev, 0) - 1) & + dev->fw.arbel.eq_arm_base) + 4, 4, + &dev->eq_regs.arbel.eq_arm)) { + mthca_err(dev, "Couldn't map interrupt clear register, " + "aborting.\n"); + mthca_unmap_reg(dev, (pci_resource_len(dev->pdev, 0) - 1) & + dev->fw.arbel.clr_int_base, MTHCA_CLR_INT_SIZE, + dev->clr_base); + return -ENOMEM; + } + + if (mthca_map_reg(dev, (pci_resource_len(dev->pdev, 0) - 1) & + dev->fw.arbel.eq_set_ci_base, + MTHCA_EQ_SET_CI_SIZE, + &dev->eq_regs.arbel.eq_set_ci_base)) { + mthca_err(dev, "Couldn't map interrupt clear register, " + "aborting.\n"); + mthca_unmap_reg(dev, ((pci_resource_len(dev->pdev, 0) - 1) & + dev->fw.arbel.eq_arm_base) + 4, 4, + dev->eq_regs.arbel.eq_arm); + mthca_unmap_reg(dev, (pci_resource_len(dev->pdev, 0) - 1) & + dev->fw.arbel.clr_int_base, MTHCA_CLR_INT_SIZE, + dev->clr_base); + return -ENOMEM; + } + } else { + if (mthca_map_reg(dev, MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE, + &dev->clr_base)) { + mthca_err(dev, "Couldn't map interrupt clear register, " + "aborting.\n"); + return -ENOMEM; + } + + if (mthca_map_reg(dev, MTHCA_ECR_BASE, + MTHCA_ECR_SIZE + MTHCA_ECR_CLR_SIZE, + &dev->eq_regs.tavor.ecr_base)) { + mthca_err(dev, "Couldn't map ecr register, " + "aborting.\n"); + mthca_unmap_reg(dev, MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE, + dev->clr_base); + return -ENOMEM; + } + } + + return 0; + +} + +static void __devexit mthca_unmap_eq_regs(struct mthca_dev *dev) +{ + if (dev->hca_type == ARBEL_NATIVE) { + mthca_unmap_reg(dev, (pci_resource_len(dev->pdev, 0) - 1) & + dev->fw.arbel.eq_set_ci_base, + MTHCA_EQ_SET_CI_SIZE, + dev->eq_regs.arbel.eq_set_ci_base); + mthca_unmap_reg(dev, ((pci_resource_len(dev->pdev, 0) - 1) & + dev->fw.arbel.eq_arm_base) + 4, 4, + dev->eq_regs.arbel.eq_arm); + mthca_unmap_reg(dev, (pci_resource_len(dev->pdev, 0) - 1) & + dev->fw.arbel.clr_int_base, MTHCA_CLR_INT_SIZE, + dev->clr_base); + } else { + mthca_unmap_reg(dev, MTHCA_ECR_BASE, + MTHCA_ECR_SIZE + MTHCA_ECR_CLR_SIZE, + dev->eq_regs.tavor.ecr_base); + mthca_unmap_reg(dev, MTHCA_CLR_INT_BASE, MTHCA_CLR_INT_SIZE, + dev->clr_base); + } +} + int __devinit mthca_map_eq_icm(struct mthca_dev *dev, u64 icm_virt) { int ret; @@ -636,6 +832,10 @@ int __devinit mthca_init_eq_table(struct if (err) return err; + err = mthca_map_eq_regs(dev); + if (err) + goto err_out_free; + if (dev->mthca_flags & MTHCA_FLAG_MSI || dev->mthca_flags & MTHCA_FLAG_MSI_X) { dev->eq_table.clr_mask = 0; @@ -653,7 +853,7 @@ int __devinit mthca_init_eq_table(struct (dev->mthca_flags & MTHCA_FLAG_MSI_X) ? 128 : intr, &dev->eq_table.eq[MTHCA_EQ_COMP]); if (err) - goto err_out_free; + goto err_out_unmap; err = mthca_create_eq(dev, MTHCA_NUM_ASYNC_EQE, (dev->mthca_flags & MTHCA_FLAG_MSI_X) ? 129 : intr, @@ -676,15 +876,20 @@ int __devinit mthca_init_eq_table(struct for (i = 0; i < MTHCA_NUM_EQ; ++i) { err = request_irq(dev->eq_table.eq[i].msi_x_vector, - mthca_msi_x_interrupt, 0, - eq_name[i], dev->eq_table.eq + i); + dev->hca_type == ARBEL_NATIVE ? + mthca_arbel_msi_x_interrupt : + mthca_tavor_msi_x_interrupt, + 0, eq_name[i], dev->eq_table.eq + i); if (err) goto err_out_cmd; dev->eq_table.eq[i].have_irq = 1; } } else { - err = request_irq(dev->pdev->irq, mthca_interrupt, SA_SHIRQ, - DRV_NAME, dev); + err = request_irq(dev->pdev->irq, + dev->hca_type == ARBEL_NATIVE ? + mthca_arbel_interrupt : + mthca_tavor_interrupt, + SA_SHIRQ, DRV_NAME, dev); if (err) goto err_out_cmd; dev->eq_table.have_irq = 1; @@ -708,6 +913,12 @@ int __devinit mthca_init_eq_table(struct mthca_warn(dev, "MAP_EQ for cmd EQ %d returned status 0x%02x\n", dev->eq_table.eq[MTHCA_EQ_CMD].eqn, status); + for (i = 0; i < MTHCA_EQ_CMD; ++i) + if (dev->hca_type == ARBEL_NATIVE) + arbel_eq_req_not(dev, dev->eq_table.eq[i].eqn_mask); + else + tavor_eq_req_not(dev, dev->eq_table.eq[i].eqn); + return 0; err_out_cmd: @@ -720,6 +931,9 @@ err_out_async: err_out_comp: mthca_free_eq(dev, &dev->eq_table.eq[MTHCA_EQ_COMP]); +err_out_unmap: + mthca_unmap_eq_regs(dev); + err_out_free: mthca_alloc_cleanup(&dev->eq_table.alloc); return err; @@ -740,5 +954,7 @@ void __devexit mthca_cleanup_eq_table(st for (i = 0; i < MTHCA_NUM_EQ; ++i) mthca_free_eq(dev, &dev->eq_table.eq[i]); + mthca_unmap_eq_regs(dev); + mthca_alloc_cleanup(&dev->eq_table.alloc); } Index: hw/mthca/mthca_av.c =================================================================== --- hw/mthca/mthca_av.c (revision 1701) +++ hw/mthca/mthca_av.c (working copy) @@ -60,27 +60,34 @@ int mthca_create_ah(struct mthca_dev *de u32 index = -1; struct mthca_av *av = NULL; - ah->on_hca = 0; + ah->type = MTHCA_AH_PCI_POOL; - if (!atomic_read(&pd->sqp_count) && - !(dev->mthca_flags & MTHCA_FLAG_DDR_HIDDEN)) { + if (dev->hca_type == ARBEL_NATIVE) { + ah->av = kmalloc(sizeof *ah->av, GFP_KERNEL); + if (!ah->av) + return -ENOMEM; + + ah->type = MTHCA_AH_KMALLOC; + av = ah->av; + } else if (!atomic_read(&pd->sqp_count) && + !(dev->mthca_flags & MTHCA_FLAG_DDR_HIDDEN)) { index = mthca_alloc(&dev->av_table.alloc); /* fall back to allocate in host memory */ if (index == -1) - goto host_alloc; + goto on_hca_fail; av = kmalloc(sizeof *av, GFP_KERNEL); if (!av) - goto host_alloc; + goto on_hca_fail; - ah->on_hca = 1; + ah->type = MTHCA_AH_ON_HCA; ah->avdma = dev->av_table.ddr_av_base + index * MTHCA_AV_SIZE; } - host_alloc: - if (!ah->on_hca) { +on_hca_fail: + if (ah->type == MTHCA_AH_PCI_POOL) { ah->av = pci_pool_alloc(dev->av_table.pool, SLAB_KERNEL, &ah->avdma); if (!ah->av) @@ -123,7 +130,7 @@ int mthca_create_ah(struct mthca_dev *de j * 4, be32_to_cpu(((u32 *) av)[j])); } - if (ah->on_hca) { + if (ah->type == MTHCA_AH_ON_HCA) { memcpy_toio(dev->av_table.av_map + index * MTHCA_AV_SIZE, av, MTHCA_AV_SIZE); kfree(av); @@ -134,12 +141,21 @@ int mthca_create_ah(struct mthca_dev *de int mthca_destroy_ah(struct mthca_dev *dev, struct mthca_ah *ah) { - if (ah->on_hca) + switch (ah->type) { + case MTHCA_AH_ON_HCA: mthca_free(&dev->av_table.alloc, (ah->avdma - dev->av_table.ddr_av_base) / MTHCA_AV_SIZE); - else + break; + + case MTHCA_AH_PCI_POOL: pci_pool_free(dev->av_table.pool, ah->av, ah->avdma); + break; + + case MTHCA_AH_KMALLOC: + kfree(ah->av); + break; + } return 0; } @@ -147,7 +163,7 @@ int mthca_destroy_ah(struct mthca_dev *d int mthca_read_ah(struct mthca_dev *dev, struct mthca_ah *ah, struct ib_ud_header *header) { - if (ah->on_hca) + if (ah->type == MTHCA_AH_ON_HCA) return -EINVAL; header->lrh.service_level = be32_to_cpu(ah->av->sl_tclass_flowlabel) >> 28; @@ -176,6 +192,9 @@ int __devinit mthca_init_av_table(struct { int err; + if (dev->hca_type == ARBEL_NATIVE) + return 0; + err = mthca_alloc_init(&dev->av_table.alloc, dev->av_table.num_ddr_avs, dev->av_table.num_ddr_avs - 1, @@ -212,6 +231,9 @@ int __devinit mthca_init_av_table(struct void __devexit mthca_cleanup_av_table(struct mthca_dev *dev) { + if (dev->hca_type == ARBEL_NATIVE) + return; + if (dev->av_table.av_map) iounmap(dev->av_table.av_map); pci_pool_destroy(dev->av_table.pool); Index: hw/mthca/mthca_config_reg.h =================================================================== --- hw/mthca/mthca_config_reg.h (revision 1701) +++ hw/mthca/mthca_config_reg.h (working copy) @@ -46,5 +46,6 @@ #define MTHCA_MAP_ECR_SIZE (MTHCA_ECR_SIZE + MTHCA_ECR_CLR_SIZE) #define MTHCA_CLR_INT_BASE 0xf00d8 #define MTHCA_CLR_INT_SIZE 0x00008 +#define MTHCA_EQ_SET_CI_SIZE (8 * 32) #endif /* MTHCA_CONFIG_REG_H */ Index: hw/mthca/mthca_doorbell.h =================================================================== --- hw/mthca/mthca_doorbell.h (revision 1701) +++ hw/mthca/mthca_doorbell.h (working copy) @@ -57,6 +57,11 @@ static inline void mthca_write64(u32 val __raw_writeq(*(u64 *) val, dest); } +static inline void mthca_write_db_rec(u32 val[2], u32 *db) +{ + *(u64 *) db = *(u64 *) val; +} + #else /* @@ -80,4 +85,11 @@ static inline void mthca_write64(u32 val spin_unlock_irqrestore(doorbell_lock, flags); } +static inline void mthca_write_db_rec(u32 val[2], u32 *db) +{ + db[0] = val[0]; + wmb(); + db[1] = val[1]; +} + #endif Index: hw/mthca/mthca_mr.c =================================================================== --- hw/mthca/mthca_mr.c (revision 1701) +++ hw/mthca/mthca_mr.c (working copy) @@ -53,7 +53,8 @@ struct mthca_mpt_entry { u32 window_count; u32 window_count_limit; u64 mtt_seg; - u32 reserved[3]; + u32 mtt_sz; /* Arbel only */ + u32 reserved[2]; } __attribute__((packed)); #define MTHCA_MPT_FLAG_SW_OWNS (0xfUL << 28) @@ -121,21 +122,38 @@ static void mthca_free_mtt(struct mthca_ spin_unlock(&dev->mr_table.mpt_alloc.lock); } +static inline u32 hw_index_to_key(struct mthca_dev *dev, u32 ind) +{ + if (dev->hca_type == ARBEL_NATIVE) + return (ind >> 24) | (ind << 8); + else + return ind; +} + +static inline u32 key_to_hw_index(struct mthca_dev *dev, u32 key) +{ + if (dev->hca_type == ARBEL_NATIVE) + return (key << 24) | (key >> 8); + else + return key; +} + int mthca_mr_alloc_notrans(struct mthca_dev *dev, u32 pd, u32 access, struct mthca_mr *mr) { void *mailbox; struct mthca_mpt_entry *mpt_entry; + u32 key; int err; u8 status; might_sleep(); mr->order = -1; - mr->ibmr.lkey = mthca_alloc(&dev->mr_table.mpt_alloc); - if (mr->ibmr.lkey == -1) + key = mthca_alloc(&dev->mr_table.mpt_alloc); + if (key == -1) return -ENOMEM; - mr->ibmr.rkey = mr->ibmr.lkey; + mr->ibmr.rkey = mr->ibmr.lkey = hw_index_to_key(dev, key); mailbox = kmalloc(sizeof *mpt_entry + MTHCA_CMD_MAILBOX_EXTRA, GFP_KERNEL); @@ -151,7 +169,7 @@ int mthca_mr_alloc_notrans(struct mthca_ MTHCA_MPT_FLAG_REGION | access); mpt_entry->page_size = 0; - mpt_entry->key = cpu_to_be32(mr->ibmr.lkey); + mpt_entry->key = cpu_to_be32(key); mpt_entry->pd = cpu_to_be32(pd); mpt_entry->start = 0; mpt_entry->length = ~0ULL; @@ -160,7 +178,7 @@ int mthca_mr_alloc_notrans(struct mthca_ sizeof *mpt_entry - offsetof(struct mthca_mpt_entry, lkey)); err = mthca_SW2HW_MPT(dev, mpt_entry, - mr->ibmr.lkey & (dev->limits.num_mpts - 1), + key & (dev->limits.num_mpts - 1), &status); if (err) mthca_warn(dev, "SW2HW_MPT failed (%d)\n", err); @@ -182,6 +200,7 @@ int mthca_mr_alloc_phys(struct mthca_dev void *mailbox; u64 *mtt_entry; struct mthca_mpt_entry *mpt_entry; + u32 key; int err = -ENOMEM; u8 status; int i; @@ -189,10 +208,10 @@ int mthca_mr_alloc_phys(struct mthca_dev might_sleep(); WARN_ON(buffer_size_shift >= 32); - mr->ibmr.lkey = mthca_alloc(&dev->mr_table.mpt_alloc); - if (mr->ibmr.lkey == -1) + key = mthca_alloc(&dev->mr_table.mpt_alloc); + if (key == -1) return -ENOMEM; - mr->ibmr.rkey = mr->ibmr.lkey; + mr->ibmr.rkey = mr->ibmr.lkey = hw_index_to_key(dev, key); for (i = dev->limits.mtt_seg_size / 8, mr->order = 0; i < list_len; @@ -254,7 +273,7 @@ int mthca_mr_alloc_phys(struct mthca_dev access); mpt_entry->page_size = cpu_to_be32(buffer_size_shift - 12); - mpt_entry->key = cpu_to_be32(mr->ibmr.lkey); + mpt_entry->key = cpu_to_be32(key); mpt_entry->pd = cpu_to_be32(pd); mpt_entry->start = cpu_to_be64(iova); mpt_entry->length = cpu_to_be64(total_size); @@ -264,7 +283,7 @@ int mthca_mr_alloc_phys(struct mthca_dev mr->first_seg * dev->limits.mtt_seg_size); if (0) { - mthca_dbg(dev, "Dumping MPT entry %08x:\n", mr->ibmr.lkey); + mthca_dbg(dev, "Dumping MPT entry %08x:\n", key); for (i = 0; i < sizeof (struct mthca_mpt_entry) / 4; ++i) { if (i % 4 == 0) printk("[%02x] ", i * 4); @@ -275,7 +294,7 @@ int mthca_mr_alloc_phys(struct mthca_dev } err = mthca_SW2HW_MPT(dev, mpt_entry, - mr->ibmr.lkey & (dev->limits.num_mpts - 1), + key & (dev->limits.num_mpts - 1), &status); if (err) mthca_warn(dev, "SW2HW_MPT failed (%d)\n", err); @@ -307,7 +326,8 @@ void mthca_free_mr(struct mthca_dev *dev might_sleep(); err = mthca_HW2SW_MPT(dev, NULL, - mr->ibmr.lkey & (dev->limits.num_mpts - 1), + key_to_hw_index(dev, mr->ibmr.lkey) & + (dev->limits.num_mpts - 1), &status); if (err) mthca_warn(dev, "HW2SW_MPT failed (%d)\n", err); @@ -318,7 +338,7 @@ void mthca_free_mr(struct mthca_dev *dev if (mr->order >= 0) mthca_free_mtt(dev, mr->first_seg, mr->order); - mthca_free(&dev->mr_table.mpt_alloc, mr->ibmr.lkey); + mthca_free(&dev->mr_table.mpt_alloc, key_to_hw_index(dev, mr->ibmr.lkey)); } int __devinit mthca_init_mr_table(struct mthca_dev *dev) Index: hw/mthca/mthca_qp.c =================================================================== --- hw/mthca/mthca_qp.c (revision 1701) +++ hw/mthca/mthca_qp.c (working copy) @@ -40,6 +40,7 @@ #include "mthca_dev.h" #include "mthca_cmd.h" +#include "mthca_memfree.h" enum { MTHCA_MAX_DIRECT_QP_SIZE = 4 * PAGE_SIZE, @@ -105,8 +106,11 @@ struct mthca_qp_path { struct mthca_qp_context { u32 flags; - u32 sched_queue; - u32 mtu_msgmax; + u32 tavor_sched_queue; /* Reserved on Arbel */ + u8 mtu_msgmax; + u8 rq_size_stride; /* Reserved on Tavor */ + u8 sq_size_stride; /* Reserved on Tavor */ + u8 rlkey_arbel_sched_queue; /* Reserved on Tavor */ u32 usr_page; u32 local_qpn; u32 remote_qpn; @@ -121,18 +125,22 @@ struct mthca_qp_context { u32 reserved2; u32 next_send_psn; u32 cqn_snd; - u32 next_snd_wqe[2]; + u32 snd_wqe_base_l; /* Next send WQE on Tavor */ + u32 snd_db_index; /* (debugging only entries) */ u32 last_acked_psn; u32 ssn; u32 params2; u32 rnr_nextrecvpsn; u32 ra_buff_indx; u32 cqn_rcv; - u32 next_rcv_wqe[2]; + u32 rcv_wqe_base_l; /* Next recv WQE on Tavor */ + u32 rcv_db_index; /* (debugging only entries) */ u32 qkey; u32 srqn; u32 rmsn; - u32 reserved3[19]; + u16 rq_wqe_counter; /* reserved on Tavor */ + u16 sq_wqe_counter; /* reserved on Tavor */ + u32 reserved3[18]; } __attribute__((packed)); struct mthca_qp_param { @@ -617,15 +625,24 @@ int mthca_modify_qp(struct ib_qp *ibqp, break; } } - /* leave sched_queue as 0 */ + + /* leave tavor_sched_queue as 0 */ + if (qp->transport == MLX || qp->transport == UD) - qp_context->mtu_msgmax = cpu_to_be32((IB_MTU_2048 << 29) | - (11 << 24)); - else if (attr_mask & IB_QP_PATH_MTU) { - qp_context->mtu_msgmax = cpu_to_be32((attr->path_mtu << 29) | - (31 << 24)); + qp_context->mtu_msgmax = (IB_MTU_2048 << 5) | 11; + else if (attr_mask & IB_QP_PATH_MTU) + qp_context->mtu_msgmax = (attr->path_mtu << 5) | 31; + + if (dev->hca_type == ARBEL_NATIVE) { + qp_context->rq_size_stride = + ((ffs(qp->rq.max) - 1) << 3) | (qp->rq.wqe_shift - 4); + qp_context->sq_size_stride = + ((ffs(qp->sq.max) - 1) << 3) | (qp->sq.wqe_shift - 4); } - qp_context->usr_page = cpu_to_be32(MTHCA_KAR_PAGE); + + /* leave arbel_sched_queue as 0 */ + + qp_context->usr_page = cpu_to_be32(dev->driver_uar.index); qp_context->local_qpn = cpu_to_be32(qp->qpn); if (attr_mask & IB_QP_DEST_QPN) { qp_context->remote_qpn = cpu_to_be32(attr->dest_qp_num); @@ -708,6 +725,11 @@ int mthca_modify_qp(struct ib_qp *ibqp, qp_context->next_send_psn = cpu_to_be32(attr->sq_psn); qp_context->cqn_snd = cpu_to_be32(to_mcq(ibqp->send_cq)->cqn); + if (dev->hca_type == ARBEL_NATIVE) { + qp_context->snd_wqe_base_l = cpu_to_be32(qp->send_wqe_offset); + qp_context->snd_db_index = cpu_to_be32(qp->sq.db_index); + } + if (attr_mask & IB_QP_ACCESS_FLAGS) { /* * Only enable RDMA/atomics if we have responder @@ -787,12 +809,16 @@ int mthca_modify_qp(struct ib_qp *ibqp, if (attr_mask & IB_QP_RQ_PSN) qp_context->rnr_nextrecvpsn |= cpu_to_be32(attr->rq_psn); - qp_context->ra_buff_indx = dev->qp_table.rdb_base + - ((qp->qpn & (dev->limits.num_qps - 1)) * MTHCA_RDB_ENTRY_SIZE << - dev->qp_table.rdb_shift); + qp_context->ra_buff_indx = + cpu_to_be32(dev->qp_table.rdb_base + + ((qp->qpn & (dev->limits.num_qps - 1)) * MTHCA_RDB_ENTRY_SIZE << + dev->qp_table.rdb_shift)); qp_context->cqn_rcv = cpu_to_be32(to_mcq(ibqp->recv_cq)->cqn); + if (dev->hca_type == ARBEL_NATIVE) + qp_context->rcv_db_index = cpu_to_be32(qp->rq.db_index); + if (attr_mask & IB_QP_QKEY) { qp_context->qkey = cpu_to_be32(attr->qkey); qp_param->opt_param_mask |= cpu_to_be32(MTHCA_QP_OPTPAR_Q_KEY); @@ -980,7 +1006,7 @@ static int mthca_alloc_qp_common(struct enum ib_sig_type recv_policy, struct mthca_qp *qp) { - int err; + int ret; spin_lock_init(&qp->lock); atomic_set(&qp->refcount, 1); @@ -998,8 +1024,73 @@ static int mthca_alloc_qp_common(struct qp->rq.last = NULL; qp->sq.last = NULL; - err = mthca_alloc_wqe_buf(dev, pd, qp); - return err; + if (dev->hca_type == ARBEL_NATIVE) { + ret = mthca_table_get(dev, dev->qp_table.qp_table, qp->qpn); + if (ret) + goto err; + + ret = mthca_table_get(dev, dev->qp_table.eqp_table, qp->qpn); + if (ret) + goto err_qpc; + + qp->rq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_RQ, + qp->qpn, &qp->rq.db); + if (qp->rq.db_index < 0) { + ret = -ENOMEM; + goto err_eqpc; + } + + qp->sq.db_index = mthca_alloc_db(dev, MTHCA_DB_TYPE_SQ, + qp->qpn, &qp->sq.db); + if (qp->sq.db_index < 0) { + ret = -ENOMEM; + goto err_rq_db; + } + } + + ret = mthca_alloc_wqe_buf(dev, pd, qp); + + if (ret) { + if (dev->hca_type == ARBEL_NATIVE) + goto err_sq_db; + else + return ret; + } + + return 0; + +err_sq_db: + mthca_free_db(dev, MTHCA_DB_TYPE_SQ, qp->sq.db_index); + +err_rq_db: + mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index); + +err_eqpc: + mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn); + +err_qpc: + mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn); + +err: + return ret; +} + +static void mthca_align_qp_size(struct mthca_dev *dev, struct mthca_qp *qp) +{ + int i; + + if (dev->hca_type != ARBEL_NATIVE) + return; + + for (i = 0; 1 << i < qp->rq.max; ++i) + ; /* nothing */ + + qp->rq.max = 1 << i; + + for (i = 0; 1 << i < qp->sq.max; ++i) + ; /* nothing */ + + qp->sq.max = 1 << i; } int mthca_alloc_qp(struct mthca_dev *dev, @@ -1013,6 +1104,8 @@ int mthca_alloc_qp(struct mthca_dev *dev { int err; + mthca_align_qp_size(dev, qp); + switch (type) { case IB_QPT_RC: qp->transport = RC; break; case IB_QPT_UC: qp->transport = UC; break; @@ -1052,6 +1145,8 @@ int mthca_alloc_sqp(struct mthca_dev *de int err = 0; u32 mqpn = qpn * 2 + dev->qp_table.sqp_start + port - 1; + mthca_align_qp_size(dev, &sqp->qp); + sqp->header_buf_size = sqp->qp.sq.max * MTHCA_UD_HEADER_SIZE; sqp->header_buf = dma_alloc_coherent(&dev->pdev->dev, sqp->header_buf_size, &sqp->header_dma, GFP_KERNEL); @@ -1165,14 +1260,20 @@ void mthca_free_qp(struct mthca_dev *dev kfree(qp->wrid); + if (dev->hca_type == ARBEL_NATIVE) { + mthca_free_db(dev, MTHCA_DB_TYPE_SQ, qp->sq.db_index); + mthca_free_db(dev, MTHCA_DB_TYPE_RQ, qp->rq.db_index); + mthca_table_put(dev, dev->qp_table.eqp_table, qp->qpn); + mthca_table_put(dev, dev->qp_table.qp_table, qp->qpn); + } + if (is_sqp(dev, qp)) { atomic_dec(&(to_mpd(qp->ibqp.pd)->sqp_count)); dma_free_coherent(&dev->pdev->dev, to_msqp(qp)->header_buf_size, to_msqp(qp)->header_buf, to_msqp(qp)->header_dma); - } - else + } else mthca_free(&dev->qp_table.alloc, qp->qpn); } @@ -1245,8 +1346,8 @@ static int build_mlx_header(struct mthca return 0; } -int mthca_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr, - struct ib_send_wr **bad_wr) +int mthca_tavor_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr, + struct ib_send_wr **bad_wr) { struct mthca_dev *dev = to_mdev(ibqp->device); struct mthca_qp *qp = to_mqp(ibqp); @@ -1459,8 +1560,8 @@ out: return err; } -int mthca_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr, - struct ib_recv_wr **bad_wr) +int mthca_tavor_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr, + struct ib_recv_wr **bad_wr) { struct mthca_dev *dev = to_mdev(ibqp->device); struct mthca_qp *qp = to_mqp(ibqp); @@ -1558,6 +1659,18 @@ out: return err; } +int mthca_arbel_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr, + struct ib_send_wr **bad_wr) +{ + return 0; +} + +int mthca_arbel_post_receive(struct ib_qp *ibqp, struct ib_recv_wr *wr, + struct ib_recv_wr **bad_wr) +{ + return 0; +} + int mthca_free_err_wqe(struct mthca_qp *qp, int is_send, int index, int *dbd, u32 *new_wqe) { Index: hw/mthca/Makefile =================================================================== --- hw/mthca/Makefile (revision 1701) +++ hw/mthca/Makefile (working copy) @@ -9,4 +9,4 @@ obj-$(CONFIG_INFINIBAND_MTHCA) += ib_mth ib_mthca-y := mthca_main.o mthca_cmd.o mthca_profile.o mthca_reset.o \ mthca_allocator.o mthca_eq.o mthca_pd.o mthca_cq.o \ mthca_mr.o mthca_qp.o mthca_av.o mthca_mcg.o mthca_mad.o \ - mthca_provider.o mthca_memfree.o + mthca_provider.o mthca_memfree.o mthca_uar.o Index: hw/mthca/mthca_memfree.c =================================================================== --- hw/mthca/mthca_memfree.c (revision 1701) +++ hw/mthca/mthca_memfree.c (working copy) @@ -79,6 +79,7 @@ struct mthca_icm *mthca_alloc_icm(struct if (!icm) return icm; + icm->refcount = 0; INIT_LIST_HEAD(&icm->chunk_list); cur_order = get_order(MTHCA_ICM_ALLOC_SIZE); @@ -138,9 +139,62 @@ fail: return NULL; } +int mthca_table_get(struct mthca_dev *dev, struct mthca_icm_table *table, int obj) +{ + int i = (obj & (table->num_obj - 1)) * table->obj_size / MTHCA_TABLE_CHUNK_SIZE; + int ret = 0; + u8 status; + + down(&table->mutex); + + if (table->icm[i]) { + ++table->icm[i]->refcount; + goto out; + } + + table->icm[i] = mthca_alloc_icm(dev, MTHCA_TABLE_CHUNK_SIZE >> PAGE_SHIFT, + (table->lowmem ? GFP_KERNEL : GFP_HIGHUSER) | + __GFP_NOWARN); + if (!table->icm[i]) { + ret = -ENOMEM; + goto out; + } + + if (mthca_MAP_ICM(dev, table->icm[i], table->virt + i * MTHCA_TABLE_CHUNK_SIZE, + &status) || status) { + mthca_free_icm(dev, table->icm[i]); + table->icm[i] = NULL; + ret = -ENOMEM; + goto out; + } + + ++table->icm[i]->refcount; + +out: + up(&table->mutex); + return ret; +} + +void mthca_table_put(struct mthca_dev *dev, struct mthca_icm_table *table, int obj) +{ + int i = (obj & (table->num_obj - 1)) * table->obj_size / MTHCA_TABLE_CHUNK_SIZE; + u8 status; + + down(&table->mutex); + + if (--table->icm[i]->refcount == 0) { + mthca_UNMAP_ICM(dev, table->virt + i * MTHCA_TABLE_CHUNK_SIZE, + MTHCA_TABLE_CHUNK_SIZE >> 12, &status); + mthca_free_icm(dev, table->icm[i]); + table->icm[i] = NULL; + } + + up(&table->mutex); +} + struct mthca_icm_table *mthca_alloc_icm_table(struct mthca_dev *dev, - u64 virt, unsigned size, - unsigned reserved, + u64 virt, int obj_size, + int nobj, int reserved, int use_lowmem) { struct mthca_icm_table *table; @@ -148,20 +202,23 @@ struct mthca_icm_table *mthca_alloc_icm_ int i; u8 status; - num_icm = size / MTHCA_TABLE_CHUNK_SIZE; + num_icm = obj_size * nobj / MTHCA_TABLE_CHUNK_SIZE; table = kmalloc(sizeof *table + num_icm * sizeof *table->icm, GFP_KERNEL); if (!table) return NULL; - table->virt = virt; - table->num_icm = num_icm; - init_MUTEX(&table->sem); + table->virt = virt; + table->num_icm = num_icm; + table->num_obj = nobj; + table->obj_size = obj_size; + table->lowmem = use_lowmem; + init_MUTEX(&table->mutex); for (i = 0; i < num_icm; ++i) table->icm[i] = NULL; - for (i = 0; i < (reserved + MTHCA_TABLE_CHUNK_SIZE - 1) / MTHCA_TABLE_CHUNK_SIZE; ++i) { + for (i = 0; i * MTHCA_TABLE_CHUNK_SIZE < reserved * obj_size; ++i) { table->icm[i] = mthca_alloc_icm(dev, MTHCA_TABLE_CHUNK_SIZE >> PAGE_SHIFT, (use_lowmem ? GFP_KERNEL : GFP_HIGHUSER) | __GFP_NOWARN); @@ -173,6 +230,12 @@ struct mthca_icm_table *mthca_alloc_icm_ table->icm[i] = NULL; goto err; } + + /* + * Add a reference to this ICM chunk so that it never + * gets freed (since it contains reserved firmware objects). + */ + ++table->icm[i]->refcount; } return table; @@ -204,3 +267,199 @@ void mthca_free_icm_table(struct mthca_d kfree(table); } + +static u64 mthca_uarc_virt(struct mthca_dev *dev, int page) +{ + return dev->uar_table.uarc_base + + dev->driver_uar.index * dev->uar_table.uarc_size + + page * 4096; +} + +int mthca_alloc_db(struct mthca_dev *dev, int type, u32 qn, u32 **db) +{ + int group; + int start, end, dir; + int i, j; + struct mthca_db_page *page; + int ret = 0; + u8 status; + + down(&dev->db_tab->mutex); + + switch (type) { + case MTHCA_DB_TYPE_CQ_ARM: + case MTHCA_DB_TYPE_SQ: + group = 0; + start = 0; + end = dev->db_tab->max_group1; + dir = 1; + break; + + case MTHCA_DB_TYPE_CQ_SET_CI: + case MTHCA_DB_TYPE_RQ: + case MTHCA_DB_TYPE_SRQ: + group = 1; + start = dev->db_tab->npages - 1; + end = dev->db_tab->min_group2; + dir = -1; + break; + + default: + return -1; + } + + for (i = start; i != end; i += dir) + if (dev->db_tab->page[i].db_rec && + !bitmap_full(dev->db_tab->page[i].used, + MTHCA_DB_REC_PER_PAGE)) { + page = dev->db_tab->page + i; + goto found; + } + + if (dev->db_tab->max_group1 >= dev->db_tab->min_group2 - 1) { + ret = -ENOMEM; + goto out; + } + + page = dev->db_tab->page + end; + page->db_rec = dma_alloc_coherent(&dev->pdev->dev, 4096, + &page->mapping, GFP_KERNEL); + if (!page->db_rec) { + ret = -ENOMEM; + goto out; + } + memset(page->db_rec, 0, 4096); + + ret = mthca_MAP_ICM_page(dev, page->mapping, mthca_uarc_virt(dev, i), &status); + if (!ret && status) + ret = -EINVAL; + if (ret) { + dma_free_coherent(&dev->pdev->dev, 4096, + page->db_rec, page->mapping); + goto out; + } + + bitmap_zero(page->used, MTHCA_DB_REC_PER_PAGE); + if (group == 0) + ++dev->db_tab->max_group1; + else + --dev->db_tab->min_group2; + +found: + j = find_first_zero_bit(page->used, MTHCA_DB_REC_PER_PAGE); + set_bit(j, page->used); + + if (group == 1) + j = MTHCA_DB_REC_PER_PAGE - 1 - j; + + ret = i * MTHCA_DB_REC_PER_PAGE + j; + + page->db_rec[j] = cpu_to_be64((qn << 8) | (type << 5)); + + *db = (u32 *) &page->db_rec[j]; + +out: + up(&dev->db_tab->mutex); + + return ret; +} + +void mthca_free_db(struct mthca_dev *dev, int type, int db_index) +{ + int i, j; + struct mthca_db_page *page; + u8 status; + + i = db_index / MTHCA_DB_REC_PER_PAGE; + j = db_index % MTHCA_DB_REC_PER_PAGE; + + page = dev->db_tab->page + i; + + down(&dev->db_tab->mutex); + + page->db_rec[j] = 0; + if (i >= dev->db_tab->min_group2) + j = MTHCA_DB_REC_PER_PAGE - 1 - j; + clear_bit(j, page->used); + + if (bitmap_empty(page->used, MTHCA_DB_REC_PER_PAGE) && + i >= dev->db_tab->max_group1 - 1) { + mthca_UNMAP_ICM(dev, mthca_uarc_virt(dev, i), 1, &status); + + dma_free_coherent(&dev->pdev->dev, 4096, + page->db_rec, page->mapping); + page->db_rec = NULL; + + if (i == dev->db_tab->max_group1) { + --dev->db_tab->max_group1; + /* XXX may be able to unmap more pages now */ + } + if (i == dev->db_tab->min_group2) + ++dev->db_tab->min_group2; + } + + up(&dev->db_tab->mutex); +} + +int mthca_init_db_tab(struct mthca_dev *dev) +{ + int i; + + if (dev->hca_type != ARBEL_NATIVE) + return 0; + + dev->db_tab = kmalloc(sizeof *dev->db_tab, GFP_KERNEL); + if (!dev->db_tab) + return -ENOMEM; + + init_MUTEX(&dev->db_tab->mutex); + + dev->db_tab->npages = dev->uar_table.uarc_size / PAGE_SIZE; + dev->db_tab->max_group1 = 0; + dev->db_tab->min_group2 = dev->db_tab->npages - 1; + + dev->db_tab->page = kmalloc(dev->db_tab->npages * + sizeof *dev->db_tab->page, + GFP_KERNEL); + if (!dev->db_tab->page) { + kfree(dev->db_tab); + return -ENOMEM; + } + + for (i = 0; i < dev->db_tab->npages; ++i) + dev->db_tab->page[i].db_rec = NULL; + + return 0; +} + +void mthca_cleanup_db_tab(struct mthca_dev *dev) +{ + int i; + u8 status; + + if (dev->hca_type != ARBEL_NATIVE) + return; + + /* + * Because we don't always free our UARC pages when they + * become empty to make mthca_free_db() simpler we need to + * make a sweep through the doorbell pages and free any + * leftover pages now. + */ + for (i = 0; i < dev->db_tab->npages; ++i) { + if (!dev->db_tab->page[i].db_rec) + continue; + + if (!bitmap_empty(dev->db_tab->page[i].used, MTHCA_DB_REC_PER_PAGE)) + mthca_warn(dev, "Kernel UARC page %d not empty\n", i); + + mthca_UNMAP_ICM(dev, mthca_uarc_virt(dev, i), 1, &status); + + dma_free_coherent(&dev->pdev->dev, 4096, + dev->db_tab->page[i].db_rec, + dev->db_tab->page[i].mapping); + } + + kfree(dev->db_tab->page); + kfree(dev->db_tab); +} -- MST - Michael S. Tsirkin From mst at mellanox.co.il Sun Jan 30 06:18:51 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 30 Jan 2005 16:18:51 +0200 Subject: [openib-general] Re: [ANNOUNCE] userspace/management now partially uses autotools In-Reply-To: <1107093272.15832.4016.camel@localhost.localdomain> References: <1107023794.15832.2941.camel@localhost.localdomain> <20050130110604.GD26505@mellanox.co.il> <1107093272.15832.4016.camel@localhost.localdomain> Message-ID: <20050130141851.GG26505@mellanox.co.il> Quoting r. Hal Rosenstock : > I'll convert it back if that's what people want. It's pretty simple to > do. You can do this in your own tree if you don't like the way it is. > > -- Hal > Patch? -- MST - Michael S. Tsirkin From mst at mellanox.co.il Sun Jan 30 06:34:45 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 30 Jan 2005 16:34:45 +0200 Subject: [openib-general] [PATCH] roland-uverbs: possible race condition Message-ID: <20050130143445.GH26505@mellanox.co.il> Hello! Looking at roland-uverbs, I see that an EQ is armed only if and EQE entry was detected. Consider this: 1. In MSI-X, since the interrupt is specific for this EQ, we know that the EQ wont be empty when we poll it. In any case, (even if you believe we may get an extra MSI-X interrupt in rare cases) , an extra set ci + arm do no harm. Thus in my opinion the check is not needed (but does no actual harm). 2. In regular interrupt: I think I see a race condition. We must always arm an eq - even if it is found empty. This is because the interrupt may bypass an EQ entry write to memory. Thus the EQ will be empty when we poll it, but on the other hand if we do not arm the EQ, we will never get another interrupt. In light of this, I also changed IRQ_RETVAL to IRQ_HANDLED. This is true for both Tavor and Arbel. For Arbel, I also noticed that since all eqs are armed in one shot, and the eq arm mask can be pre-computed. MST The following applies to the roland-uverbs branch or to the trunk, after the backport patch. Signed-off-by: Michael S. Tsirkin Fix a race condition in regular interrupt handling. Kill a useless check in MSI-X handler. Index: hw/mthca/mthca_dev.h =================================================================== --- hw/mthca/mthca_dev.h (revision 1701) +++ hw/mthca/mthca_dev.h (working copy) @@ -171,6 +171,7 @@ struct mthca_alloc alloc; void __iomem *clr_int; u32 clr_mask; + u32 eq_mask; struct mthca_eq eq[MTHCA_NUM_EQ]; u64 icm_virt; struct page *icm_page; Index: hw/mthca/mthca_eq.c =================================================================== --- hw/mthca/mthca_eq.c (revision 1701) +++ hw/mthca/mthca_eq.c (working copy) @@ -400,10 +400,12 @@ MTHCA_ECR_CLR_BASE - MTHCA_ECR_BASE + 4); for (i = 0; i < MTHCA_NUM_EQ; ++i) - if (ecr & dev->eq_table.eq[i].eqn_mask && - mthca_eq_int(dev, &dev->eq_table.eq[i])) { - tavor_set_eq_ci(dev, &dev->eq_table.eq[i], - dev->eq_table.eq[i].cons_index); + if (ecr & dev->eq_table.eq[i].eqn_mask) { + if (mthca_eq_int(dev, &dev->eq_table.eq[i])) + tavor_set_eq_ci(dev, + &dev->eq_table.eq[i], + dev->eq_table.eq[i]. + cons_index); tavor_eq_req_not(dev, dev->eq_table.eq[i].eqn); } } @@ -417,10 +419,11 @@ struct mthca_eq *eq = eq_ptr; struct mthca_dev *dev = eq->dev; - if (mthca_eq_int(dev, eq)) { - tavor_set_eq_ci(dev, eq, eq->cons_index); - tavor_eq_req_not(dev, eq->eqn); - } + mthca_eq_int(dev, eq); + /* EQ can not be empty, and even if it is, + * an extra set ci + arm do no harm */ + tavor_set_eq_ci(dev, eq, eq->cons_index); + tavor_eq_req_not(dev, eq->eqn); /* MSI-X vectors always belong to us */ return IRQ_HANDLED; @@ -429,7 +432,6 @@ static irqreturn_t mthca_arbel_interrupt(int irq, void *dev_ptr, struct pt_regs *regs) { struct mthca_dev *dev = dev_ptr; - u32 arm = 0; int i; if (dev->eq_table.clr_mask) @@ -439,12 +441,11 @@ if (mthca_eq_int(dev, &dev->eq_table.eq[i])) { arbel_set_eq_ci(dev, &dev->eq_table.eq[i], dev->eq_table.eq[i].cons_index); - arm |= dev->eq_table.eq[i].eqn_mask; } - arbel_eq_req_not(dev, arm); + arbel_eq_req_not(dev, dev->eq_table.eq_mask); - return IRQ_RETVAL(arm); + return IRQ_HANDLED; } static irqreturn_t mthca_arbel_msi_x_interrupt(int irq, void *eq_ptr, @@ -453,10 +454,11 @@ struct mthca_eq *eq = eq_ptr; struct mthca_dev *dev = eq->dev; - if (mthca_eq_int(dev, eq)) { - arbel_set_eq_ci(dev, eq, eq->cons_index); - arbel_eq_req_not(dev, eq->eqn_mask); - } + mthca_eq_int(dev, eq); + /* EQ can not be empty, and even if it is, + * an extra set ci + arm do no harm */ + arbel_set_eq_ci(dev, eq, eq->cons_index); + arbel_eq_req_not(dev, eq->eqn_mask); /* MSI-X vectors always belong to us */ return IRQ_HANDLED; @@ -568,6 +570,8 @@ eq->eqn_mask = swab32(1 << eq->eqn); eq->cons_index = 0; + dev->eq_table.eq_mask |= eq->eqn_mask; + mthca_dbg(dev, "Allocated EQ %d with %d entries\n", eq->eqn, nent); @@ -605,6 +609,8 @@ PAGE_SIZE; int i; + dev->eq_table.eq_mask &= ~eq->eqn_mask; + mailbox = kmalloc(sizeof (struct mthca_eq_context) + MTHCA_CMD_MAILBOX_EXTRA, GFP_KERNEL); if (!mailbox) -------------- next part -------------- Signed-off-by: Michael S. Tsirkin Index: hw/mthca/mthca_dev.h =================================================================== --- hw/mthca/mthca_dev.h (revision 1701) +++ hw/mthca/mthca_dev.h (working copy) @@ -171,6 +171,7 @@ struct mthca_eq_table { struct mthca_alloc alloc; void __iomem *clr_int; u32 clr_mask; + u32 eq_mask; struct mthca_eq eq[MTHCA_NUM_EQ]; u64 icm_virt; struct page *icm_page; Index: hw/mthca/mthca_eq.c =================================================================== --- hw/mthca/mthca_eq.c (revision 1701) +++ hw/mthca/mthca_eq.c (working copy) @@ -400,10 +400,12 @@ static irqreturn_t mthca_tavor_interrupt MTHCA_ECR_CLR_BASE - MTHCA_ECR_BASE + 4); for (i = 0; i < MTHCA_NUM_EQ; ++i) - if (ecr & dev->eq_table.eq[i].eqn_mask && - mthca_eq_int(dev, &dev->eq_table.eq[i])) { - tavor_set_eq_ci(dev, &dev->eq_table.eq[i], - dev->eq_table.eq[i].cons_index); + if (ecr & dev->eq_table.eq[i].eqn_mask) { + if (mthca_eq_int(dev, &dev->eq_table.eq[i])) + tavor_set_eq_ci(dev, + &dev->eq_table.eq[i], + dev->eq_table.eq[i]. + cons_index); tavor_eq_req_not(dev, dev->eq_table.eq[i].eqn); } } @@ -417,10 +419,11 @@ static irqreturn_t mthca_tavor_msi_x_int struct mthca_eq *eq = eq_ptr; struct mthca_dev *dev = eq->dev; - if (mthca_eq_int(dev, eq)) { - tavor_set_eq_ci(dev, eq, eq->cons_index); - tavor_eq_req_not(dev, eq->eqn); - } + mthca_eq_int(dev, eq); + /* EQ can not be empty, and even if it is, + * an extra set ci + arm do no harm */ + tavor_set_eq_ci(dev, eq, eq->cons_index); + tavor_eq_req_not(dev, eq->eqn); /* MSI-X vectors always belong to us */ return IRQ_HANDLED; @@ -429,20 +432,19 @@ static irqreturn_t mthca_tavor_msi_x_int static irqreturn_t mthca_arbel_interrupt(int irq, void *dev_ptr, struct pt_regs *regs) { struct mthca_dev *dev = dev_ptr; - u32 arm = 0; int i; + int arm = 0; if (dev->eq_table.clr_mask) writel(dev->eq_table.clr_mask, dev->eq_table.clr_int); for (i = 0; i < MTHCA_NUM_EQ; ++i) - if (mthca_eq_int(dev, &dev->eq_table.eq[i])) { + if (arm |= mthca_eq_int(dev, &dev->eq_table.eq[i])) { arbel_set_eq_ci(dev, &dev->eq_table.eq[i], dev->eq_table.eq[i].cons_index); - arm |= dev->eq_table.eq[i].eqn_mask; } - arbel_eq_req_not(dev, arm); + arbel_eq_req_not(dev, dev->eq_table.eq_mask); return IRQ_RETVAL(arm); } @@ -453,10 +455,11 @@ static irqreturn_t mthca_arbel_msi_x_int struct mthca_eq *eq = eq_ptr; struct mthca_dev *dev = eq->dev; - if (mthca_eq_int(dev, eq)) { - arbel_set_eq_ci(dev, eq, eq->cons_index); - arbel_eq_req_not(dev, eq->eqn_mask); - } + mthca_eq_int(dev, eq); + /* EQ can not be empty, and even if it is, + * an extra set ci + arm do no harm */ + arbel_set_eq_ci(dev, eq, eq->cons_index); + arbel_eq_req_not(dev, eq->eqn_mask); /* MSI-X vectors always belong to us */ return IRQ_HANDLED; @@ -568,6 +571,8 @@ static int __devinit mthca_create_eq(str eq->eqn_mask = swab32(1 << eq->eqn); eq->cons_index = 0; + dev->eq_table.eq_mask |= eq->eqn_mask; + mthca_dbg(dev, "Allocated EQ %d with %d entries\n", eq->eqn, nent); @@ -605,6 +610,8 @@ static void mthca_free_eq(struct mthca_d PAGE_SIZE; int i; + dev->eq_table.eq_mask &= ~eq->eqn_mask; + mailbox = kmalloc(sizeof (struct mthca_eq_context) + MTHCA_CMD_MAILBOX_EXTRA, GFP_KERNEL); if (!mailbox) From mst at mellanox.co.il Sun Jan 30 06:48:47 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 30 Jan 2005 16:48:47 +0200 Subject: [openib-general] Re: [ANNOUNCE] userspace/management now partially uses autotools In-Reply-To: <1107093272.15832.4016.camel@localhost.localdomain> References: <1107023794.15832.2941.camel@localhost.localdomain> <20050130110604.GD26505@mellanox.co.il> <1107093272.15832.4016.camel@localhost.localdomain> Message-ID: <20050130144847.GI26505@mellanox.co.il> Quoting r. Hal Rosenstock : > Subject: Re: [ANNOUNCE] userspace/management now partially uses autotools > > On Sun, 2005-01-30 at 06:06, Michael S. Tsirkin wrote: > > For now, we have a huge step backwards. > > I don't agree with your qualification of this as huge. > > > I quote the README file: > > > > > To make this tree, > > > 1. In libibcommon, libibumad, and libibmad (in that order), run: > > > ./autogen.sh && ./configure && make && make install > > > 2. In all util and diag subdirectories, run: > > > ./autogen.sh && ./configure > > > 3. At top level of management, run: > > > make && make install > > > > > > Hal, currently this means that > > 1. its painful to build opensm > > Several manual steps are required. > > This is only temporary. I understand, but could not the check-in wait till its working? > > 2. The process differs from the standard configure/make > > How ? need auto-tools. > > I think generated configure files shall be checked in so that > > the process is less painful for most people. > > I did the same thing as was done in the other userspace directories. Sure, but so far opensm is the only tool I know that depends on such a lot of libraries, so its lett painful there. > > 3. Current build requires that libraries are *installed* > > before opensm is built. > > This means that I cant have two versions installed without > > manual tweaks, and that just to *check* if some problem I have is fixed on > > trunk, I must install newer libraries possibly breaking a > > perfectly good installation. > > The newer libraries are only required if there are changes in them. Like, libumad? :) > This is the way the other userspace libraries are done. There are tools (vim) that have a configure flag to tell them which library version to use:local or system-wide. Others (like gcc) will check whether they reside in the same tree with the libraries, and if so link against them. Subversion code I think defaults to in-tree libraries if found, and supplies a flag to override it. > If it is consensus to remove the installation dependency, this is > straightforward to do. I think at least an option would be nice. > > May I suggest such changes shall be checked in > > when they are fully ready (when all the tree has been converted) > > and not half ready? > > Alternatively, put them on a branch. > > I'll convert it back if that's what people want. It's pretty simple to > do. You can do this in your own tree if you don't like the way it is. > > -- Hal > Dont get me wrong, I'm not against configure/make as a method, I think generally its good to standardize the build and you are going in the right direction with this with using standard configure/make commands. Cheers. -- MST - Michael S. Tsirkin From halr at voltaire.com Sun Jan 30 07:38:38 2005 From: halr at voltaire.com (Hal Rosenstock) Date: 30 Jan 2005 10:38:38 -0500 Subject: [openib-general] Re: [ANNOUNCE] userspace/management now partially uses autotools In-Reply-To: <20050130141851.GG26505@mellanox.co.il> References: <1107023794.15832.2941.camel@localhost.localdomain> <20050130110604.GD26505@mellanox.co.il> <1107093272.15832.4016.camel@localhost.localdomain> <20050130141851.GG26505@mellanox.co.il> Message-ID: <1107099518.15832.4032.camel@localhost.localdomain> On Sun, 2005-01-30 at 09:18, Michael S. Tsirkin wrote: > Patch? Here's a script to revert back to the old Makefiles: At the userspace/management level, here is a revert.sh script: #!/bin/sh cp diags/net/ibnetdiscover/Makefile.orig diags/net/ibnetdiscover/Makefile cp diags/net/smpdump/Makefile.orig diags/net/smpdump/Makefile cp diags/net/smpquery/Makefile.orig diags/net/smpquery/Makefile cp diags/net/sminfo/Makefile.orig diags/net/sminfo/Makefile cp diags/host/ibstat/Makefile.orig diags/host/ibstat/Makefile cp diags/host/scripts/Makefile.orig diags/host/scripts/Makefile cp libibumad/Makefile.orig libibumad/Makefile cp libibcommon/Makefile.orig libibcommon/Makefile cp libibmad/Makefile.orig libibmad/Makefile cp util/mad_test/Makefile.orig util/mad_test/Makefile So, run: 1. make clean 2. ./revert.sh 3. make && make install -- Hal From mst at mellanox.co.il Sun Jan 30 08:58:50 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Sun, 30 Jan 2005 18:58:50 +0200 Subject: [openib-general] Re: [ANNOUNCE] userspace/management now partially uses autotools In-Reply-To: <1107099518.15832.4032.camel@localhost.localdomain> References: <1107023794.15832.2941.camel@localhost.localdomain> <20050130110604.GD26505@mellanox.co.il> <1107093272.15832.4016.camel@localhost.localdomain> <20050130141851.GG26505@mellanox.co.il> <1107099518.15832.4032.camel@localhost.localdomain> Message-ID: <20050130165850.GB15967@mellanox.co.il> Quoting r. Hal Rosenstock : > Subject: Re: [ANNOUNCE] userspace/management now partially uses autotools > > On Sun, 2005-01-30 at 09:18, Michael S. Tsirkin wrote: > > Patch? > > Here's a script to revert back to the old Makefiles: > > At the userspace/management level, here is a revert.sh script: > > #!/bin/sh > cp diags/net/ibnetdiscover/Makefile.orig > diags/net/ibnetdiscover/Makefile > cp diags/net/smpdump/Makefile.orig diags/net/smpdump/Makefile > cp diags/net/smpquery/Makefile.orig diags/net/smpquery/Makefile > cp diags/net/sminfo/Makefile.orig diags/net/sminfo/Makefile > cp diags/host/ibstat/Makefile.orig diags/host/ibstat/Makefile > cp diags/host/scripts/Makefile.orig diags/host/scripts/Makefile > cp libibumad/Makefile.orig libibumad/Makefile > cp libibcommon/Makefile.orig libibcommon/Makefile > cp libibmad/Makefile.orig libibmad/Makefile > cp util/mad_test/Makefile.orig util/mad_test/Makefile > > So, run: > 1. make clean > 2. ./revert.sh > 3. make && make install > > -- Hal > Thanks! -- MST - Michael S. Tsirkin From roland at topspin.com Sun Jan 30 21:51:56 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 30 Jan 2005 21:51:56 -0800 Subject: [openib-general] [PATCH] roland-uverbs: possible race condition References: <20050130143445.GH26505@mellanox.co.il> Message-ID: <52is5etabn.fsf@topspin.com> Michael> 1. In MSI-X, since the interrupt is specific for this EQ, Michael> we know that the EQ wont be empty when we poll it. In Michael> any case, (even if you believe we may get an extra MSI-X Michael> interrupt in rare cases) , an extra set ci + arm do no Michael> harm. Michael> Thus in my opinion the check is not needed (but does no Michael> actual harm). I think I agree with this. Michael> 2. In regular interrupt: I think I see a race condition. Michael> We must always arm an eq - even if it is found empty. Michael> This is because the interrupt may bypass an EQ entry Michael> write to memory. Thus the EQ will be empty when we poll Michael> it, but on the other hand if we do not arm the EQ, we Michael> will never get another interrupt. I'm not sure I believe this for either Tavor or Arbel. For Tavor, we read the ECR via MMIO, and I don't think its possible for the read response for the ECR value to pass the write of the EQ entry from the HCA. For Arbel, even a legacy interrupt on PCI Express is carried by a message and I don't think that message can pass the EQE write. So I'm not convinced most of this patch is necessary. - R. From roland at topspin.com Sun Jan 30 21:51:57 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 30 Jan 2005 21:51:57 -0800 Subject: [openib-general] ecr_mask References: <20050130085048.GC26505@mellanox.co.il> Message-ID: <52d5vmtabm.fsf@topspin.com> Michael> Why should that not be cpu_to_be32? It's correct because it's used via writel(). (Count up the swabs on LE and BE and you'll see it's right in both cases) - R. From roland at topspin.com Sun Jan 30 21:51:55 2005 From: roland at topspin.com (Roland Dreier) Date: Sun, 30 Jan 2005 21:51:55 -0800 Subject: [openib-general] [PATCH] backport memfree support to trunk References: <20050130141814.GF26505@mellanox.co.il> Message-ID: <52oef6tabo.fsf@topspin.com> I'm not sure what the point of this patch is. I really want to keep the changesets applied to the trunk small enough that they can be sent upstream. I realize that I'm creating a mess for myself my allowing diffs to build up between my roland-uverbs branch and the trunk, but once I have the APIs and code reasonably stabilized, I'm planning on slogging through and merging in a nice series of patches. A gigantic monster patch like this just isn't helpful. - R. From mst at mellanox.co.il Sun Jan 30 22:38:19 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 31 Jan 2005 08:38:19 +0200 Subject: [openib-general] [PATCH] roland-uverbs: possible race condition In-Reply-To: <52is5etabn.fsf@topspin.com> References: <20050130143445.GH26505@mellanox.co.il> <52is5etabn.fsf@topspin.com> Message-ID: <20050131063819.GA3832@mellanox.co.il> Quoting r. Roland Dreier : > Subject: Re: [openib-general] [PATCH] roland-uverbs: possible race condition > > Michael> 1. In MSI-X, since the interrupt is specific for this EQ, > Michael> we know that the EQ wont be empty when we poll it. In > Michael> any case, (even if you believe we may get an extra MSI-X > Michael> interrupt in rare cases) , an extra set ci + arm do no > Michael> harm. > > Michael> Thus in my opinion the check is not needed (but does no > Michael> actual harm). > > I think I agree with this. > > Michael> 2. In regular interrupt: I think I see a race condition. > Michael> We must always arm an eq - even if it is found empty. > Michael> This is because the interrupt may bypass an EQ entry > Michael> write to memory. Thus the EQ will be empty when we poll > Michael> it, but on the other hand if we do not arm the EQ, we > Michael> will never get another interrupt. > > I'm not sure I believe this for either Tavor or Arbel. For Tavor, we > read the ECR via MMIO, and I don't think its possible for the read > response for the ECR value to pass the write of the EQ entry from the > HCA. Ah, right. > For Arbel, even a legacy interrupt on PCI Express is carried by > a message and I don't think that message can pass the EQE write. True while on the Express, but I think for the chipset it is legal to order interrupt messages differently from writes. > So > I'm not convinced most of this patch is necessary. > > - R. > OK, I'll split it up and resend so you can apply parts of it. -- MST - Michael S. Tsirkin From mst at mellanox.co.il Sun Jan 30 22:47:42 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 31 Jan 2005 08:47:42 +0200 Subject: [openib-general] roland-uverbs: CQ consumer index Message-ID: <20050131064742.GA8980@mellanox.co.il> Hi! I saw this checkin: r1703 | roland | 2005-01-30 23:04:39 +0200 (Sun, 30 Jan 2005) | 5 lines > > Convert CQ consumer index handling to use setting instead of > incrementing. This lets us use > the same logic for both Tavor and Arbel Mem-Free modes. Please note that doing this breaks cq resize: resize is only supported if the only doorbell on CQ is increment. MST -- MST - Michael S. Tsirkin From mst at mellanox.co.il Sun Jan 30 22:58:18 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 31 Jan 2005 08:58:18 +0200 Subject: [openib-general] [PATCH] backport memfree support to trunk In-Reply-To: <52oef6tabo.fsf@topspin.com> References: <20050130141814.GF26505@mellanox.co.il> <52oef6tabo.fsf@topspin.com> Message-ID: <20050131065818.GA17177@mellanox.co.il> Quoting r. Roland Dreier : > Subject: Re: [openib-general] [PATCH] backport memfree support to trunk > > I'm not sure what the point of this patch is. I really want to keep > the changesets applied to the trunk small enough that they can be sent > upstream. I realize that I'm creating a mess for myself my allowing > diffs to build up between my roland-uverbs branch and the trunk, but > once I have the APIs and code reasonably stabilized, I'm planning on > slogging through and merging in a nice series of patches. A gigantic > monster patch like this just isn't helpful. > > - R. > Sorry, I didnt realise this. I'm sick today, anyway. When I'm well I'll try to generate a series of smaller patches. Do they have to be independent, i.e. work even if only some patches are applied? -- MST - Michael S. Tsirkin From mst at mellanox.co.il Sun Jan 30 23:00:04 2005 From: mst at mellanox.co.il (Michael S. Tsirkin) Date: Mon, 31 Jan 2005 09:00:04 +0200 Subject: [openib-general] Re: roland-uverbs: CQ consumer index In-Reply-To: <20050131064742.GA8980@mellanox.co.il> References: <20050131064742.GA8980@mellanox.co.il> Message-ID: <20050131070004.GB17177@mellanox.co.il> Quoting r. Michael S. Tsirkin : > Subject: roland-uverbs: CQ consumer index > > > Hi! > I saw this checkin: > r1703 | roland | 2005-01-30 23:04:39 +0200 (Sun, 30 Jan 2005) | 5 lines > > > > Convert CQ consumer index handling to use setting instead of > > incrementing. This lets us use > > the same logic for both Tavor and Arbel Mem-Free modes. > > Please note that doing this breaks cq resize: resize is only > supported if the only doorbell on CQ is increment. Correction - if the only *consumer index* doorbell is increment. You can still ARM of course. -- MST - Michael S. Tsirkin From iod00d at hp.com Mon Jan 31 08:25:40 2005 From: iod00d at hp.com (Grant Grundler) Date: Mon, 31 Jan 2005 08:25:40 -0800 Subject: [openib-general] Re: [ANNOUNCE] userspace/management now partially uses autotools In-Reply-To: <20050130144847.GI26505@mellanox.co.il> References: <1107023794.15832.2941.camel@localhost.localdomain> <20050130110604.GD26505@mellanox.co.il> <1107093272.15832.4016.camel@localhost.localdomain> <20050130144847.GI26505@mellanox.co.il> Message-ID: <20050131162540.GB22123@esmail.cup.hp.com> On Sun, Jan 30, 2005 at 04:48:47PM +0200, Michael S. Tsirkin wrote: > > I did the same thing as was done in the other userspace directories. > > Sure, but so far opensm is the only tool I know that depends on such a > lot of libraries, so its lett painful there. there are alot of SW packages that have more complex dependencies. xfree86 is the first one that comes to mind. > > > 3. Current build requires that libraries are *installed* > > > before opensm is built. > > > This means that I cant have two versions installed without > > > manual tweaks, and that just to *check* if some problem I have is fixed on > > > trunk, I must install newer libraries possibly breaking a > > > perfectly good installation. > > > > The newer libraries are only required if there are changes in them. > > Like, libumad? :) Use a chroot if this is really problem for you. As a project, we don't need two versions installed normally since we don't have two different protocol or interface versions. For developement, I think it's fair to break the installed code since the developer knows which files changed and can revert those changes via SVN commands. > > This is the way the other userspace libraries are done. > > There are tools (vim) that have a configure flag to tell them > which library version to use:local or system-wide. Ok. But I'd rather see Hal continue making forward progress on making the build process uniform and portable instead of more complex. And chroot will work for the purpose you described. > Dont get me wrong, I'm not against configure/make as a method, > I think generally its good to standardize the build and you are going > in the right direction with this with using standard configure/make > commands. *nod* - same here. thanks, grant From ftillier at infiniconsys.com Mon Jan 31 10:28:03 2005 From: ftillier at infiniconsys.com (Fab Tillier) Date: Mon, 31 Jan 2005 10:28:03 -0800 Subject: [openib-general] CM MRA handling Message-ID: <000201c507c2$9aa9b430$8d5aa8c0@infiniconsys.com> I was thinking about how to handle receipt of the MRA CM message. Rather than add timer logic to the CM code base, why not leverage the timeout facility of the MAD agent? When receiving an MRA, cancel whatever MAD is in progress (REQ, REP, or LAP), and reissue the exact same MAD with a timeout as requested in the MRA. This allows using the same MAD timeout logic for MRA_XXX_RCVD as for the original message. The down side of this is that you end up issuing an extra message for every MRA received (in effect responding to each MRA) with a repeat of the message that was MRA'd). Thoughts? - Fab From roland at topspin.com Mon Jan 31 11:17:58 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 31 Jan 2005 11:17:58 -0800 Subject: [openib-general] roland-uverbs: CQ consumer index In-Reply-To: <20050131064742.GA8980@mellanox.co.il> (Michael S. Tsirkin's message of "Mon, 31 Jan 2005 08:47:42 +0200") References: <20050131064742.GA8980@mellanox.co.il> Message-ID: <524qgxtnkp.fsf@topspin.com> Michael> Please note that doing this breaks cq resize: resize is Michael> only supported if the only doorbell on CQ is increment. Ugh, I forgot about that. I guess I'll go back to increment doorbells in Tavor mode. - R. From libor at topspin.com Mon Jan 31 11:27:11 2005 From: libor at topspin.com (Libor Michalek) Date: Mon, 31 Jan 2005 11:27:11 -0800 Subject: [openib-general] roland-uverbs: CQ consumer index In-Reply-To: <524qgxtnkp.fsf@topspin.com>; from roland@topspin.com on Mon, Jan 31, 2005 at 11:17:58AM -0800 References: <20050131064742.GA8980@mellanox.co.il> <524qgxtnkp.fsf@topspin.com> Message-ID: <20050131112711.A29802@topspin.com> On Mon, Jan 31, 2005 at 11:17:58AM -0800, Roland Dreier wrote: > Michael> Please note that doing this breaks cq resize: resize is > Michael> only supported if the only doorbell on CQ is increment. > > Ugh, I forgot about that. I guess I'll go back to increment doorbells > in Tavor mode. Roland, Without knowing how much code difference there will be between Tavor and Arbel native mode, I'm wondering if it makes sense at some point to have seperate hardware drivers for the two parts? Just curious what the your thinking is on the value of maintaining the same code base for the two. -Libor From roland at topspin.com Mon Jan 31 11:33:12 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 31 Jan 2005 11:33:12 -0800 Subject: [openib-general] roland-uverbs: CQ consumer index In-Reply-To: <20050131112711.A29802@topspin.com> (Libor Michalek's message of "Mon, 31 Jan 2005 11:27:11 -0800") References: <20050131064742.GA8980@mellanox.co.il> <524qgxtnkp.fsf@topspin.com> <20050131112711.A29802@topspin.com> Message-ID: <52zmyps8av.fsf@topspin.com> Libor> Without knowing how much code difference there will be Libor> between Tavor and Arbel native mode, I'm wondering if it Libor> makes sense at some point to have seperate hardware drivers Libor> for the two parts? Just curious what the your thinking is Libor> on the value of maintaining the same code base for the two. I've gone back and forth between whether it's better to split mthca into two drivers or keep it as one driver that supports both Tavor and Arbel modes. A lot of the code is common but there are also a lot of differences. Right now I think keeping one driver is a little better because it's fairly easy to keep the Arbel-specific code in mthca, and I keep coming up with places where it would be very awkward to turn the common code into a library. However I've gone back and forth in my mind a bunch of times so we may end up with two drivers before it's all over. - R. From roland at topspin.com Mon Jan 31 12:54:47 2005 From: roland at topspin.com (Roland Dreier) Date: Mon, 31 Jan 2005 12:54:47 -0800 Subject: [openib-general] [PATCH] roland-uverbs: possible race condition In-Reply-To: <20050131063819.GA3832@mellanox.co.il> (Michael S. Tsirkin's message of "Mon, 31 Jan 2005 08:38:19 +0200") References: <20050130143445.GH26505@mellanox.co.il> <52is5etabn.fsf@topspin.com> <20050131063819.GA3832@mellanox.co.il> Message-ID: <52r7k1s4iw.fsf@topspin.com> Michael> True while on the Express, but I think for the chipset it Michael> is legal to order interrupt messages differently from Michael> writes. I seem to remember someone quoting the PCI spec saying that this was not allowed, but I can't find it right now. Grant, do you happen to know if legacy INTx interrupts are allowed to pass writes to memory once they leave PCI Express and make it into the chipset? - R. From iod00d at hp.com Mon Jan 31 14:12:02 2005 From: iod00d at hp.com (Grant Grundler) Date: Mon, 31 Jan 2005 14:12:02 -0800 Subject: [openib-general] [PATCH] roland-uverbs: possible race condition In-Reply-To: <52r7k1s4iw.fsf@topspin.com> References: <20050130143445.GH26505@mellanox.co.il> <52is5etabn.fsf@topspin.com> <20050131063819.GA3832@mellanox.co.il> <52r7k1s4iw.fsf@topspin.com> Message-ID: <20050131221202.GP22123@esmail.cup.hp.com> On Mon, Jan 31, 2005 at 12:54:47PM -0800, Roland Dreier wrote: > I seem to remember someone quoting the PCI spec saying that this was > not allowed, but I can't find it right now. Grant, do you happen to > know if legacy INTx interrupts are allowed to pass writes to memory > once they leave PCI Express and make it into the chipset? I don't know offhand and (sorry) can't look it up right now. Poke me again later this week (thurs) if you need a solid answer and no one else has provided one. I do expect ordering issues with the path between the device and the bridge chip that is handling legacy INTx support. This is basically the same DMA ordering issues we see today with Line based interrupts. It would make sense for the rest of the path to NOT have strict ordering given this hole. grant From krause at cup.hp.com Mon Jan 31 14:40:18 2005 From: krause at cup.hp.com (Michael Krause) Date: Mon, 31 Jan 2005 14:40:18 -0800 Subject: [openib-general] [PATCH] roland-uverbs: possible race condition In-Reply-To: <20050131221202.GP22123@esmail.cup.hp.com> References: <20050130143445.GH26505@mellanox.co.il> <52is5etabn.fsf@topspin.com> <20050131063819.GA3832@mellanox.co.il> <52r7k1s4iw.fsf@topspin.com> <20050131221202.GP22123@esmail.cup.hp.com> Message-ID: <6.2.0.14.2.20050131142946.02afc608@esmail.cup.hp.com> At 02:12 PM 1/31/2005, Grant Grundler wrote: >On Mon, Jan 31, 2005 at 12:54:47PM -0800, Roland Dreier wrote: > > I seem to remember someone quoting the PCI spec saying that this was > > not allowed, but I can't find it right now. Grant, do you happen to > > know if legacy INTx interrupts are allowed to pass writes to memory > > once they leave PCI Express and make it into the chipset? > >I don't know offhand and (sorry) can't look it up right now. >Poke me again later this week (thurs) if you need a solid answer >and no one else has provided one. > >I do expect ordering issues with the path between the device and >the bridge chip that is handling legacy INTx support. This is basically >the same DMA ordering issues we see today with Line based interrupts. >It would make sense for the rest of the path to NOT have strict ordering >given this hole. Ordering matrix is documented within the PCIe base 1.0a specification. The rules are fairly straight forward depending upon the capabilities being accessed. Too much to type in here but to give you an idea: - INTx are treated as writes from a PCIe transaction perspective. - In general, a TC defines an ordering domain. The TC to VC mapping is used to control how a transaction (aka TLP) is serviced on a per link basis. Consistency in how a TC is mapped can be important if the application is operating across multiple TC. However, servers do not require multiple TC or VC (waste of resources) nor really does any application so one can design under the assumption that a single TC is sufficient. All transactions should therefore have the same TC or you are headed for a bit of complexity and pain. - Within a link, all TLP are processed on a given VC in the order they are presented. They are always strongly ordered across a given link. If an intermediate device such as a PCIe switch is present, it must obey the PCI ordering rules and avoid re-ordering where prohibited (e.g. a Read getting ahead of a Write which is a common flush the path technique). - The PCIe specifications only define how a TLP is process to / from a RC to another endpoint or between endpoints. They do not define how a RC is implemented or how it interacts with the memory subsystem. - Weak ordering is allowed in PCIe just like for PCI / PCI-X (our objective was to enable compatible operations while minimizing the pain to migrate to a new interconnect technology). - In general, all interrupts (line or MSI/MSI-X) should be strongly ordered relative to other write operations to avoid silent data corruption from occurring. As such, an interrupt should not pass a memory write when being processed by the chipset. If you have any other questions, I'm happy to try and answer or one can read the friendly specification for more specifics. Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From iod00d at hp.com Mon Jan 31 23:24:11 2005 From: iod00d at hp.com (Grant Grundler) Date: Mon, 31 Jan 2005 23:24:11 -0800 Subject: [openib-general] [PATCH] roland-uverbs: possible race condition In-Reply-To: <6.2.0.14.2.20050131142946.02afc608@esmail.cup.hp.com> References: <20050130143445.GH26505@mellanox.co.il> <52is5etabn.fsf@topspin.com> <20050131063819.GA3832@mellanox.co.il> <52r7k1s4iw.fsf@topspin.com> <20050131221202.GP22123@esmail.cup.hp.com> <6.2.0.14.2.20050131142946.02afc608@esmail.cup.hp.com> Message-ID: <20050201072411.GB24472@esmail.cup.hp.com> On Mon, Jan 31, 2005 at 02:40:18PM -0800, Michael Krause wrote: > - INTx are treated as writes from a PCIe transaction perspective. I remember the INTx are transactions once they hit the PCIe bus. But do PCIe native devices emit those INTx transactions directly? For some reaon I was thinking INTx was still a physical IRQ line for legacy PCI compatibility. ... > - In general, all interrupts (line or MSI/MSI-X) should be strongly ordered > relative to other write operations to avoid silent data corruption from > occurring. As such, an interrupt should not pass a memory write when being > processed by the chipset. Ok...I need to keep in mind your reply is for PCIe where "interrupts" means "INTx transaction". BTW, OS's using legacy PCI OS drivers already do protect themselves from the DMA vs IRQ line delivery races. Or at least linux does. MSI/MSI-X support was only introduce a year or so ago - 4 or 5 years after MSI was introduced into PCI 2.2 spec. > If you have any other questions, I'm happy to try and answer or one can > read the friendly specification for more specifics. thanks for the corrections, grant