[PATCH 0/8] s390: network device driver fixes

2007-06-20 Thread Frank Pavlic
Hi Jeff, following eight patches are all fixes for s390 network device driver qeth, claw and netiucv. I would be glad to see them going into 2.6.22 although I know it is quite late . Thank you. Frank - To unsubscribe from this list: send the line unsubscribe netdev in the body of a message to

[PATCH 2/8] s390: qeth driver does not recover

2007-06-20 Thread Frank Pavlic
-by: Ursula Braun [EMAIL PROTECTED] Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/qeth_main.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/s390/net/qeth_main.c b/drivers/s390/net/qeth_main.c index ea2fd98..c5a9507 100644 --- a/drivers

[PATCH 1/8] s390: print correct level for HiperSockets devices

2007-06-20 Thread Frank Pavlic
From: Ursula Braun [EMAIL PROTECTED] For real HiperSockets the EBCDIC-ASCII conversion is not necessary. This is only needed for z/VM GuestLAN devices. Signed-off-by: Ursula Braun [EMAIL PROTECTED] Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/qeth_main.c | 20

[PATCH 4/8] s390: qeth: wrong packet length in qdio header

2007-06-20 Thread Frank Pavlic
From: Frank Pavlic [EMAIL PROTECTED] Packets Length in qdio header is broken when using EDDP on Layer2 devices. This leads to skb_under_panic on receiver system when running on z/VM GuestLAN devices. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/qeth_eddp.c |3 +-- 1

[PATCH 5/8] s390: Use ccw_device_get_id() in qeth/claw drivers

2007-06-20 Thread Frank Pavlic
From: Cornelia Huck [EMAIL PROTECTED] Use ccw_device_get_id() to get a device number instead of parsing the ccw device's bus id. Signed-off-by: Cornelia Huck [EMAIL PROTECTED] Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/claw.c | 13 - drivers/s390/net

[PATCH 3/8] s390: avoid inconsistent lock state in qeth

2007-06-20 Thread Frank Pavlic
for its usages of inet6_dev-lock. Signed-off-by: Ursula Braun [EMAIL PROTECTED] Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/qeth_main.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/s390/net/qeth_main.c b/drivers/s390/net/qeth_main.c

[PATCH 7/8] s390: netiucv spinlock initializer cleanup

2007-06-20 Thread Frank Pavlic
From: Thomas Gleixner [EMAIL PROTECTED] spinlock initializer cleanup in netiucv.c Signed-off-by: Thomas Gleixner [EMAIL PROTECTED] Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/netiucv.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/s390

[PATCH 8/8] s390: netiucv inlining cleanup

2007-06-20 Thread Frank Pavlic
From: Martin Schwidefsky [EMAIL PROTECTED] The recent iucv rework patches re-introduced some unnecessary inlines. Remove them again. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] Signed-off-by: Martin Schwidefsky [EMAIL PROTECTED] --- drivers/s390/net/netiucv.c | 18 +++--- 1

[PATCH 1/2] [AF_IUCV]: Implementation of a skb backlog queue

2007-05-04 Thread Frank Pavlic
also occured. Using a skb backlog queue is fixing all of these problems . Signed-off-by: Jennifer Hunt[EMAIL PROTECTED] Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- include/net/iucv/af_iucv.h |2 net/iucv/af_iucv.c | 159 - 2 files

[PATCH 0/4]: s390: network driver fixes and feature

2007-05-02 Thread Frank Pavlic
Hi , this is the second version of patches I have sent already two days ago. I removed the kthread_run patch (3/5) . Patches 1-3 contain fixes,patch 4 includes some kind of a new feature although it is just an adaption to the latest OSA hardware specification and just prints out human readable

[PATCH 1/4] s390: qeth driver connection hang

2007-05-02 Thread Frank Pavlic
From: Ursula Braun [EMAIL PROTECTED] Frank Pavlic [EMAIL PROTECTED] Connection hangs when using EDDP mode because sk_protocol is NULL when skb has been copied via skb_copy. This results in dropping packets. Also keep MAC address after recovery of Virtual NICs so that traffic can flow

[PATCH 2/4] s390: free skbs in finite amount of time in qeth

