Lines Matching refs:slip

3  * slip.c	This module implements the SLIP protocol for kernel-based
7 * Version: @(#)slip.c 0.8.3 12/24/94
19 * setting up a slip driver fixed.
20 * Matt Dillon : Printable slip (borrowed from NET2E)
87 #include "slip.h"
100 MODULE_PARM_DESC(slip_maxdev, "Maximum number of slip devices");
103 static void slip_unesc(struct slip *sl, unsigned char c);
106 static void slip_unesc6(struct slip *sl, unsigned char c);
129 static int sl_alloc_bufs(struct slip *sl, int mtu)
205 static void sl_free_bufs(struct slip *sl)
217 Reallocate slip channel buffers.
220 static int sl_realloc_bufs(struct slip *sl, int mtu)
251 printk(KERN_WARNING "%s: unable to grow slip buffers, MTU change cancelled.\n",
306 static inline void sl_lock(struct slip *sl)
313 static inline void sl_unlock(struct slip *sl)
319 static void sl_bump(struct slip *sl)
375 static void sl_encaps(struct slip *sl, unsigned char *icp, int len)
423 struct slip *sl = container_of(work, struct slip, tx_work);
455 struct slip *sl;
466 struct slip *sl = netdev_priv(dev);
500 struct slip *sl = netdev_priv(dev);
534 struct slip *sl = netdev_priv(dev);
552 struct slip *sl = netdev_priv(dev);
566 struct slip *sl = netdev_priv(dev);
578 struct slip *sl = netdev_priv(dev);
610 struct slip *sl = netdev_priv(dev);
627 struct slip *sl = netdev_priv(dev);
632 /* Hook the destructor so we can free slip devices at the right point in time */
690 struct slip *sl = tty->disc_data;
721 struct slip *sl;
738 static struct slip *sl_alloc(void)
743 struct slip *sl;
789 struct slip *sl;
799 opens of slip channels. There are better ways, but it is
885 struct slip *sl = tty->disc_data;
955 static void slip_unesc(struct slip *sl, unsigned char s)
1038 static void slip_unesc6(struct slip *sl, unsigned char s)
1078 struct slip *sl = tty->disc_data;
1188 struct slip *sl = netdev_priv(dev);
1267 .name = "slip",
1314 struct slip *sl;
1379 struct slip *sl = from_timer(sl, t, outfill_timer);
1410 struct slip *sl = from_timer(sl, t, keepalive_timer);
1424 /* this must hangup tty & close slip */