This is a note to let you know that I've just added the patch titled

    mISDN: Bugfix only few bytes are transfered on a connection

to the 3.5-stable tree which can be found at:
    
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     misdn-bugfix-only-few-bytes-are-transfered-on-a-connection.patch
and it can be found in the queue-3.5 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.


>From b41a9a66f67817f8acd85bd650e012a14da39faa Mon Sep 17 00:00:00 2001
From: Karsten Keil <[email protected]>
Date: Sun, 29 Jul 2012 07:15:13 +0000
Subject: mISDN: Bugfix only few bytes are transfered on a connection

From: Karsten Keil <[email protected]>

commit b41a9a66f67817f8acd85bd650e012a14da39faa upstream.

The test for the fillempty condition was wrong in one place.
Changed the variable to the right boolean type.

Signed-off-by: Karsten Keil <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 drivers/isdn/hardware/mISDN/avmfritz.c |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

--- a/drivers/isdn/hardware/mISDN/avmfritz.c
+++ b/drivers/isdn/hardware/mISDN/avmfritz.c
@@ -449,7 +449,8 @@ hdlc_fill_fifo(struct bchannel *bch)
 {
        struct fritzcard *fc = bch->hw;
        struct hdlc_hw *hdlc;
-       int count, fs, cnt = 0, idx, fillempty = 0;
+       int count, fs, cnt = 0, idx;
+       bool fillempty = false;
        u8 *p;
        u32 *ptr, val, addr;
 
@@ -462,7 +463,7 @@ hdlc_fill_fifo(struct bchannel *bch)
                        return;
                count = fs;
                p = bch->fill;
-               fillempty = 1;
+               fillempty = true;
        } else {
                count = bch->tx_skb->len - bch->tx_idx;
                if (count <= 0)
@@ -477,7 +478,7 @@ hdlc_fill_fifo(struct bchannel *bch)
                        hdlc->ctrl.sr.cmd |= HDLC_CMD_XME;
        }
        ptr = (u32 *)p;
-       if (fillempty) {
+       if (!fillempty) {
                pr_debug("%s.B%d: %d/%d/%d", fc->name, bch->nr, count,
                         bch->tx_idx, bch->tx_skb->len);
                bch->tx_idx += count;


Patches currently in stable-queue which might be from [email protected] are

queue-3.5/misdn-bugfix-only-few-bytes-are-transfered-on-a-connection.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to