2007-05-02 Thread Frank Pavlic
From: Ursula Braun [EMAIL PROTECTED] Free sent skbs in some finite amount of time. Affected are asynchronous queue of Hipersockets devices and the output queues of all eth-devices respectively. Signed-off-by: Ursula Braun [EMAIL PROTECTED] Signed-off-by: Frank Pavlic [EMAIL PROTECTED

[PATCH 4/4] s390: qeth driver hardware specs adaptions

2007-05-02 Thread Frank Pavlic
] Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- qeth_main.c | 26 +-- qeth_mpc.c | 101 +++ qeth_mpc.h | 219 ++-- 3 files changed, 247 insertions(+), 99 deletions(-) diff --git a/drivers/s390/net/qeth_main.c b

[PATCH 4/5] s390: fix Oops when unloading module netiucv

2007-04-30 Thread Frank Pavlic
From: Ursula Braun [EMAIL PROTECTED] don't remove an entry from iucv_connection_list in netiucv_exit(). netiucv_free_netdevice is called anyway, which takes care of entry removal. Signed-off-by: Ursula Braun [EMAIL PROTECTED] Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- netiucv.c |5

[PATCH 3/5] s390: use kthread_run in qeth and lcs

2007-04-30 Thread Frank Pavlic
From: Eric Biederman [EMAIL PROTECTED] This patch modifies the qeth_recover thread to be started with kthread_run not a combination of kernel_thread and daemonize. Resulting in slightly simpler and more maintainable code. Signed-off-by: Eric W. Biederman [EMAIL PROTECTED] Signed-off-by: Frank

[PATCH 1/5] s390: fix connection hang in qeth

2007-04-30 Thread Frank Pavlic
From: Ursula Braun [EMAIL PROTECTED] Frank Pavlic [EMAIL PROTECTED] Connection hangs when using EDDP mode because sk is NULL when skb has been copied via skb_copy. This results in dropping packets. Also keep MAC address after recovery of Virtual NICs so that traffic can flow again

[PATCH 2/5] s390: free skbs in finite amount of time in qeth

2007-04-30 Thread Frank Pavlic
From: Ursula Braun [EMAIL PROTECTED] Free sent skbs in some finite amount of time. Affected are asynchronous queue of Hipersockets devices and the output queues of all eth-devices respectively. Signed-off-by: Ursula Braun [EMAIL PROTECTED] Signed-off-by: Frank Pavlic [EMAIL PROTECTED

[PATCH 5/5] s390: qeth driver hardware specs adaptions

2007-04-30 Thread Frank Pavlic
] Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- qeth_main.c | 26 +-- qeth_mpc.c | 101 +++ qeth_mpc.h | 219 ++-- 3 files changed, 247 insertions(+), 99 deletions(-) diff --git a/drivers/s390/net

Re: [PATCH 3/5] s390: use kthread_run in qeth and lcs

2007-04-30 Thread Frank Pavlic
On Mon, Apr 30, 2007 at 05:03:29PM +0100, Christoph Hellwig wrote: On Mon, Apr 30, 2007 at 05:42:57PM +0200, Frank Pavlic wrote: From: Eric Biederman [EMAIL PROTECTED] This patch modifies the qeth_recover thread to be started with kthread_run not a combination of kernel_thread

[PATCH 0/3] [AF_IUCV/IUCV]: net-2.6.22 fixes

2007-04-19 Thread Frank Pavlic
Hi Dave, following three patches contain fixes for AF_IUCV socket support and for iucv, the base code for IUCV related actions in z/VM . I made these patches against net-2.6.22, but they should also apply to net-2.6 without any conflicts. Well it works on my copy :-). I will make another

[PATCH 2/3] [AF_IUCV/IUCV]: Implementation of a skb backlog queue

2007-04-19 Thread Frank Pavlic
also occured. Using a skb backlog queue is fixing all of these problems . Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- include/net/iucv/af_iucv.h |2 net/iucv/af_iucv.c | 160 - 2 files changed, 133 insertions(+), 29 deletions(-) diff

[PATCH 3/3] [AF_IUCV/IUCV]: Add missing section annotations

2007-04-19 Thread Frank Pavlic
From: Heiko Carstens [EMAIL PROTECTED] Add missing section annotations and found and fixed some Coding Style issues. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- af_iucv.c | 44 +++- iucv.c| 49

[PATCH 1/3] [AF_IUCV/IUCV]: smp_call_function deadlock

2007-04-19 Thread Frank Pavlic
problem for CONFIG_HOTPLUG_CPU=n and another one when walking the cpu_online mask. When doing this, we must disable cpu hotplug. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] Signed-off-by: Martin Schwidefsky [EMAIL PROTECTED] --- include/net/iucv/iucv.h |2 net/iucv/iucv.c | 207

Re: [PATCH 0/7] [S390]: Introduction of AF_IUCV sockets support

