/Linux-v4.19/arch/um/drivers/ |
D | slip_common.c | 6 int slip_proto_read(int fd, void *buf, int len, struct slip_proto *slip) in slip_proto_read() argument 10 if(slip->more > 0){ in slip_proto_read() 12 while(i < slip->more){ in slip_proto_read() 13 size = slip_unesc(slip->ibuf[i++], slip->ibuf, in slip_proto_read() 14 &slip->pos, &slip->esc); in slip_proto_read() 16 memcpy(buf, slip->ibuf, size); in slip_proto_read() 17 memmove(slip->ibuf, &slip->ibuf[i], in slip_proto_read() 18 slip->more - i); in slip_proto_read() 19 slip->more = slip->more - i; in slip_proto_read() 23 slip->more = 0; in slip_proto_read() [all …]
|
D | slip_common.h | 92 static inline void slip_proto_init(struct slip_proto * slip) in slip_proto_init() argument 94 memset(slip->ibuf, 0, sizeof(slip->ibuf)); in slip_proto_init() 95 memset(slip->obuf, 0, sizeof(slip->obuf)); in slip_proto_init() 96 slip->more = 0; in slip_proto_init() 97 slip->pos = 0; in slip_proto_init() 98 slip->esc = 0; in slip_proto_init() 102 struct slip_proto *slip); 104 struct slip_proto *slip);
|
D | slirp_user.c | 66 pri->slip.pos = 0; in slirp_open() 67 pri->slip.esc = 0; in slirp_open() 108 return slip_proto_read(fd, buf, len, &pri->slip); in slirp_user_read() 113 return slip_proto_write(fd, buf, len, &pri->slip); in slirp_user_write()
|
D | slip_user.c | 152 pri->slip.pos = 0; in slip_open() 153 pri->slip.esc = 0; in slip_open() 214 return slip_proto_read(fd, buf, len, &pri->slip); in slip_user_read() 219 return slip_proto_write(fd, buf, len, &pri->slip); in slip_user_write()
|
D | Makefile | 9 slip-objs := slip_kern.o slip_user.o 44 obj-$(CONFIG_UML_NET_SLIP) += slip.o slip_common.o
|
D | slip.h | 13 struct slip_proto slip; member
|
D | slirp.h | 25 struct slip_proto slip; member
|
D | slip_kern.c | 31 slip_proto_init(&spri->slip); in slip_init()
|
D | Kconfig | 192 The slip User-Mode Linux network transport allows a running UML to 195 the slip transport can only carry IP packets. 197 To use this, your host must support slip devices. 201 has examples of the UML command line to use to enable slip 204 The Ethertap Transport is preferred over slip because of its 205 limitations. If you prefer slip, however, say Y here. Otherwise
|
D | slirp_kern.c | 33 slip_proto_init(&spri->slip); in slirp_init()
|
/Linux-v4.19/drivers/net/slip/ |
D | slip.c | 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) in sl_alloc_bufs() 205 static void sl_free_bufs(struct slip *sl) in sl_free_bufs() 220 static int sl_realloc_bufs(struct slip *sl, int mtu) 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); [all …]
|
D | Makefile | 5 obj-$(CONFIG_SLIP) += slip.o
|
D | slip.h | 50 struct slip { struct
|
D | Kconfig | 34 will be called slip.
|
/Linux-v4.19/drivers/net/ |
D | Makefile | 58 obj-$(CONFIG_SLIP) += slip/ 59 obj-$(CONFIG_SLHC) += slip/
|
D | Kconfig | 417 source "drivers/net/slip/Kconfig"
|
/Linux-v4.19/Documentation/devicetree/bindings/iio/frequency/ |
D | adf4350.txt | 41 - adi,cycle-slip-reduction-enable: Enables cycle slip reduction.
|
/Linux-v4.19/Documentation/translations/zh_CN/ |
D | magic-number.txt | 78 SLIP_MAGIC 0x5302 slip drivers/net/slip.h
|
/Linux-v4.19/Documentation/networking/ |
D | eql.txt | 181 3.3.1. /etc/slip/runslip.conf 204 ducmd -e /etc/slip/dialout/cua2-288.xp -t 9 213 ducmd -e /etc/slip/dialout/cua3-288.xp -t 9
|
D | z8530drv.txt | 279 slip off
|
/Linux-v4.19/Documentation/process/ |
D | magic-number.rst | 84 SLIP_MAGIC 0x5302 slip ``drivers/net/slip.h``
|
D | 7.AdvancedTopics.rst | 116 slip in ill-advised changes which go into the mainline below the review
|
/Linux-v4.19/drivers/gpu/drm/amd/display/ |
D | TODO | 60 doesn't slip in (i.e. if you start adding edid quirks to DC instead of
|
/Linux-v4.19/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 869 o slip 875 The TUN/TAP, ethertap, slip, and slirp transports allow a UML 911 o slip - there is no particular reason to run the slip backend unless 1665 ethn=slip,slip IP 1670 The slip IP argument is the IP address that will be assigned to the 1671 host end of the slip device. If it is specified, the helper will run 1677 of. You should only specify one slip device on a given virtual 1783 slip device, UML won't do any setup on the host. So this is what is 4373 submitted patches for the slip transport and lots of other things.
|