/linux-6.1.9/net/x25/ |
D | x25_in.c | 35 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 …]
|
D | x25_subr.c | 36 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 …]
|
D | x25_out.c | 53 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 …]
|
D | x25_timer.c | 29 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 …]
|
D | af_x25.c | 504 struct x25_sock *x25; in x25_alloc_socket() local 512 x25 = x25_sk(sk); in x25_alloc_socket() 513 skb_queue_head_init(&x25->ack_queue); in x25_alloc_socket() 514 skb_queue_head_init(&x25->fragment_queue); in x25_alloc_socket() 515 skb_queue_head_init(&x25->interrupt_in_queue); in x25_alloc_socket() 516 skb_queue_head_init(&x25->interrupt_out_queue); in x25_alloc_socket() 525 struct x25_sock *x25; in x25_create() local 543 x25 = x25_sk(sk); in x25_create() 553 x25->t21 = sysctl_x25_call_request_timeout; in x25_create() 554 x25->t22 = sysctl_x25_reset_request_timeout; in x25_create() [all …]
|
D | x25_proc.c | 81 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()
|
D | Makefile | 6 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
|
D | Kconfig | 20 You can read more about X.25 at <https://www.sangoma.com/tutorials/x25/> and 23 <file:Documentation/networking/x25.rst> and 24 <file:Documentation/networking/x25-iface.rst>. 34 will be called x25. If unsure, say N.
|
D | x25_facilities.c | 268 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-6.1.9/lib/crypto/ |
D | curve25519-fiat32.c | 246 { 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-6.1.9/arch/arm64/kernel/ |
D | hibernate-asm.S | 58 mov x25, x5 85 break_before_make_ttbr_switch x25, x21, x6, x8
|
D | efi-rt-wrapper.S | 29 stp x25, x26, [sp, #80] 83 ldp x25, x26, [sp, #80]
|
D | sleep.S | 70 stp x25, x26, [x0,#SLEEP_STACK_DATA_CALLEE_REGS+64] 149 ldp x25, x26, [x29, #64]
|
D | head.S | 104 mov x25, #VA_BITS_MIN 105 csel x25, x25, x0, eq 106 mov x0, x25 450 str x25, [x8] // ... observes the correct value
|
/linux-6.1.9/arch/powerpc/boot/dts/ |
D | mpc7448hpc2.dts | 157 0x800 0x0 0x0 0x2 &RT0 0x25 0x0 162 0x1000 0x0 0x0 0x1 &RT0 0x25 0x0 171 0x1800 0x0 0x0 0x4 &RT0 0x25 0x0 176 0x2000 0x0 0x0 0x3 &RT0 0x25 0x0
|
D | holly.dts | 161 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-6.1.9/Documentation/admin-guide/ |
D | svga.rst | 31 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-6.1.9/Documentation/devicetree/bindings/extcon/ |
D | fcs,fsa880.yaml | 28 usually 0x25. 48 reg = <0x25>;
|
D | siliconmitus,sm5502-muic.yaml | 27 description: I2C slave address of the device. Usually 0x25 for SM5502 49 reg = <0x25>;
|
/linux-6.1.9/Documentation/networking/ |
D | index.rst | 116 x25-iface 117 x25
|
D | x25.rst | 34 A linux-x25 mailing list has been created at vger.kernel.org to support the 39 subscribe linux-x25
|
/linux-6.1.9/tools/testing/selftests/kvm/lib/aarch64/ |
D | handlers.S | 17 stp x24, x25, [sp, #16 * 12] 44 ldp x24, x25, [sp, #16 * 12]
|
/linux-6.1.9/arch/arm64/kernel/probes/ |
D | kprobes_trampoline.S | 25 stp x24, x25, [sp, #S_X24] 59 ldp x24, x25, [sp, #S_X24]
|
/linux-6.1.9/arch/riscv/kernel/probes/ |
D | kprobes_trampoline.S | 37 REG_S x25, PT_S9(sp) 69 REG_L x25, PT_S9(sp)
|
/linux-6.1.9/arch/arm/boot/dts/ |
D | imx6qdl-pico-dwarf.dtsi | 31 reg = <0x25>;
|