2007-02-09 Thread Frank Pavlic
On Thu, Feb 08, 2007 at 02:00:22PM -0800, David Miller wrote: From: Frank Pavlic [EMAIL PROTECTED] Date: Fri, 2 Feb 2007 13:05:28 +0100 The patch set consists of following patches: [1/7] [S390]: Rewrite of the IUCV base code, part 1 [2/7] [S390]: Rewrite of the IUCV base code, part 2

Re: [PATCH 0/7] [S390]: Introduction of AF_IUCV sockets support

2007-02-07 Thread Frank Pavlic
On Tue, Feb 06, 2007 at 02:41:06PM -0800, David Miller wrote: From: Frank Pavlic [EMAIL PROTECTED] Date: Fri, 2 Feb 2007 13:05:28 +0100 The patch set consists of following patches: [1/7] [S390]: Rewrite of the IUCV base code, part 1 [2/7] [S390]: Rewrite of the IUCV base code, part 2

Re: [PATCH 0/7] [S390]: Introduction of AF_IUCV sockets support

2007-02-07 Thread Frank Pavlic
On Tue, Feb 06, 2007 at 02:41:06PM -0800, David Miller wrote: From: Frank Pavlic [EMAIL PROTECTED] Date: Fri, 2 Feb 2007 13:05:28 +0100 The patch set consists of following patches: [1/7] [S390]: Rewrite of the IUCV base code, part 1 [2/7] [S390]: Rewrite of the IUCV base code, part 2

[RESEND PATCH 0/7] [S390]: Introduction of AF_IUCV sockets support

2007-02-05 Thread Frank Pavlic
Hello, seems that Patch 1/7 is lost and did not make its way to the mailing list :-( That's the reason why I resend the whole patch set again. Here we go ... The Inter-User Communication Vehicle (IUCV) is a z/VM communication facility that enables a program running in one virtual machine to

[PATCH 6/7] [S390]: Adapt special message interface to new IUCV API

2007-02-05 Thread Frank Pavlic
From: Martin Schwidefsky [EMAIL PROTECTED] Adapt special message interface to new IUCV API Signed-off-by: Frank Pavlic [EMAIL PROTECTED] Signed-off-by: Martin Schwidefsky [EMAIL PROTECTED] --- drivers/s390/net/smsgiucv.c | 147 ++- 1 files changed, 74

[PATCH 3/7] [S390]: Adapt monreader driver to new IUCV API

2007-02-05 Thread Frank Pavlic
From: Martin Schwidefsky [EMAIL PROTECTED] Adapt monreader character device driver to new IUCV API Signed-off-by: Frank Pavlic [EMAIL PROTECTED] Signed-off-by: Martin Schwidefsky [EMAIL PROTECTED] --- drivers/s390/char/monreader.c | 218 +++-- 1 files

[PATCH 7/7] [S390]: Add AF_IUCV socket support

2007-02-05 Thread Frank Pavlic
From: Jennifer Hunt[EMAIL PROTECTED] This patch adds AF_IUCV socket support. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] Signed-off-by: Martin Schwidefsky [EMAIL PROTECTED] --- arch/s390/defconfig|1 include/linux/net.h|2 include/linux/socket.h |4 include

[PATCH 4/7] [S390]: Adapt vmlogrdr driver to new IUCV API

2007-02-05 Thread Frank Pavlic
From: Martin Schwidefsky [EMAIL PROTECTED] Adapt vmlogrdr character device driver to new IUCV API Signed-off-by: Frank Pavlic [EMAIL PROTECTED] Signed-off-by: Martin Schwidefsky [EMAIL PROTECTED] --- drivers/s390/char/vmlogrdr.c | 284 +++--- 1 files

[PATCH 1/7] too big ??

2007-02-05 Thread Frank Pavlic
Hi, I realized that PATCH 1/7 of the AF_IUCV patch set is more than 100kb . Seems that this is too much for the mailing list. Well since I resent them some minutes ago I am wondering what would be the best way now to get PATCH 1/7 onto netdev . Shall I only send the splitted PATCH 1/7 or really

[PATCH 0/7] [S390]: Introduction of AF_IUCV sockets support

2007-02-02 Thread Frank Pavlic
Hello, The Inter-User Communication Vehicle (IUCV) is a z/VM communication facility that enables a program running in one virtual machine to communicate with another virtual machine, or with a control program, or even with itself. The communication takes place over a predefined linkage called a

[PATCH 6/7] [S390]: Adapt special message interface to new IUCV API

