Home
last modified time | relevance | path

Searched refs:x25 (Results 1 – 25 of 115) sorted by relevance

12345

/linux/net/x25/
H A Dx25_in.c35 struct x25_sock *x25 = x25_sk(sk); in x25_queue_rx_frame() local
38 x25->fraglen += skb->len; in x25_queue_rx_frame()
39 skb_queue_tail(&x25->fragment_queue, skb); in x25_queue_rx_frame()
44 if (x25->fraglen > 0) { /* End of fragment */ in x25_queue_rx_frame()
45 int len = x25->fraglen + skb->len; in x25_queue_rx_frame()
52 skb_queue_tail(&x25->fragment_queue, skb); in x25_queue_rx_frame()
56 skbo = skb_dequeue(&x25->fragment_queue); in x25_queue_rx_frame()
62 skb_dequeue(&x25->fragment_queue)) != NULL) { in x25_queue_rx_frame()
63 skb_pull(skbo, (x25->neighbour->extended) ? in x25_queue_rx_frame()
71 x25->fraglen = 0; in x25_queue_rx_frame()
[all …]
H A Dx25_subr.c36 struct x25_sock *x25 = x25_sk(sk); in x25_clear_queues() local
39 skb_queue_purge(&x25->ack_queue); in x25_clear_queues()
40 skb_queue_purge(&x25->interrupt_in_queue); in x25_clear_queues()
41 skb_queue_purge(&x25->interrupt_out_queue); in x25_clear_queues()
42 skb_queue_purge(&x25->fragment_queue); in x25_clear_queues()
54 struct x25_sock *x25 = x25_sk(sk); in x25_frames_acked() local
55 int modulus = x25->neighbour->extended ? X25_EMODULUS : X25_SMODULUS; in x25_frames_acked()
60 if (x25->va != nr) in x25_frames_acked()
61 while (skb_peek(&x25->ack_queue) && x25->va != nr) { in x25_frames_acked()
62 skb = skb_dequeue(&x25->ack_queue); in x25_frames_acked()
[all …]
H A Dx25_out.c53 struct x25_sock *x25 = x25_sk(sk); in x25_output() local
54 int header_len = x25->neighbour->extended ? X25_EXT_MIN_LEN : in x25_output()
56 int max_len = x25_pacsize_to_bytes(x25->facilities.pacsize_out); in x25_output()
94 if (x25->neighbour->extended) in x25_output()
118 struct x25_sock *x25 = x25_sk(sk); in x25_send_iframe() local
123 if (x25->neighbour->extended) { in x25_send_iframe()
124 skb->data[2] = (x25->vs << 1) & 0xFE; in x25_send_iframe()
126 skb->data[3] |= (x25->vr << 1) & 0xFE; in x25_send_iframe()
129 skb->data[2] |= (x25->vs << 1) & 0x0E; in x25_send_iframe()
130 skb->data[2] |= (x25->vr << 5) & 0xE0; in x25_send_iframe()
[all …]
H A Dx25_timer.c29 struct x25_sock *x25 = x25_sk(sk); in x25_init_timers() local
31 timer_setup(&x25->timer, x25_timer_expiry, 0); in x25_init_timers()
49 struct x25_sock *x25 = x25_sk(sk); in x25_start_t2timer() local
51 mod_timer(&x25->timer, jiffies + x25->t2); in x25_start_t2timer()
56 struct x25_sock *x25 = x25_sk(sk); in x25_start_t21timer() local
58 mod_timer(&x25->timer, jiffies + x25->t21); in x25_start_t21timer()
63 struct x25_sock *x25 = x25_sk(sk); in x25_start_t22timer() local
65 mod_timer(&x25->timer, jiffies + x25->t22); in x25_start_t22timer()
70 struct x25_sock *x25 = x25_sk(sk); in x25_start_t23timer() local
72 mod_timer(&x25->timer, jiffies + x25->t23); in x25_start_t23timer()
[all …]
H A Daf_x25.c510 struct x25_sock *x25; in x25_alloc_socket() local
518 x25 = x25_sk(sk); in x25_alloc_socket()
519 skb_queue_head_init(&x25->ack_queue); in x25_alloc_socket()
520 skb_queue_head_init(&x25->fragment_queue); in x25_alloc_socket()
521 skb_queue_head_init(&x25->interrupt_in_queue); in x25_alloc_socket()
522 skb_queue_head_init(&x25->interrupt_out_queue); in x25_alloc_socket()
531 struct x25_sock *x25; in x25_create() local
549 x25 = x25_sk(sk); in x25_create()
559 x25->t21 = sysctl_x25_call_request_timeout; in x25_create()
560 x25->t22 = sysctl_x25_reset_request_timeout; in x25_create()
[all …]
H A Dx25_proc.c81 struct x25_sock *x25; in x25_seq_socket_show() local
91 x25 = x25_sk(s); in x25_seq_socket_show()
93 if (!x25->neighbour || !x25->neighbour->dev) in x25_seq_socket_show()
96 devname = x25->neighbour->dev->name; in x25_seq_socket_show()
100 !x25->dest_addr.x25_addr[0] ? "*" : x25->dest_addr.x25_addr, in x25_seq_socket_show()
101 !x25->source_addr.x25_addr[0] ? "*" : x25->source_addr.x25_addr, in x25_seq_socket_show()
102 devname, x25->lci & 0x0FFF, x25->state, x25->vs, x25->vr, in x25_seq_socket_show()
103 x25->va, x25_display_timer(s) / HZ, x25->t2 / HZ, in x25_seq_socket_show()
104 x25->t21 / HZ, x25->t22 / HZ, x25->t23 / HZ, in x25_seq_socket_show()
H A DMakefile6 obj-$(CONFIG_X25) += x25.o
8 x25-y := af_x25.o x25_dev.o x25_facilities.o x25_in.o \
11 x25-$(CONFIG_SYSCTL) += sysctl_net_x25.o
H A DKconfig21 <file:Documentation/networking/x25.rst> and
22 <file:Documentation/networking/x25-iface.rst>.
32 will be called x25. If unsure, say N.
H A Dx25_facilities.c268 struct x25_sock *x25 = x25_sk(sk); in x25_negotiate_facilities() local
269 struct x25_facilities *ours = &x25->facilities; in x25_negotiate_facilities()
277 len = x25_parse_facilities(skb, &theirs, dte, &x25->vc_facil_mask); in x25_negotiate_facilities()
/linux/lib/crypto/
H A Dcurve25519-fiat32.c246 { const u32 x25 = in2[1]; in fe_add_impl() local
249 out[1] = (x7 + x25); in fe_add_impl()
289 { const u32 x25 = in2[1]; in fe_sub_impl() local
292 out[1] = ((0x3fffffe + x7) - x25); in fe_sub_impl()
332 { const u32 x25 = in2[1]; in fe_mul_impl() local
335 { u64 x41 = (((u64)x23 * x7) + ((u64)x25 * x5)); in fe_mul_impl()
336 { u64 x42 = ((((u64)(0x2 * x25) * x7) + ((u64)x23 * x9)) + ((u64)x27 * x5)); in fe_mul_impl()
337 { u64 x43 = (((((u64)x25 * x9) + ((u64)x27 * x7)) + ((u64)x23 * x11)) + ((u64)x29 * x5)); in fe_mul_impl()
338 …{ u64 x44 = (((((u64)x27 * x9) + (0x2 * (((u64)x25 * x11) + ((u64)x29 * x7)))) + ((u64)x23 * x13))… in fe_mul_impl()
339 …{ u64 x45 = (((((((u64)x27 * x11) + ((u64)x29 * x9)) + ((u64)x25 * x13)) + ((u64)x31 * x7)) + ((u6… in fe_mul_impl()
[all …]
/linux/Documentation/admin-guide/
H A Dsvga.rst31 NORMAL_VGA - Standard 80x25 mode available on all display adapters.
55 the standard 80x25 mode.
61 0 0F00 80x25
74 "0 0F00 80x25" means that the first menu item (the menu items are numbered
75 from "0" to "9" and from "a" to "z") is a 80x25 mode with ID=0x0f00 (see the
90 the standard modes (80x25 and 80x50) followed by "special" modes (80x28 and
128 (Usually 940=80x43, 941=132x25, 942=132x44, 943=80x60, 944=100x60,
133 0x0f00 standard 80x25, don't reset mode if already set (=FFFF)
145 E.g., 0x1950 corresponds to a 80x25 mode, 0x2b84 to 132x43 etc.
151 0xffff equivalent to 0x0f00 (standard 80x25)
[all …]
/linux/arch/arm64/kernel/
H A Dhibernate-asm.S58 mov x25, x5
85 break_before_make_ttbr_switch x25, x21, x6, x8
H A Defi-rt-wrapper.S29 stp x25, x26, [sp, #80]
83 ldp x25, x26, [sp, #80]
H A Dsleep.S70 stp x25, x26, [x0,#SLEEP_STACK_DATA_CALLEE_REGS+64]
150 ldp x25, x26, [x29, #64]
/linux/arch/powerpc/boot/dts/
H A Dholly.dts161 0x800 0x0 0x0 0x2 &RT0 0x25 0x0
165 0x1000 0x0 0x0 0x1 &RT0 0x25 0x0
173 0x1800 0x0 0x0 0x4 &RT0 0x25 0x0
177 0x2000 0x0 0x0 0x3 &RT0 0x25 0x0
/linux/Documentation/networking/
H A Dindex.rst129 x25
130 x25-iface
H A Dx25.rst34 A linux-x25 mailing list has been created at vger.kernel.org to support the
39 subscribe linux-x25
/linux/tools/testing/selftests/kvm/lib/aarch64/
H A Dhandlers.S17 stp x24, x25, [sp, #16 * 12]
44 ldp x24, x25, [sp, #16 * 12]
/linux/tools/testing/selftests/kvm/lib/riscv/
H A Dhandlers.S38 sd x25, 192(sp)
66 ld x25, 192(sp)
/linux/arch/riscv/kernel/probes/
H A Drethook_trampoline.S37 REG_S x25, PT_S9(sp)
69 REG_L x25, PT_S9(sp)
/linux/net/wireless/certs/
H A Dsforshee.hex22 0x7e, 0xa5, 0x83, 0x71, 0x25, 0x7e, 0x90, 0x7c,
41 0x5b, 0x7f, 0x25, 0x75, 0x68, 0xa1, 0xea, 0xd3,
58 0x25, 0x23, 0x4e, 0xaa, 0x22, 0x0c, 0x16, 0xb9,
/linux/tools/testing/selftests/arm64/abi/
H A Dsyscall-abi-asm.S80 stp x25, x26, [sp, #80]
121 ldp x24, x25, [x2], #16
231 stp x24, x25, [x2], #16
353 ldp x25, x26, [sp, #80]
/linux/arch/arm/boot/dts/nxp/imx/
H A Dimx6qdl-pico-dwarf.dtsi31 reg = <0x25>;
H A Dimx6qdl-pico-nymph.dtsi30 reg = <0x25>;
/linux/arch/riscv/include/asm/
H A Dasm.h147 REG_S x25, PT_S9(sp)
177 REG_L x25, PT_S9(sp)

12345