Displaying 20 results from an estimated 4000 matches similar to: "netfront drops anything more than 25 pkts"
2004 Apr 09
1
Sharp ZQ-290s sync software
Hi,
Since Sharps communication protocols are "top secret", I'm trying to
port their sync software to linux.
I'm new to wine, so this might be silly, but after hours of googling and
searching for solutions I'm posting this.
After installing DCOM98.exe, the Desktop software installed, and it
runs. Only problem is it doesn't detect the device connected to the
serial port
2007 Jul 22
1
Fwd: PFIFO to contain more pkts than allowed by TCP peer?
Maybe this is the right place to ask?
Thanks again,
Daniel
Begin forwarded message:
> From: Daniel Schaffrath <daniel.schaffrath@mac.com>
> Date: 21 July 2007 11:01:01 GMT+02:00
> To: linux-net@vger.kernel.org
> Subject: PFIFO to contain more pkts than allowed by TCP peer?
>
> Hello everybody,
>
> when the one and only connection originating my box is a TCP stream
2006 Jun 22
0
[Bug 488] New: Chain/Groupings of networks don't total pkts and bytes correctly
https://bugzilla.netfilter.org/bugzilla/show_bug.cgi?id=488
Summary: Chain/Groupings of networks don't total pkts and bytes
correctly
Product: iptables
Version: 1.2.11
Platform: i386
OS/Version: RedHat Linux
Status: NEW
Severity: normal
Priority: P2
Component: iptables
2005 Dec 01
0
Wrong src addr is pkts
Hi
I have a FW dual homed to the Internet via a leased line and most
recently by a ADSL line.
I have SQUID running on the FW which I want to direct to the ADSL line
as well as other traffic from my LAN.
After reading the LARTC Howto and the on-line book by Matthew ?? I have
my LAN-Internet traffic sorted but the SQUID traffic is a problem.
This is my config on a test machine:
Chain
2019 Jun 19
2
[Bug 1343] New: With iPv6 masquerade, ICMPv6 time-exceeded pkts are forwarded with bad checksum
https://bugzilla.netfilter.org/show_bug.cgi?id=1343
Bug ID: 1343
Summary: With iPv6 masquerade, ICMPv6 time-exceeded pkts are
forwarded with bad checksum
Product: netfilter/iptables
Version: unspecified
Hardware: x86_64
OS: Debian GNU/Linux
Status: NEW
Severity: normal
2006 Jun 24
3
[Bug 488] Chain/Groupings of networks don't total pkts and bytes correctly
https://bugzilla.netfilter.org/bugzilla/show_bug.cgi?id=488
netfilter@linuxace.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |netfilter@linuxace.com
------- Additional Comments From netfilter@linuxace.com 2006-06-24 19:10 MET -------
Not
2007 Oct 30
0
[Patch 6/8] Netfront accelerator bug fixes
cleanup accelerators list on netfront unload
Signed-off-by <kmansley@solarflare.com>
diff -r fdfd708d2ec4 drivers/xen/netfront/accel.c
--- a/drivers/xen/netfront/accel.c Wed Oct 24 15:38:35 2007 +0100
+++ b/drivers/xen/netfront/accel.c Wed Oct 24 16:25:57 2007 +0100
@@ -75,6 +75,24 @@ void netif_init_accel(void)
spin_lock_init(&accelerators_lock);
}
+void netif_exit_accel(void)
+{
2008 Aug 26
0
[PATCH] xen-netfront: Avoid unaligned accesses to IP header.
Align ip header to a 16 byte boundary to avoid unaligned
access like other drivers.
Without this patch, xen-netfront doesn't work well on ia64.
Signed-off-by: Isaku Yamahata <yamahata at valinux.co.jp>
---
drivers/net/xen-netfront.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c
index 3c3dd40..7416f41
2013 Apr 15
0
[PATCH V5 2/7] xen-netfront: frags -> slots in xennet_get_responses
This function is in fact counting the ring slots required for responses.
Separate the concepts of ring slots and skb frags make the code clearer, as
now netfront and netback can have different MAX_SKB_FRAGS, slot and frag are
not mapped 1:1 any more.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Reviewed-by: David Vrabel <david.vrabel@citrix.com>
---
drivers/net/xen-netfront.c | 18
2008 Aug 26
0
[PATCH] xen-netfront: Avoid unaligned accesses to IP header.
Align ip header to a 16 byte boundary to avoid unaligned
access like other drivers.
Without this patch, xen-netfront doesn't work well on ia64.
Signed-off-by: Isaku Yamahata <yamahata at valinux.co.jp>
---
drivers/net/xen-netfront.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c
index 3c3dd40..7416f41
2008 Aug 26
0
[PATCH] xen-netfront: Avoid unaligned accesses to IP header.
Align ip header to a 16 byte boundary to avoid unaligned
access like other drivers.
Without this patch, xen-netfront doesn't work well on ia64.
Signed-off-by: Isaku Yamahata <yamahata at valinux.co.jp>
---
drivers/net/xen-netfront.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c
index 3c3dd40..7416f41
2008 Aug 02
0
[PATCH 10/10] drivers/net/xen-netfront.c: Use DIV_ROUND_UP
From: Julia Lawall <julia at diku.dk>
The kernel.h macro DIV_ROUND_UP performs the computation (((n) + (d) - 1) /
(d)) but is perhaps more readable.
An extract of the semantic patch that makes this change is as follows:
(http://www.emn.fr/x-info/coccinelle/)
// <smpl>
@haskernel@
@@
#include <linux/kernel.h>
@depends on haskernel@
expression n,d;
@@
(
- (n + d - 1) / d
+
2008 Jul 03
0
[PATCH] xen/netfront: Avoid unaligned accesses to IP datagrams.
Align ip header to a 16 byte boundary.
This patch eliminates noisy warnings on IA64.
Signed-off-by: Isaku Yamahata <yamahata at valinux.co.jp>
---
drivers/net/xen-netfront.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c
index 44aed80..2724688 100644
--- a/drivers/net/xen-netfront.c
+++
2008 Feb 26
0
[PATCH] Fix request_module/modprobe deadlock in netfront accelerator
There would seem to be a potential deadlock in the netfront accelerator
plugin support. When the configured accelerator changes in xenstore,
netfront tries to load the new plugin using request_module(). It does
this from a workqueue work item. request_module() will invoke modprobe
which in some circumstances (I''m not sure exactly what - I''ve not
managed to reproduce it myself)
2005 Jan 17
0
[PATCH] Xen bk snapshot: netfront.c should use module_init()
__initcall is for things which are always built into the kernel.
Kconfig says netfront is tristate (although without a module_exit, the
module won''t be unloadable).
Trivial fix,
Rusty.
--- linux-2.6.10-xen-sparse/drivers/xen/netfront/netfront.c.~1~ 2005-01-11 15:35:59.000000000 +1100
+++ linux-2.6.10-xen-sparse/drivers/xen/netfront/netfront.c 2005-01-17 15:41:21.000000000 +1100
@@
2004 Apr 14
3
IAX2 update - timestamp issue within iax pkts
For those that might be using Cisco 7940/7960 sip phones and placing
calls across an iax2 link, we think the voice quality problem has been
identified and corrected. The dev cvs should be updated as of about
3:30pm CDT today (April 14).
History: Calls originating from a Cisco 79x0 sip phone and sent via
iax2 link to some distant * machine resulted in very poor quality audio,
and in some cases,
2007 Aug 13
0
[LINUX] netfront: Cleanup and fix TSO/GSO/CHECKSUM conditionals
Hi Keir:
[LINUX] netfront: Cleanup and fix TSO/GSO/CHECKSUM conditionals
This patch tries to minimise the amount of code that is conditionally
compiled. This is desirable (and the Linux way) as it helps to prevent
people breaking code unwittingly since conditionals may hide compile
problems.
It also adds a missing conditional around the TSO ethtool operations.
This also helps the building of
2011 Oct 17
1
[PATCH] netback: disable features not supported by netfront
From: pbonzini@redhat.com
# HG changeset patch
# User Paolo Bonzini <pbonzini@redhat.com>
# Date 1318837036 -7200
# Node ID eb896361fc70b60b9a257d0c82e19633a11b9d41
# Parent 3c900d6a5f6a51ff1547f21fef30ab8b92feccc9
netback: disable features not supported by netfront
Netback works by first setting all possible features, and then
resetting some after connection, if the front-end
2013 Mar 15
1
[PATCH][v3.2.y] xen-netfront: delay gARP until backend switches to Connected
Hello,
Please consider including upstream commit
08e34eb14fe4cfd934b5c169a7682a969457c4ea in the next v3.2.y release.
It was included upstream as of v3.3-rc1. It has been tested and
confirmed to resolve http://bugs.launchpad.net/bugs/1154608 .
commit 08e34eb14fe4cfd934b5c169a7682a969457c4ea
Author: Laszlo Ersek <lersek at redhat.com>
Date: Sun Dec 11 01:48:59 2011 +0000
2013 Mar 15
1
[PATCH][v3.2.y] xen-netfront: delay gARP until backend switches to Connected
Hello,
Please consider including upstream commit
08e34eb14fe4cfd934b5c169a7682a969457c4ea in the next v3.2.y release.
It was included upstream as of v3.3-rc1. It has been tested and
confirmed to resolve http://bugs.launchpad.net/bugs/1154608 .
commit 08e34eb14fe4cfd934b5c169a7682a969457c4ea
Author: Laszlo Ersek <lersek at redhat.com>
Date: Sun Dec 11 01:48:59 2011 +0000