2007-02-02 Thread Frank Pavlic
From: Martin Schwidefsky [EMAIL PROTECTED] Adapt special message interface to new IUCV API Signed-off-by: Frank Pavlic [EMAIL PROTECTED] Signed-off-by: Martin Schwidefsky [EMAIL PROTECTED] --- drivers/s390/net/smsgiucv.c | 147 ++- 1 files changed, 74

[PATCH 3/7] [S390]: Adapt monreader driver to new IUCV API

2007-02-02 Thread Frank Pavlic
From: Martin Schwidefsky [EMAIL PROTECTED] Adapt monreader character device driver to new IUCV API Signed-off-by: Frank Pavlic [EMAIL PROTECTED] Signed-off-by: Martin Schwidefsky [EMAIL PROTECTED] --- drivers/s390/char/monreader.c | 218 +++-- 1 files

[PATCH 4/7] [S390]: Adapt vmlogrdr driver to new IUCV API

2007-02-02 Thread Frank Pavlic
From: Martin Schwidefsky [EMAIL PROTECTED] Adapt vmlogrdr character device driver to new IUCV API Signed-off-by: Frank Pavlic [EMAIL PROTECTED] Signed-off-by: Martin Schwidefsky [EMAIL PROTECTED] --- drivers/s390/char/vmlogrdr.c | 284 +++--- 1 files

[PATCH 7/7] [S390]: Add AF_IUCV socket support

2007-02-02 Thread Frank Pavlic
From: Jennifer Hunt[EMAIL PROTECTED] This patch adds AF_IUCV socket support. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] Signed-off-by: Martin Schwidefsky [EMAIL PROTECTED] --- arch/s390/defconfig|1 include/linux/net.h|2 include/linux/socket.h |4 include

Re: [PATCH 1/5] s390: qeth driver fixes

2007-01-09 Thread Frank Pavlic
again to keep such points in mind... Frank On Tue, Jan 09, 2007 at 02:23:23AM -0500, Jeff Garzik wrote: Frank Pavlic wrote: Hi , please apply following 5 patches for s390 network device drivers. Sorry for the fifth patch containing some lines which just remove whitespaces. Another patch

[PATCH 3/5] s390: qeth driver fixes

2007-01-08 Thread Frank Pavlic
device. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/qeth.h |2 - drivers/s390/net/qeth_main.c | 125 ++ 2 files changed, 30 insertions(+), 97 deletions(-) diff --git a/drivers/s390/net/qeth.h b/drivers/s390/net/qeth.h index

[PATCH 2/5] s390: qeth driver fixes

2007-01-08 Thread Frank Pavlic
with fake_ll turned on, we have the information to fill sockaddr_ll. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/qeth_main.c | 58 ++ 1 files changed, 53 insertions(+), 5 deletions(-) diff --git a/drivers/s390/net/qeth_main.c b

[PATCH 4/5] s390: iucv Kconfig help description changes

2007-01-08 Thread Frank Pavlic
[PATCH 4/5] s390: iucv Kconfig help description changes From: Ursula Braun [EMAIL PROTECTED] remove text from help description which does not apply anymore for 2.6 kernel series. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/Kconfig |5 + 1 files

[PATCH 1/5] s390: qeth driver fixes

2007-01-08 Thread Frank Pavlic
qeth performance statistics initally inactive Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/qeth_main.c | 21 +++-- 1 files changed, 3 insertions(+), 18 deletions(-) diff --git a/drivers/s390/net/qeth_main.c b/drivers/s390/net/qeth_main.c index 2bde4f1..67062d5

[PATCH 5/5] s390: qeth driver hardware specs adaptions

