login
Header Space

 
 

linux-netdev mailing list

FromSubjectsort iconDate
David Miller
[GIT]: Networking fixes
1) TIPC and ipv6 endianness cures from Al Viro. 2) Fix copy_from_user() results being used as error returns, from Sam Ravnborg, based upon a patch from Pavel E. 3) When asking for null authentication algorithm in ESP, we get a null hmac, instead of just a plain null digest. Fix from Herbert Xu. 4) Missing SunRPC kernel-doc annotation from Randy Dunlap. 5) IPSEC auditing prints out the flowlabel incorrectly. Fix from Yoshifuji HIDEAKI. 6) Compat 32-bit support for multicast soc...
Apr 27, 7:56 pm 2008
Russell King
2.6.25: Weird IPv4 stack behaviour, IPv6 is fine
Hi, I've upgraded lists.arm.linux.org.uk to 2.6.25, and I'm now seeing some very weird networking behaviour from the machine which seems to only affect IPv4 - including ICMP and NFS(tcp). tcpdump is available (all 4MB worth): http://www.home.arm.linux.org.uk/~rmk/ping.capture Machines involved: dyn-67 - x86 box 2.6.20-1.2320.fc5 (192.168.0.67 / 2002:4e20:1eda:1:201:80ff:fe4b:1778) n2100 - ARM box 2.6.24 (78.32.30.221, has ipv6 as well) lists - ARM box 2.6.25 (78.32.30.220 ...
Apr 27, 7:14 pm 2008
David Miller
Re: 2.6.25: Weird IPv4 stack behaviour, IPv6 is fine
From: Russell King <rmk@arm.linux.org.uk> The ReasmTimeout and ReasmFails look interesting. Maybe it was the namespace bits? Pavel, could you take a quick look? Thanks. --
Apr 27, 7:26 pm 2008
Russell King Apr 27, 7:17 pm 2008
Jeremy Jackson
adding tcpdump/OAM support to usb ATM devices
who cares about ATM? Well anyone using ADSL/2/2+ high speed internet access is stuck with it, and that's not a small number of people. Diagnosing problems is often complicated by the fact that large backhaul networks appear as only 1 IP hop in traceroute. The goal is to support sending and receiving F5 OAM cells on a Linux host, from in-use PVCs bound to a br2684 bridge, your typical USB ADSL modem. The ATM OAM segment "ping" can be useful in troubleshooting, yet few modems support it, and *non...
Apr 27, 5:31 pm 2008
David Miller
Re: adding tcpdump/OAM support to usb ATM devices
From: Jeremy Jackson <jerj@coplanar.net> It depends upon what you want to do with this. Maybe it makes sense, if what you're trying to do is expose the signalling layer of the packet to diagnostic tools, is have an option in the driver such that the entire ATM header area will be presented to the AF_PACKET socket when tapping the network. Could that work? Adding special mechanisms to get at the packet data is going to make it more difficult to use this stuff, and kind of defeat your p...
Apr 27, 5:35 pm 2008
Jeremy Jackson
Re: adding tcpdump/OAM support to usb ATM devices
Backgroud: OAM cells are like the ICMP of ATM networking, they are separate from payload cells, not part of the headers. They do share the VPI/VCI of the data circuit, but have a different cell Packet Type Indication (PTI) With br2684, it exposes an ethernet-like device. Tcpdump can work on that no problem, and perhaps it could expose the headers of the first/last cell of each "frame", but I don't see how the OAM cells would fit into capturing packets that way. Or can an AF_PACKET socket b...
Apr 27, 6:35 pm 2008
Francois Romieu
[RFT 0/6] sis190 branch info
The 'sis190' branch in repository git://git.kernel.org/pub/scm/linux/kernel/git/romieu/netdev-2.6.git sis190 contains the changes below. Tested by myself on an Asrock 945G-DVI (SiS 760/965 + SiS 190) with various packet sizes. Distance from 'upstream-davem' (f946dffed6334f08da065a89ed65026ebf8b33b4) ------------------------------------------------------------------------- 697c269610179051cf19e45566fee3dcebbb1e93 c34ebbae01e3d1f6a5cced6a40dc0ed792590d22 47e4781544aaf2916170ef5516786fbb1944...
Apr 27, 1:00 pm 2008
Francois Romieu
[PATCH 6/6] sis190: account for Tx errors
Update the collision counter as well. Signed-off-by: Francois Romieu <romieu@fr.zoreil.com> --- drivers/net/sis190.c | 38 +++++++++++++++++++++++++++++++++++--- 1 files changed, 35 insertions(+), 3 deletions(-) diff --git a/drivers/net/sis190.c b/drivers/net/sis190.c index 20f4829..abc63b0 100644 --- a/drivers/net/sis190.c +++ b/drivers/net/sis190.c @@ -212,6 +212,12 @@ enum _DescStatusBit { THOL2 = 0x20000000, THOL1 = 0x10000000, THOL0 = 0x00000000, + + WND = 0x0008000...
Apr 27, 1:06 pm 2008
Francois Romieu
[PATCH 5/6] sis190: remove needless MII reset
It does not help the auto-negotiation process to settle. Added a debug message to give some hindsight when things do not work as expected. Signed-off-by: Francois Romieu <romieu@fr.zoreil.com> --- drivers/net/sis190.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/net/sis190.c b/drivers/net/sis190.c index 0b22e75..20f4829 100644 --- a/drivers/net/sis190.c +++ b/drivers/net/sis190.c @@ -899,10 +899,9 @@ static void sis190_phy_task(struct work_struc...
Apr 27, 1:05 pm 2008
Francois Romieu
[PATCH 4/6] sis190: Rx path update
- remove the function pointer to help gcc optimizing the inline pci_dma functions - pci_dma_sync_single_for_cpu is not needed for a single large packet - convert rtl8169_try_rx_copy to bool b449655ff52ff8a29c66c5fc3fc03617e61182ee did the same for the r8169 driver. Signed-off-by: Francois Romieu <romieu@fr.zoreil.com> --- drivers/net/sis190.c | 54 +++++++++++++++++++++++++------------------------ 1 files changed, 28 insertions(+), 26 deletions(-) diff --git a/drivers/net/sis19...
Apr 27, 1:04 pm 2008
Francois Romieu
[PATCH 3/6] sis190: use netdev_alloc_skb
This sets skb->dev and allows arch specific allocation. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Acked-by: Francois Romieu <romieu@fr.zoreil.com> --- drivers/net/sis190.c | 26 +++++++++++++------------- 1 files changed, 13 insertions(+), 13 deletions(-) diff --git a/drivers/net/sis190.c b/drivers/net/sis190.c index 248c385..97aa18d 100644 --- a/drivers/net/sis190.c +++ b/drivers/net/sis190.c @@ -480,16 +480,17 @@ static inline void sis190_make_unusable_by_asi...
Apr 27, 1:03 pm 2008
Francois Romieu
[PATCH 2/6] sis190: hard-code the alignment of tiny packets
There is no DMA involved here. Align the IP header without condition. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Acked-by: Francois Romieu <romieu@fr.zoreil.com> --- drivers/net/sis190.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/sis190.c b/drivers/net/sis190.c index 0d6aa1f..248c385 100644 --- a/drivers/net/sis190.c +++ b/drivers/net/sis190.c @@ -526,9 +526,9 @@ static inline int sis190_try_rx_copy(struct sk_buff **sk_buff...
Apr 27, 1:02 pm 2008
Francois Romieu
[PATCH 1/6] sis190: use the allocated buffer as a status cod...
The local status code does not carry mory information. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Acked-by: Francois Romieu <romieu@fr.zoreil.com> --- drivers/net/sis190.c | 37 +++++++++++++++---------------------- 1 files changed, 15 insertions(+), 22 deletions(-) diff --git a/drivers/net/sis190.c b/drivers/net/sis190.c index 20745fd..0d6aa1f 100644 --- a/drivers/net/sis190.c +++ b/drivers/net/sis190.c @@ -480,30 +480,22 @@ static inline void sis190_make_unusable...
Apr 27, 1:01 pm 2008
Steve Wise
[PATCH 2.6.26 0/3] RDMA/cxgb3: fixes and enhancements for 2....
The following series fixes some bugs as well as enabling peer-2-peer applications including OpenMPI and HPMPI. I hope this can make 2.6.26. NOTE: The changes in patch 3 require a new firmware version. I added the version change to drivers/net/cxgb3/version.h in this patch so that the changes that require the new firmware as well as the version bump are all in one git commit. This keeps things like 'git bisect' from leaving the driver broken. -- Steve. --
Apr 27, 11:54 am 2008
Steve Wise
[PATCH 2.6.26 3/3] RDMA/cxgb3: Support peer-2-peer connectio...
Open MPI, Intel MPI and other applications don't support the iWARP requirement that the client side send the first RDMA message. This class of application connection setup is called peer-2-peer. Typically once the connection is setup, _both_ sides want to send data. This patch enables supporting peer-2-peer over the chelsio rnic by enforcing this iWARP requirement in the driver itself as part of RDMA connection setup. Connection setup is extended, when peer2peer is 1, such that the MPA initi...
Apr 27, 12:00 pm 2008
Roland Dreier
Re: [ofa-general] [PATCH 2.6.26 3/3] RDMA/cxgb3: Support pee...
What are the interoperability implications of this? Looking closer I see that iw_nes has the send_first module parameter. How does this interact with that? I guess it's fine to apply this, but do we have a plan for how we want to handle this issue in the long-term? - R. --
Apr 27, 12:34 pm 2008
Steve Wise
Re: [ofa-general] [PATCH 2.6.26 3/3] RDMA/cxgb3: Support pee...
It doesn't...yet. But we wanted to enable these applications for chelsio now and get the low level fw and driver changes done first and Yes! If you'll recall, we had a thread on the ofa general list discussing how to enhance the MPA negotiation so peers can indicate whether they want/need the RTR and what type of RTR (0B read, 0B write, or 0B send) should be sent. This will be done by standardizing a few bits of the private data in order to negotiate all this. The rdma-cma API will...
Apr 27, 12:44 pm 2008
Steve Wise
[PATCH 2.6.26 1/3] RDMA/cxgb3: Correctly serialize peer abor...
OpenMPI and other stress testing exposed a few bad bugs in handling aborts in the middle of a normal close. - serialize abort reply and peer abort processing with disconnect processing - warn (and ignore) if ep timer is stopped when it wasn't running - cleaned up disconnect path to correctly deal with aborting and dead endpoints - in iwch_modify_qp(), add a ref to the ep before releasing the qp lock if iwch_ep_disconnect() will be called. The dref after calling disconnect. Signed-off-b...
Apr 27, 12:00 pm 2008
Steve Wise
[PATCH 2.6.26 2/3] RDMA/cxgb3: Correctly set the max_mr_size...
cxgb3 only supports 4GB memory regions. The lustre RDMA code uses this attribute and currently has to code around our bad setting. Signed-off-by: Steve Wise <swise@opengridcomputing.com> --- drivers/infiniband/hw/cxgb3/cxio_hal.h | 1 + drivers/infiniband/hw/cxgb3/iwch.c | 1 + drivers/infiniband/hw/cxgb3/iwch.h | 1 + drivers/infiniband/hw/cxgb3/iwch_provider.c | 2 +- 4 files changed, 4 insertions(+), 1 deletions(-) diff --git a/drivers/infiniban...
Apr 27, 12:00 pm 2008
Jarek Poplawski
[PATCH][NET_SCHED] sch_sfq: fix queue limiting while enqueuing
[NET_SCHED] sch_sfq: fix queue limiting while enqueuing Current way to use q->limit both as per flow and total queue limit doesn't make much sense. There would be no reason for sfq's limit parameter if the same could be done with ifconfig's txqueuelen, and it's too small for this anyway: with a number of flow queues around maximum (SFQ_DEPTH) each queue would be ~1 packet long, which means no queuing... There is also changed a place for checking the total limit: let's do it at the beginning...
Apr 27, 10:22 am 2008
Patrick McHardy
Re: [PATCH][NET_SCHED] sch_sfq: fix queue limiting while enq...
I don't think we should do this. The tx_queue_len is only used for initialization in case no parameter is specified by other qdiscs. Besides this *will* break for example my configuration, I use SFQ as inner qdisc on virtual devices with either tx_queue_len == 0 or 3 in case of ppp. --
Apr 27, 2:29 pm 2008
Jarek Poplawski
Re: [PATCH][NET_SCHED] sch_sfq: fix queue limiting while enq...
OK, you are right: it would break some scripts... But IMHO this way of treating tx_queue_len isn't right: it can be changed after initialization too, and looks like perfect way to control the queue size globally. Anyway, current use of "limit" parameter in sfq warps its idea. Another possibility would be like this: sch->q.qlen >= max_t(__u32, sch->dev->tx_queue_len, q->limit) or removing this global sch->q.qlen check at all. Or maybe we need to add one more tc parameter for sf...
Apr 27, 4:36 pm 2008
Jarek Poplawski
[PATCH][NET_SCHED] sch_sfq: use del_timer_sync() in sfq_dest...
[NET_SCHED] sch_sfq: use del_timer_sync() in sfq_destroy() Let's delete timer reliably in sfq_destroy(). Signed-off-by: Jarek Poplawski <jarkao2@gmail.com> --- net/sched/sch_sfq.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/net/sched/sch_sfq.c b/net/sched/sch_sfq.c index a20e2ef..f0463d7 100644 --- a/net/sched/sch_sfq.c +++ b/net/sched/sch_sfq.c @@ -521,7 +521,8 @@ static void sfq_destroy(struct Qdisc *sch) struct sfq_sched_data *q = qdisc_priv(s...
Apr 27, 8:59 am 2008
Patrick McHardy
Re: [PATCH][NET_SCHED] sch_sfq: use del_timer_sync() in sfq_...
This is broken, we hold dev->queue_lock in ->destroy. --
Apr 27, 2:24 pm 2008
Jarek Poplawski
Re: [PATCH][NET_SCHED] sch_sfq: use del_timer_sync() in sfq_...
But sfq timer (sfq_perturbation()) doesn't use this timer... Could you explain your point more? Thanks, Jarek P. --
Apr 27, 3:00 pm 2008
Patrick McHardy
Re: [PATCH][NET_SCHED] sch_sfq: use del_timer_sync() in sfq_...
My point was that it might sleep and can thus not be called in atomic context. This was a misunderstanding on my side though and your patch is fine. --
Apr 27, 3:10 pm 2008
Ondrej Zajicek
[PATCH] via-rhine: suspend/resume bugfix
There is a bug in via-rhine driver - the driver don't disable interrupts during suspend, which sometimes leads to globally disabled interrupt line. This patch disables interrupts (and Rx/Tx) during suspend. Signed-off-by: Ondrej Zajicek <santiago@crfreenet.org> --- diff -uprN -X linux-2.6.25/Documentation/dontdiff linux-2.6.25/drivers/net/via-rhine.c linux-2.6.25-feanor/drivers/net/via-rhine.c --- linux-2.6.25/drivers/net/via-rhine.c 2008-04-17 04:49:44.000000000 +0200 +++ linux-2.6.25...
Apr 27, 3:13 am 2008
Jiri Slaby Apr 27, 4:59 am 2008
Ondrej Zajicek
Re: [PATCH] via-rhine: suspend/resume bugfix
Hmm, i will fix it. And i found that the patch might break wakeup-on-LAN. So please discard it. -- Elen sila lumenn' omentielvo Ondrej 'SanTiago' Zajicek (email: santiago@crfreenet.org) OpenPGP encrypted e-mails preferred (KeyID 0x11DEADC3, wwwkeys.pgp.net) "To err is human -- to blame it on a computer is even more so." --
Apr 27, 5:58 am 2008
Herbert Xu
[IPSEC]: Use digest_null directly for auth
Hi Dave: This patch is a minor optimisation to avoid using hmac on null authentication when explicitly specified by the user. [IPSEC]: Use digest_null directly for auth Previously digest_null had no setkey function which meant that we used hmac(digest_null) for IPsec since IPsec always calls setkey. Now that digest_null has a setkey we no longer need to do that. In fact when only confidentiality is specified for ESP we already use digest_null directly. However, when the null algorithm is ...
Apr 27, 3:17 am 2008
David Miller
Re: [IPSEC]: Use digest_null directly for auth
From: Herbert Xu <herbert@gondor.apana.org.au> "Null, I really mean it." :-) Patch applied, thanks Herbert! --
Apr 27, 4:00 am 2008
Harvey Harrison
[PATCH] net: eepro autoport typo
Found by sparse dubious !x & y warning...hidden in the GetBit macro why !Word doesn't make any sense. Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- drivers/net/eepro.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/eepro.c b/drivers/net/eepro.c index 83bda6c..56f5049 100644 --- a/drivers/net/eepro.c +++ b/drivers/net/eepro.c @@ -633,7 +633,7 @@ static void __init printEEPROMInfo(struct net_device *dev) printk(KERN_DEBUG " PC...
Apr 27, 2:44 am 2008
Al Viro
[PATCH] tipc endianness annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> --- net/tipc/msg.h | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/net/tipc/msg.h b/net/tipc/msg.h index 6ad070d..ad487e8 100644 --- a/net/tipc/msg.h +++ b/net/tipc/msg.h @@ -70,10 +70,9 @@ static inline void msg_set_bits(struct tipc_msg *m, u32 w, u32 pos, u32 mask, u32 val) { val = (val & mask) << pos; - val = htonl(val); - mask = htonl(mask << pos); - m->hdr[w] &= ~mask; ...
Apr 27, 1:40 am 2008
David Miller
Re: [PATCH] tipc endianness annotations
From: Al Viro <viro@ZenIV.linux.org.uk> Applied, thanks Al. --
Apr 27, 1:42 am 2008
David Miller
Re: [PATCH] tipc endianness annotations
From: Al Viro <viro@ZenIV.linux.org.uk> Applied, thanks Al. --
Apr 27, 1:42 am 2008
Al Viro
[PATCH] result of csum_fold() is already 16bit, no need to c...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> --- net/ipv6/ip6mr.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c index c8c6e33..2de3c46 100644 --- a/net/ipv6/ip6mr.c +++ b/net/ipv6/ip6mr.c @@ -358,7 +358,7 @@ static int pim6_rcv(struct sk_buff *skb) if (pim->type != ((PIM_VERSION << 4) | PIM_REGISTER) || (pim->flags & PIM_NULL_REGISTER) || (ip_compute_csum((void *)pim, sizeof(*pim)) != 0 &...
Apr 27, 1:27 am 2008
David Miller
Re: [PATCH] result of csum_fold() is already 16bit, no need ...
From: Al Viro <viro@ZenIV.linux.org.uk> Applied, thanks Al. --
Apr 27, 1:29 am 2008
Al Viro
[PATCH] asm/unaligned.h doesn't work well as the very first ...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> --- net/mac80211/mesh.h | 1 + net/mac80211/mesh_hwmp.c | 1 - 2 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/mac80211/mesh.h b/net/mac80211/mesh.h index 742003d..9ee3aff 100644 --- a/net/mac80211/mesh.h +++ b/net/mac80211/mesh.h @@ -13,6 +13,7 @@ #include <linux/types.h> #include <linux/jhash.h> +#include <asm/unaligned.h> #include "ieee80211_i.h" diff --git a/net/mac80211/mes...
Apr 27, 1:19 am 2008
Sam Ravnborg
Re: [PATCH] asm/unaligned.h doesn't work well as the very fi...
It has been discussed that any .h file should pull in what it needs so the other of includes does not matter. Some do them alphabetically. Why not fix asm-*/unaligned.h so all users now and future are fixed in one shot? Sam --
Apr 27, 2:09 am 2008
Al Viro
Re: [PATCH] asm/unaligned.h doesn't work well as the very fi...
It has been discussed or it has been agreed? IMO it's a bullshit - especially for low-level stuff like that. As for the way some do includes... It's not exactly a family-friendly list, but still I'd rather not comment in details on the existing practices... --
Apr 27, 2:12 am 2008
Harvey Harrison
Re: [PATCH] asm/unaligned.h doesn't work well as the very fi...
I'm redoing the unaligned handling in -mm at the moment, and it avoids this problem. Harvey --
Apr 27, 2:31 am 2008
David Miller
Re: [PATCH] asm/unaligned.h doesn't work well as the very fi...
From: Al Viro <viro@ZenIV.linux.org.uk> Patch applied, thanks a lot Al. --
Apr 27, 1:21 am 2008
YOSHIFUJI Hideaki /
[PATCH net-2.6/stable] [XFRM] AUDIT: Fix flowlabel text form...
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> --- diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c index 5dcc10b..fac27ce 100644 --- a/net/xfrm/xfrm_state.c +++ b/net/xfrm/xfrm_state.c @@ -2112,7 +2112,7 @@ static void xfrm_audit_helper_pktinfo(struct sk_buff *skb, u16 family, iph6 = ipv6_hdr(skb); audit_log_format(audit_buf, " src=" NIP6_FMT " dst=" NIP6_FMT - " flowlbl=0x%x%x%x", + " flowlbl=0x%x%02x%02x", NIP6(iph6->saddr), NI...
Apr 26, 11:24 pm 2008
David Miller
Re: [PATCH net-2.6/stable] [XFRM] AUDIT: Fix flowlabel text ...
From: YOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org> You'll have to be more specific than just saying "fixed" when you submit a patch like this. What about the format is it fixing? Also, can this possibly break existing audit log scanning tools and parsers? --
Apr 26, 11:25 pm 2008
YOSHIFUJI Hideaki /
Re: [PATCH net-2.6/stable] [XFRM] AUDIT: Fix flowlabel text ...
James? We could add "flowlabel", but it is possible to break something, too. Anyway, because the log format did not make sense as audit log, we need to fix it. --- [XFRM] AUDIT: Fix flowlabel text format ambibuity. Flowlabel text format was not correct and thus ambiguous. For example, 0x00123 or 0x01203 are formatted as 0x123. This is not what audit tools want. Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> --- diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_sta...
Apr 26, 11:54 pm 2008
David Miller
Re: [PATCH net-2.6/stable] [XFRM] AUDIT: Fix flowlabel text ...
From: YOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org> Patch applied, James if you have some objections let me know, otherwise I'll toss this to -stable too. Thanks! --
Apr 27, 1:25 am 2008
James Morris
Re: [PATCH net-2.6/stable] [XFRM] AUDIT: Fix flowlabel text ...
On Sat, 26 Apr 2008, David Miller wrote: > From: YOSHIFUJI Hideaki /
Apr 27, 7:09 pm 2008
David Miller
Re: [PATCH] Allow building iwl3945 without iwl4965.
From: Jason Riedy <jason@acm.org> No, the "part 1" is exactly the patch posted by Tomas Winkler and referenced in the 49186b4a083655 commit, which is: commit d7d313000ba2fc94a5383511a17ff38a39bab928 Author: Tomas Winkler <tomas.winkler@intel.com> Date: Wed Apr 23 03:48:57 2008 -0700 iwlwifi: Fix built-in compilation of iwlcore This patch fixes problem in Makefile that prevented built-in compilation of iwlcore Commit that caused this problem: eadd3c4...
Apr 27, 6:43 pm 2008
Julian Anastasov
Re: [Bugme-new] [Bug 10556] New: IPVS sync_backup oops
Hello, Below is 2nd version that handles templates properly, which should be the actual problem. Large timeouts in backup look like a problem in incorrect ipvsadm binary, timeouts are not converted from jiffies. Patch follows: Result from ip_vs_proto_get() should be checked because protocol value can be invalid or unsupported in backup. But for valid message we should not fail for templates which use IPPROTO_IP. Also, add checks to validate message limits and connection state. Show NONE...
Apr 27, 4:22 am 2008
previous daytodaynext day
April 26, 2008April 27, 2008April 28, 2008
speck-geostationary