X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=src%2Fpatches%2Fsuse-2.6.27.31%2Fpatches.arch%2Fs390-02-06-qeth-offset.patch;fp=src%2Fpatches%2Fsuse-2.6.27.31%2Fpatches.arch%2Fs390-02-06-qeth-offset.patch;h=0000000000000000000000000000000000000000;hb=2e4178199a697105e827d68d66ab7101acd1dd8c;hp=f79f96be402632c961fcc0e96dc366011ab05a38;hpb=df2a9a46c7db6362520343d6ec70fbcfe40b2795;p=people%2Fpmueller%2Fipfire-2.x.git diff --git a/src/patches/suse-2.6.27.31/patches.arch/s390-02-06-qeth-offset.patch b/src/patches/suse-2.6.27.31/patches.arch/s390-02-06-qeth-offset.patch deleted file mode 100644 index f79f96be40..0000000000 --- a/src/patches/suse-2.6.27.31/patches.arch/s390-02-06-qeth-offset.patch +++ /dev/null @@ -1,38 +0,0 @@ -From: Gerald Schaefer -Subject: qeth: fix offset error in non prealloc header path -References: bnc#434333,LTC#48840 - -Symptom: bad or no VSWITCH/guest lan network traffic -Problem: Offset error in the non prealloc header path -Solution: For the non preallocated qeth header code path we should not - change the header length. - -Signed-off-by: Frank Blaschka - -Acked-by: John Jolly ---- - - drivers/s390/net/qeth_core_main.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -Index: linux-sles11/drivers/s390/net/qeth_core_main.c -=================================================================== ---- linux-sles11.orig/drivers/s390/net/qeth_core_main.c -+++ linux-sles11/drivers/s390/net/qeth_core_main.c -@@ -3034,7 +3034,7 @@ static inline void __qeth_fill_buffer(st - struct qdio_buffer *buffer, int is_tso, int *next_element_to_fill, - int offset) - { -- int length = skb->len - offset; -+ int length = skb->len; - int length_here; - int element; - char *data; -@@ -3046,6 +3046,7 @@ static inline void __qeth_fill_buffer(st - - if (offset >= 0) { - data = skb->data + offset; -+ length -= offset; - first_lap = 0; - } -