2007-01-08 Thread Frank Pavlic
[PATCH 5/5] s390: qeth driver hardware specs adaptions From: Peter Tiedemann [EMAIL PROTECTED] - according to the latest OSA hardware specification incorporate actual IPA command and return codes into qeth. - whitespaces removed from qeth_mpc.h Signed-off-by: Frank Pavlic [EMAIL

[PATCH 4/9] s390: qeth driver fixes [1/6]

2006-09-15 Thread Frank Pavlic
[PATCH 4/9] s390: qeth driver fixes [1/6] From: Frank Pavlic [EMAIL PROTECTED] - Drop incoming packets with vlan_tag set if card-vlangrp is not set. - use always vlan_hwaccel_rx to pass vlan frames to the stack. - fix recovery problem. Device

[PATCH 8/9] s390: qeth driver fixes [5/6]

2006-09-15 Thread Frank Pavlic
[PATCH 8/9] s390: qeth driver fixes [5/6] From: Frank Pavlic [EMAIL PROTECTED] fix kernel panic in qdio queue handling. qeth_qdio_clear_card() could be invoked by 2 CPUs simultaneously (for example reboot event and recovery). Signed-off-by: Frank Pavlic [EMAIL PROTECTED

[PATCH 5/9] s390: qeth driver fixes [2/6]

2006-09-15 Thread Frank Pavlic
[PATCH 5/9] s390: qeth driver fixes [2/6] From: Frank Pavlic [EMAIL PROTECTED] - fixed error handling in create_device_attributes - fixed some minor bugs in IPv4 and IPv6 address checking Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/qeth.h

[RESEND PATCH 1/9] s390: minor s390 network driver fixes

2006-09-15 Thread Frank Pavlic
. Frank [RESEND PATCH 1/9] s390: minor s390 network driver fixes From: Frank Pavlic [EMAIL PROTECTED] - iucv driver: use do { } while (0) constructs instead of empty defines to avoid compile bugs. - ctc driver: missing lock initialization added

[PATCH 3/9] s390: Makefile cleanup

2006-09-15 Thread Frank Pavlic
[PATCH 3/9] s390: Makefile cleanup From: Frank Pavlic [EMAIL PROTECTED] remove CONFIG_MPC from Makefile which was introduced accidently in the past. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/Makefile |1 - 1 files changed, 0 insertions(+), 1

[PATCH 2/9] s390: netiucv driver fixes

2006-09-15 Thread Frank Pavlic
[PATCH 2/9] s390: netiucv driver fixes From: Frank Pavlic [EMAIL PROTECTED] - missing lock initialization added - avoid duplicate iucv-interfaces to the same peer - rw-lock added for manipulating the list of defined iucv connections Signed-off-by: Frank Pavlic

[PATCH 6/9] s390: qeth driver fixes [3/6]

2006-09-15 Thread Frank Pavlic
[PATCH 6/9] s390: qeth driver fixes [3/6] From: Frank Pavlic [EMAIL PROTECTED] fixed kernel panic caused by qeth driver: Using a bonding device qeth driver will realloc headroom for every skb coming from the bond device. Once this happens qeth frees the original

[PATCH 9/9] s390: qeth driver fixes [6/6]

2006-09-15 Thread Frank Pavlic
[PATCH 9/9] s390: qeth driver fixes [6/6] From: Frank Pavlic [EMAIL PROTECTED] - Hipersockets has no IPV6 support, thus prevent issueing SETRTG_IPV6 control commands on Hipersockets devices. - fixed error handling in qeth_sysfs_(un)register Signed-off-by: Frank Pavlic

[PATCH 7/9] s390: qeth driver fixes [4/6]

2006-09-15 Thread Frank Pavlic
[PATCH 7/9] s390: qeth driver fixes [4/6] From: Frank Pavlic [EMAIL PROTECTED] - fix kernel crash due to race, set card-state to SOFTSETUP after card and card-dev are initialized properly. - remove CONFIG_QETH_PERF_STATS, use sysfs attribute instead

Re: [PATCH 6/9] s390: qeth driver fixes [3/6]

2006-09-15 Thread Frank Pavlic
yes it would but the problem in qeth is not only bonding related. We just have found it in a bonding scenario . But this kernel panic could also occur without bonding. But thanks for reviewing it On Fri, Sep 15, 2006 at 08:51:25AM -0700, Jay Vosburgh wrote: Frank Pavlic [EMAIL PROTECTED] wrote

[PATCH 2/5] s390: qeth driver fixes

2006-05-24 Thread Frank Pavlic
From: Ursula Braun [EMAIL PROTECTED] From: Frank Pavlic [EMAIL PROTECTED] - correct checking of sscanf-%n value in qeth_string_to_ipaddr(). - don't use netif_stop_queue outside the hard_start_xmit routine. Rather use netif_tx_disable. - don't call

[PATCH 1/5] s390: minor fix in cu3088

2006-05-24 Thread Frank Pavlic
Hi Jeff, please apply following 5 patches. Thanks ... Frank From: Cornelia Huck [EMAIL PROTECTED] In case of a parse error for the cu3088 group attribute, return -EINVAL instead of count. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/cu3088.c |2 +- 1 files changed

[PATCH 4/5] s390: lcs driver bug fixes and improvements [1/2]

2006-05-24 Thread Frank Pavlic
handler has been added. Once a hardware problem occurs lcs will recover the device now properly. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/lcs.c | 341 1 files changed, 171 insertions(+), 170 deletions

[PATCH 5/5] s390: lcs driver bug fixes and improvements [2/2]

2006-05-24 Thread Frank Pavlic
From: Klaus Wacker [EMAIL PROTECTED] This is the second lcs driver patch containing the rest of lcs fixes. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/lcs.h | 14 +- 1 files changed, 9 insertions(+), 5 deletions

[PATCH 3/5] s390: qeth driver fixes

2006-05-24 Thread Frank Pavlic
From: Ursula Braun [EMAIL PROTECTED] From: Frank Blaschka [EMAIL PROTECTED] From: Frank Pavlic [EMAIL PROTECTED] - fix fake_ll during initial device bringup. fake_ll was not active after first start of the device. Problem only occured when qeth was built without

[RESEND PATCH 2/2] s390: remove tty support from ctc network device driver [2/2]

2006-04-13 Thread Frank Pavlic
Hi, here comes the second of the two patches ... Frank From: Peter Tiedemann [EMAIL PROTECTED] [2/2]: remove ctctty.c and ctctty.h files . Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/ctctty.c | 1259 - drivers/s390

[PATCH RESEND 1/2] s390: remove tty support from ctc network device driver [1/2]

2006-04-13 Thread Frank Pavlic
. It also removes the build entry from the Makefile as well as TTY definitions from ctcmain.h. The second patch will remove two files, ctctty.c and ctctty.h. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] --- drivers/s390/net/Makefile |3 ++- drivers/s390/net/ctcmain.c

Re: [patch 2/6] s390: qeth driver statistics fixes

2006-03-24 Thread Frank Pavlic
On Wed, 22 Mar 2006 20:30:31 -0500 Jeff Garzik [EMAIL PROTECTED] wrote: Frank Pavlic wrote: [patch 2/6] s390: qeth driver statistics fixes From: Ursula Braun [EMAIL PROTECTED] - display unsigned int values in /proc/qeth_perf with %u instead of %i - omit qdio header length

[RESEND patch 6/6] s390: remove tty support from ctc network device driver [2/2]

2006-03-24 Thread Frank Pavlic
[patch 6/6] s390: remove tty support from ctc network device driver [2/2] From: Peter Tiedemann [EMAIL PROTECTED] [2/2]: remove ctctty.c and ctctty.h files . Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: drivers/s390/net/ctctty.c | 1259

[RESEND patch 5/6] s390: remove tty support from ctc network device driver [1/2]

2006-03-24 Thread Frank Pavlic
ctcmain.h. The second patch will remove two files, ctctty.c and ctctty.h. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: Makefile |3 ++- ctcmain.c | 45 + ctcmain.h | 12 +--- 3 files changed, 16 insertions(+), 44

[patch 1/6] s390: minor claw driver fix

2006-03-22 Thread Frank Pavlic
driver fix From: Frank Pavlic [EMAIL PROTECTED] use CONFIG_ARCH_S390X instead of CONFIG_64BIT in function dumpit . Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: claw.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/s390/net/claw.c b/drivers

[patch 1/6] s390: minor claw driver fix

2006-03-22 Thread Frank Pavlic
driver fix From: Frank Pavlic [EMAIL PROTECTED] use CONFIG_ARCH_S390X instead of CONFIG_64BIT in function dumpit . Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: claw.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/s390/net/claw.c b/drivers

[patch 2/6] s390: qeth driver statistics fixes

2006-03-22 Thread Frank Pavlic
[patch 2/6] s390: qeth driver statistics fixes From: Ursula Braun [EMAIL PROTECTED] - display unsigned int values in /proc/qeth_perf with %u instead of %i - omit qdio header length when increasing card-stats.tx_bytes Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat

[patch 6/6] s390: remove tty support from ctc network device driver [2/2]

2006-03-22 Thread Frank Pavlic
[patch 6/6] s390: remove tty support from ctc network device driver [2/2] From: Peter Tiedemann [EMAIL PROTECTED] [2/2]: remove ctctty.c and ctctty.h files . Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: ctctty.c | 1259

[patch 1/6] s390: minor claw driver fix

2006-03-22 Thread Frank Pavlic
driver fix From: Frank Pavlic [EMAIL PROTECTED] use CONFIG_ARCH_S390X instead of CONFIG_64BIT in function dumpit . Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: claw.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/s390/net/claw.c b/drivers

[patch 4/6] s390: qeth :allow setting of attribute route6 to no_router.

2006-03-22 Thread Frank Pavlic
stays in this mode. Issue an IP ASSIST command when no_router is set in route6. Device will be reset and thus will not longer run as a primary router. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: qeth_main.c |5 - 1 files changed

[patch 3/6] s390: qeth driver cleanups

2006-03-22 Thread Frank Pavlic
allow to set such values. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: qeth_main.c | 49 - qeth_proc.c | 18 +- qeth_sys.c |2 +- 3 files changed, 14 insertions(+), 55 deletions

[patch 5/6] s390: remove tty support from ctc network device driver [1/2]

2006-03-22 Thread Frank Pavlic
ctcmain.h. The second patch will remove two files, ctctty.c and ctctty.h. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: Makefile |3 ++- ctcmain.c | 45 + ctcmain.h | 12 +--- 3 files changed, 16 insertions(+), 44 deletions

[patch 6/6] s390: remove tty support from ctc network device driver [2/2]

2006-03-22 Thread Frank Pavlic
[patch 6/6] s390: remove tty support from ctc network device driver [2/2] From: Peter Tiedemann [EMAIL PROTECTED] [2/2]: remove ctctty.c and ctctty.h files . Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: ctctty.c | 1259

[patch 3/6] s390: qeth driver cleanups

2006-03-22 Thread Frank Pavlic
allow to set such values. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: qeth_main.c | 49 - qeth_proc.c | 18 +- qeth_sys.c |2 +- 3 files changed, 14 insertions(+), 55 deletions

[patch 5/6] s390: remove tty support from ctc network device driver [1/2]

2006-03-22 Thread Frank Pavlic
ctcmain.h. The second patch will remove two files, ctctty.c and ctctty.h. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: Makefile |3 ++- ctcmain.c | 45 + ctcmain.h | 12 +--- 3 files changed, 16 insertions(+), 44 deletions

[patch 4/6] s390: qeth :allow setting of attribute route6 to no_router.

2006-03-22 Thread Frank Pavlic
stays in this mode. Issue an IP ASSIST command when no_router is set in route6. Device will be reset and thus will not longer run as a primary router. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: qeth_main.c |5 - 1 files changed

[patch 6/6] s390: remove tty support from ctc network device driver [2/2]

2006-03-22 Thread Frank Pavlic
[patch 6/6] s390: remove tty support from ctc network device driver [2/2] From: Peter Tiedemann [EMAIL PROTECTED] [2/2]: remove ctctty.c and ctctty.h files . Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: ctctty.c | 1259

[patch 5/6] s390: remove tty support from ctc network device driver [1/2]

2006-03-22 Thread Frank Pavlic
ctcmain.h. The second patch will remove two files, ctctty.c and ctctty.h. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: Makefile |3 ++- ctcmain.c | 45 + ctcmain.h | 12 +--- 3 files changed, 16 insertions(+), 44 deletions

[patch 3/6] s390: qeth driver cleanups

2006-03-22 Thread Frank Pavlic
allow to set such values. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: qeth_main.c | 49 - qeth_proc.c | 18 +- qeth_sys.c |2 +- 3 files changed, 14 insertions(+), 55 deletions

[patch 2/6] s390: qeth driver statistics fixes

2006-03-22 Thread Frank Pavlic
[patch 2/6] s390: qeth driver statistics fixes From: Ursula Braun [EMAIL PROTECTED] - display unsigned int values in /proc/qeth_perf with %u instead of %i - omit qdio header length when increasing card-stats.tx_bytes Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat

[patch 4/6] s390: qeth :allow setting of attribute route6 to no_router.

2006-03-22 Thread Frank Pavlic
stays in this mode. Issue an IP ASSIST command when no_router is set in route6. Device will be reset and thus will not longer run as a primary router. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: qeth_main.c |5 - 1 files changed

[patch 1/2] s390: lcs performance enhancements

2006-02-07 Thread Frank Pavlic
/netif_wake_queue in lcs_start_xmit routine - don't lock the whole xmit routine but just the piece of code where tx_buffer is touched. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: lcs.c | 31 +-- lcs.h |2 +- 2 files changed

[patch 2/2] s390: some qeth driver fixes

2006-02-07 Thread Frank Pavlic
[patch 2/2] s390: some qeth driver fixes From: Frank Pavlic [EMAIL PROTECTED] - fixed kernel panic when using EDDP support in Layer 2 mode - NULL pointer exception in qeth_set_offline fixed. - setting EDDP in Layer 2 mode did not set NETIF_F_(SG/TSO) flags when

[RESEND patch 1/3] s390: some minor qeth driver fixes

2005-12-22 Thread Frank Pavlic
Hi Jeff, I am not sure if my first try did make his way since I had some fights with my exim4 configuration. Anyway I resend the patches . Thanks Frank [patch 1/3] s390: some minor qeth driver fixes From: Frank Pavlic [EMAIL PROTECTED] - let's have just one function for both ,input

[RESEND patch 3/3] s390: remove redundant and useless code in qeth

2005-12-22 Thread Frank Pavlic
[patch 3/3] s390: remove redundant and useless code in qeth From: Frank Pavlic [EMAIL PROTECTED] - remove redundant and useless code in qeth for procfs operations. - update Revision numbers Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: qeth_main.c

Re: [patch 3/3] s390: remove redundant and useless code in qeth

2005-12-13 Thread Frank Pavlic
On Tue, 13 Dec 2005 18:59:30 +0100 Christian Borntraeger [EMAIL PROTECTED] wrote: On Tuesday 13 December 2005 18:47, Stephen Hemminger wrote: Is there any chance of removing usage of netif_rx_reschedule()? qeth seems to be the only remaining user of this interface. Huh? I guess you are

[patch 1/3] s390: some minor qeth driver fixes

2005-12-12 Thread Frank Pavlic
[patch 1/3] s390: some minor qeth driver fixes From: Frank Pavlic [EMAIL PROTECTED] - let's have just one function for both ,input and output queue to check qdio errors - add /proc/s390dbf/qeth_qerr entries for outbound processing - check removed for layer2

[patch 3/3] s390: remove redundant and useless code in qeth

2005-12-12 Thread Frank Pavlic
[patch 3/3] s390: remove redundant and useless code in qeth From: Frank Pavlic [EMAIL PROTECTED] - remove redundant and useless code in qeth for procfs operations. - update Revision numbers Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: qeth_main.c

[patch 2/3] s390: minor qeth network driver fixes

2005-12-12 Thread Frank Pavlic
[patch 2/3] s390: minor qeth network driver fixes From: Frank Pavlic [EMAIL PROTECTED] - use netif_carrier_on/off calls to tell network stack link carrier state - fix possible kfree on NULL - PDU_LEN2 is at offset 0x29 otherwise OSN chpid won't initialize

Re: [patch 1/7] s390: synthax checking for VIPA addresses fixed

2005-11-11 Thread Frank Pavlic
Jeff Garzik wrote: Frank Pavlic wrote: [patch 1/7] s390: synthax checking for VIPA addresses fixed From: Peter Tiedemann [EMAIL PROTECTED] - synthax checking for VIPA addresses fixed Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: qeth.h | 65

[patch 4/7] s390: some more qeth fixes

2005-11-10 Thread Frank Pavlic
[patch 4/7] s390: some more qeth fixes From: Frank Pavlic [EMAIL PROTECTED] From: Peter Tiedemann [EMAIL PROTECTED] - possible race on list fixed by reset list processing after every operation - traffic hang fixed Signed-off-by: Frank Pavlic [EMAIL PROTECTED

[patch 6/7] s390: introduce guestLan sniffer support in qeth

2005-11-10 Thread Frank Pavlic
and recording the networking traffic within an entire guestLan. Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: qeth.h |2 + qeth_main.c | 93 qeth_mpc.h | 11 --- 3 files changed, 102 insertions(+), 4 deletions

[patch 7/7] s390: mail address changed

2005-11-10 Thread Frank Pavlic
[patch 7/7] s390: mail address changed From: Frank Pavlic [EMAIL PROTECTED] - mail address changed to [EMAIL PROTECTED] Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: lcs.c |4 ++-- qeth_main.c |4 ++-- qeth_mpc.c |2 +- qeth_mpc.h |2

[patch 1/7] s390: synthax checking for VIPA addresses fixed

2005-11-10 Thread Frank Pavlic
[patch 1/7] s390: synthax checking for VIPA addresses fixed From: Peter Tiedemann [EMAIL PROTECTED] - synthax checking for VIPA addresses fixed Signed-off-by: Frank Pavlic [EMAIL PROTECTED] diffstat: qeth.h | 65

[patch 5/7] s390: fix recovery failure of non-guestLAN devices

2005-11-10 Thread Frank Pavlic
[patch 5/7] s390: fix recovery failure of non-guestLAN devices From: Frank Pavlic [EMAIL PROTECTED] - Recovery of non-guestLAN Layer 2 device failed due to trying to register the real MAC address we got from the READ_MAC adapter parameters command. We have