1. 11 11月, 2005 4 次提交
    • F
      [PATCH] s390: fix recovery failure of non-guestLAN devices · e08d88cc
      Frank Pavlic 提交于
      [patch 5/7] s390: fix recovery failure of non-guestLAN devices
      
      From: Frank Pavlic <fpavlic@de.ibm.com>
      	- 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 to keep the "old" MAC address when we process
      	  the reply of a READ_MAC.
      Signed-off-by: NFrank Pavlic <fpavlic@de.ibm.com>
      
      diffstat:
       qeth.h      |   12 ++++++------
       qeth_main.c |   27 ++++++++++++++++-----------
       2 files changed, 22 insertions(+), 17 deletions(-)
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      e08d88cc
    • F
      [PATCH] s390: some more qeth fixes · d805d7c6
      Frank Pavlic 提交于
      [patch 4/7] s390: some more qeth fixes
      
      From: Frank Pavlic <fpavlic@de.ibm.com>
      From: Peter Tiedemann <ptiedem@de.ibm.com>
      	- possible race on list fixed by reset
      	  list processing after every operation
      	- traffic hang fixed
      Signed-off-by: NFrank Pavlic <fpavlic@de.ibm.com>
      
      diffstat:
       qeth_main.c |   11 +++++++----
       1 files changed, 7 insertions(+), 4 deletions(-)
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      d805d7c6
    • F
      [PATCH] s390: qeth multicast address registration fixed · 6c88ad2d
      Frank Pavlic 提交于
      [patch 3/7] s390: qeth multicast address registration fixed
      
      From: Klaus Dieter Wacker <kdwacker@de.ibm.com>
      	- when running in Layer2 mode we don't have to register
      	  the multicast IP address but only group mac address.
      	  Therefore for Layer 2 devices it is enough to go
      	  through dev->mc_list list and register these entries.
      Signed-off-by: NFrank Pavlic <fpavlic@de.ibm.com>
      
      diffstat:
       qeth_main.c |  106 +++++++++++++++++++++++++++++++++++++++++++++---------------
       1 files changed, 80 insertions(+), 26 deletions(-)
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      6c88ad2d
    • F
      [PATCH] s390: minor modification in qeth layer2 code · 508cc2b0
      Frank Pavlic 提交于
      [patch 2/7] s390: minor modification in qeth layer2 code
      
      From: Frank Pavlic <fpavlic@de.ibm.com>
      	- use qeth_layer2_send_setdelvlan_cb to check
      	  return code of a SET/DELVLAN IP Assist command.
      	  It fits better in qeth's design and mechanism of IP Assist
      	  command handling.
      Signed-off-by: NFrank Pavlic <fpavlic@de.ibm.com>
      
      diffstat:
       qeth_main.c |   40 ++++++++++++++++++++++++++--------------
       1 files changed, 26 insertions(+), 14 deletions(-)
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      508cc2b0
  2. 04 10月, 2005 3 次提交
    • U
      [PATCH] s390: introducing support in qeth for new OSA CHPID type OSN · 500f83ab
      Ursula Braun 提交于
      	This patch introduces new feature in qeth:
      	qeth enhancement provides the device driver support for
              the Communication Controller for Linux on System z9 and zSeries
              (CCL), which is software that enables running the Network Control
              Program (NCP) on a zSeries machine. The OSA CDLC support is based
              on a new IBM mainframe CHPID type called Open Systems Adaper for
              NCP (OSN). In case of OSN qeth communicates with the type-OSN
              OSA-card on one hand, and with the CCL-kernel-component Network
              Device Handler (NDH) on the other.
      Signed-off-by: NFrank Pavlic <pavlic@de.ibm.com>
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      500f83ab
    • U
      [PATCH] s390: qeth driver fixes · 9123e0d7
      Ursula Braun 提交于
      From: Peter Tiedemann <ptiedem@de.ibm.com>
      From: Frank Pavlic <pavlic@de.ibm.com>
      	minor qeth fixes:
      	- free old skb in qeth_realloc_headroom after duplicating skb
      	- disable IPV6 support for Hipersockets devices
      	- call ccw_device_set_offline on every channel regardless
      	  of the return value of the prior ccw_device_set_offline calls
      	- allocate qdio structures in DMA-area
      	- schedule recovery of appropriate card
      	  when cable has been inserted again.
      	- add missing initialization of card->lock
      	- write sequence number in skb->cb for SNA protocol which
      	  requires strictly serialized packets.
      Signed-off-by: NFrank Pavlic <pavlic@de.ibm.com>
      
      diffstat:
       qeth.h      |    2 ++
       qeth_main.c |   37 +++++++++++++++++--------------------
       2 files changed, 19 insertions(+), 20 deletions(-)
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      9123e0d7
    • H
      [IPV4]: Replace __in_dev_get with __in_dev_get_rcu/rtnl · e5ed6399
      Herbert Xu 提交于
      The following patch renames __in_dev_get() to __in_dev_get_rtnl() and
      introduces __in_dev_get_rcu() to cover the second case.
      
      1) RCU with refcnt should use in_dev_get().
      2) RCU without refcnt should use __in_dev_get_rcu().
      3) All others must hold RTNL and use __in_dev_get_rtnl().
      
      There is one exception in net/ipv4/route.c which is in fact a pre-existing
      race condition.  I've marked it as such so that we remember to fix it.
      
      This patch is based on suggestions and prior work by Suzanne Wood and
      Paul McKenney.
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      e5ed6399
  3. 15 9月, 2005 2 次提交
    • F
      [PATCH] s390: qeth driver fixes · f3d242e8
      Frank Pavlic 提交于
      [patch 4/4] s390: qeth driver fixes .
      
      From: Frank Pavlic <pavlic@de.ibm.com>
      	- Clear read channel first prior to using ccw_device_set_offline.
      	- use QETH_DBF_TEXT instead of QETH_DBF_SPRINTF
      	- invoke qeth_halt_channel and qeth_clear_channel for all channels,
      	  even if halt/clear for one of the channel fails.
      	- enable qeth_arp_query function for GuestLAN devices
      Signed-off-by: NFrank Pavlic <pavlic@de.ibm.com>
      
      diffstat:
       qeth.h      |    2 -
       qeth_main.c |  106 +++++++++++++++++++++++++-----------------------------------
       qeth_sys.c  |   11 +++---
       3 files changed, 53 insertions(+), 66 deletions(-)
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      f3d242e8
    • F
      [PATCH] s390: TSO related fixes in qeth driver · 9cb90de8
      Frank Pavlic 提交于
      Jeff,
      I'm sorry seems that they have not been sent out either ...
      ok here they come ...
      
      [patch 3/4] s390: TSO related fixes in qeth driver
      
      From: Frank Pavlic <pavlic@de.ibm.com>
      	TSO related fixes :
      	  - changing value of large_send attribute while network traffic
      	    is running caused program check and thus device recovery.
      	  - Due to hardware restriction discard packet when it exceeds 60K
      	    otherwise qeth will cause program checks and thus traffic stall
      	    when trying to send such huge packets.
      Signed-off-by: NFrank Pavlic <pavlic@de.ibm.com>
      
      diffstat:
       qeth.h      |    4 ++--
       qeth_main.c |   33 +++++++++++++++++++++------------
       qeth_sys.c  |   10 +++-------
       3 files changed, 26 insertions(+), 21 deletions(-)
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      9cb90de8
  4. 09 8月, 2005 1 次提交
  5. 13 7月, 2005 1 次提交
  6. 26 6月, 2005 1 次提交
    • M
      [PATCH] s390: debug feature changes · 66a464db
      Michael Holzheu 提交于
      This patch changes the memory allocation method for the s390 debug feature.
      Trace buffers had been allocated using the get_free_pages() function before.
      Therefore it was not possible to get big memory areas in a running system due
      to memory fragmentation.  Now the trace buffers are subdivided into several
      subbuffers with pagesize.  Therefore it is now possible to allocate more
      memory for the trace buffers and more trace records can be written.
      
      In addition to that, dynamic specification of the size of the trace buffers is
      implemented.  It is now possible to change the size of a trace buffer using a
      new debugfs file instance.  When writing a number into this file, the trace
      buffer size is changed to 'number * pagesize'.
      
      In the past all the traces could be obtained from userspace by accessing files
      in the "proc" filesystem.  Now with debugfs we have a new filesystem which
      should be used for debugging purposes.  This patch moves the debug feature
      from procfs to debugfs.
      
      Since the interface of debug_register() changed, all device drivers, which use
      the debug feature had to be adjusted.
      Signed-off-by: NMartin Schwidefsky <schwidefsky@de.ibm.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      66a464db
  7. 16 5月, 2005 4 次提交
    • F
      [PATCH] s390: qeth bug fixes · 05e08a2a
      Frank Pavlic 提交于
      [patch 10/10] s390: qeth bug fixes.
      
      From: Frank Pavlic <pavlic@de.ibm.com>
      
      qeth network driver related changes:
       - due to OSA hardware changes in TCP Segmentation Offload
         support we are able now to pack TSO packets too.
         This fits perfectly in design of qeth buffer handling and
         sending data respectively.
       - remove skb_realloc_headroom from the sending path since
         hard_header_len value provides enough headroom now.
       - device recovery behaviour improvement
       - bug fixed in Enhanced Device Driver Packing functionality
      Signed-off-by: NFrank Pavlic <pavlic@de.ibm.com>
      05e08a2a
    • F
      [PATCH] s390: qeth bug fixes · 9a455819
      Frank Pavlic 提交于
      [patch 9/10] s390: qeth bug fixes.
      
      From: Frank Pavlic <pavlic@de.ibm.com>
      
      qeth network driver changes:
       - Use sizeof(__u16) instead of '2' in qeth_fill_header.
      Signed-off-by: NFrank Pavlic <pavlic@de.ibm.com>
      9a455819
    • F
      [PATCH] s390: fakell for high speed token ring · e23dd9cd
      Frank Pavlic 提交于
      [patch 8/10] s390: fakell for high speed token ring.
      
      From: Michael Holzheu <holzheu@de.ibm.com>
      
      Implement fake-link-layer for high speed token ring. Without it
      token ring packages get leading ethernet headers, which confuses
      dhcp.
      Signed-off-by: NFrank Pavlic <pavlic@de.ibm.com>
      e23dd9cd
    • F
      [PATCH] s390: qeth bug fixes · d801145d
      Frank Pavlic 提交于
      [patch 7/10] s390: qeth bug fixes.
      
      From: Frank Pavlic <pavlic@de.ibm.com>
      
      qeth network driver changes:
       - Removed redundant code, use the same qeth_fill_buffer_frag
         for TSO path either
       - Using skb->frags solely is not correct since skb->data still
         points to the beginning of the whole data, even when it is
         a small portion we have to fill the qdio buffer with it.
      Signed-off-by: NFrank Pavlic <pavlic@de.ibm.com>
      d801145d
  8. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4