30 Aug, 2005

2 commits


27 Aug, 2005

3 commits

  • Rewrite the mkiss driver to make it SMP-proof following the example of
    6pack.c.

    Signed-off-by: Ralf Baechle DL5RB
    Signed-off-by: Jeff Garzik

    Ralf Baechle
     
  • Don't check type of sax25_family; dev_set_mac_address has already done
    that before and anyway, the type to check against would have been
    ARPHRD_AX25. We only got away because AF_AX25 and ARPHRD_AX25 both happen
    to be defined to the same value.

    Don't check sax25_ndigis either; it's value is insignificant for the
    purpose of setting the MAC address and the check has shown to break
    some application software for no good reason.

    Signed-off-by: Ralf Baechle DL5RB
    Signed-off-by: Jeff Garzik

    Ralf Baechle
     
  • I dropped the timer initialization bits by accident when sending the
    p-persistence fix. This patch gets the driver to work again on halfduplex
    links.

    Signed-off-by: Ralf Baechle DL5RB
    Signed-off-by: Jeff Garzik

    Ralf Baechle
     

11 Aug, 2005

2 commits


31 Jul, 2005

2 commits

  • Drivers really only work well in SMP if they actually can be selected.
    This is a leftover from the time when the 6pack drive only used to be
    a bitrotten variant of the slip driver.

    Signed-off-by: Ralf Baechle DL5RB

    Kconfig | 2 +-
    1 files changed, 1 insertion(+), 1 deletion(-)
    Signed-off-by: Jeff Garzik

    Ralf Baechle
     
  • Use of time_before() macro, defined at linux/jiffies.h, which deal with
    wrapping correctly and are nicer to read.

    Signed-off-by: Marcelo Feitoza Parisi
    Signed-off-by: Domen Puncer
    Signed-off-by: Ralf Baechle DL5RB

    baycom_epp.c | 3 ++-
    baycom_par.c | 3 ++-
    baycom_ser_fdx.c | 3 ++-
    baycom_ser_hdx.c | 3 ++-
    mkiss.c | 3 ++-
    5 files changed, 10 insertions(+), 5 deletions(-)
    Signed-off-by: Jeff Garzik

    Marcelo Feitoza Parisi
     

09 Jul, 2005

1 commit

  • This is part of the grand scheme to eliminate the qlen
    member of skb_queue_head, and subsequently remove the
    'list' member of sk_buff.

    Most users of skb_queue_len() want to know if the queue is
    empty or not, and that's trivially done with skb_queue_empty()
    which doesn't use the skb_queue_head->qlen member and instead
    uses the queue list emptyness as the test.

    Signed-off-by: David S. Miller

    David S. Miller
     

24 Jun, 2005

1 commit


03 Jun, 2005

1 commit


04 May, 2005

1 commit


25 Apr, 2005

1 commit


17 Apr, 2005

1 commit

  • 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!

    Linus Torvalds