| /Linux-v5.4/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 (!more && 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 | x25_proc.c | 81 struct x25_sock *x25; in x25_seq_socket_show() local 92 x25 = x25_sk(s); in x25_seq_socket_show() 94 if (!x25->neighbour || (dev = x25->neighbour->dev) == NULL) in x25_seq_socket_show() 97 devname = x25->neighbour->dev->name; in x25_seq_socket_show() 101 !x25->dest_addr.x25_addr[0] ? "*" : x25->dest_addr.x25_addr, in x25_seq_socket_show() 102 !x25->source_addr.x25_addr[0] ? "*" : x25->source_addr.x25_addr, in x25_seq_socket_show() 103 devname, x25->lci & 0x0FFF, x25->state, x25->vs, x25->vr, in x25_seq_socket_show() 104 x25->va, x25_display_timer(s) / HZ, x25->t2 / HZ, in x25_seq_socket_show() 105 x25->t21 / HZ, x25->t22 / HZ, x25->t23 / HZ, in x25_seq_socket_show()
|
| D | af_x25.c | 514 struct x25_sock *x25; in x25_alloc_socket() local 522 x25 = x25_sk(sk); in x25_alloc_socket() 523 skb_queue_head_init(&x25->ack_queue); in x25_alloc_socket() 524 skb_queue_head_init(&x25->fragment_queue); in x25_alloc_socket() 525 skb_queue_head_init(&x25->interrupt_in_queue); in x25_alloc_socket() 526 skb_queue_head_init(&x25->interrupt_out_queue); in x25_alloc_socket() 535 struct x25_sock *x25; in x25_create() local 553 x25 = x25_sk(sk); in x25_create() 563 x25->t21 = sysctl_x25_call_request_timeout; in x25_create() 564 x25->t22 = sysctl_x25_reset_request_timeout; in x25_create() [all …]
|
| 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 <http://www.sangoma.com/tutorials/x25/> and 23 <file:Documentation/networking/x25.txt> and 24 <file:Documentation/networking/x25-iface.txt>. 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-v5.4/arch/arm64/crypto/ |
| D | sha512-core.S_shipped | 79 stp x25,x26,[sp,#64] 85 ldp x24,x25,[x0,#4*8] 102 and x17,x25,x24 128 bic x28,x25,x23 149 add x25,x25,x19 // h+=K[i] 153 add x25,x25,x5 // h+=X[i] 158 add x25,x25,x17 // h+=Ch(e,f,g) 160 add x25,x25,x16 // h+=Sigma1(e) 162 add x21,x21,x25 // d+=h 165 add x25,x25,x28 // h+=Maj(a,b,c) [all …]
|
| D | aes-neonbs-core.S | 886 mov x25, x6 888 cmp x25, #0 981 0: cbz x25, 8b 982 st1 {v0.16b}, [x25] 984 1: cbz x25, 8b 985 st1 {v1.16b}, [x25] 987 2: cbz x25, 8b 988 st1 {v4.16b}, [x25] 990 3: cbz x25, 8b 991 st1 {v6.16b}, [x25] [all …]
|
| /Linux-v5.4/arch/arm64/kernel/ |
| D | entry.S | 162 stp x24, x25, [sp, #16 * 12] 361 ldp x24, x25, [sp, #16 * 12] 392 ldr x25, [tsk, TSK_STACK] 393 eor x25, x25, x19 394 and x25, x25, #~(THREAD_SIZE - 1) 395 cbnz x25, 9998f 397 ldr_this_cpu x25, irq_stack_ptr, x26 399 add x26, x25, x26 717 mrs x25, esr_el1 // read the syndrome register 718 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class [all …]
|
| D | hibernate-asm.S | 78 mov x25, x5 104 break_before_make_ttbr_switch x25, x21, x6, x8
|
| D | sleep.S | 69 stp x25, x26, [x0,#SLEEP_STACK_DATA_CALLEE_REGS+64] 143 ldp x25, x26, [x29, #64]
|
| /Linux-v5.4/Documentation/devicetree/bindings/extcon/ |
| D | extcon-fsa9480.txt | 11 - reg : Specifies i2c slave address. Must be 0x25. 18 reg = <0x25>;
|
| D | extcon-sm5502.txt | 11 - reg: Specifies the I2C slave address of the MUIC block. It should be 0x25 20 reg = <0x25>;
|
| /Linux-v5.4/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-v5.4/Documentation/admin-guide/ |
| D | svga.rst | 30 NORMAL_VGA - Standard 80x25 mode available on all display adapters. 54 the standard 80x25 mode. 60 0 0F00 80x25 73 "0 0F00 80x25" means that the first menu item (the menu items are numbered 74 from "0" to "9" and from "a" to "z") is a 80x25 mode with ID=0x0f00 (see the 89 the standard modes (80x25 and 80x50) followed by "special" modes (80x28 and 127 (Usually 940=80x43, 941=132x25, 942=132x44, 943=80x60, 944=100x60, 132 0x0f00 standard 80x25, don't reset mode if already set (=FFFF) 144 E.g., 0x1950 corresponds to a 80x25 mode, 0x2b84 to 132x43 etc. 150 0xffff equivalent to 0x0f00 (standard 80x25) [all …]
|
| /Linux-v5.4/Documentation/devicetree/bindings/mfd/ |
| D | max14577.txt | 12 - reg : I2C slave address for the max14577 chip (0x25 for max14577/max77836) 70 reg = <0x25>; 105 reg = <0x25>;
|
| /Linux-v5.4/arch/arm64/kernel/probes/ |
| D | kprobes_trampoline.S | 25 stp x24, x25, [sp, #S_X24] 59 ldp x24, x25, [sp, #S_X24]
|
| /Linux-v5.4/arch/arm64/kvm/hyp/ |
| D | entry.S | 29 stp x25, x26, [\ctxt, #CPU_XREG_OFFSET(25)] 38 ldp x25, x26, [\ctxt, #CPU_XREG_OFFSET(25)]
|
| /Linux-v5.4/Documentation/networking/ |
| D | x25.txt | 32 A linux-x25 mailing list has been created at vger.kernel.org to support the 37 subscribe linux-x25
|
| /Linux-v5.4/net/wireless/certs/ |
| D | sforshee.hex | 22 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-v5.4/Documentation/devicetree/bindings/ata/ |
| D | ahci-ceva.txt | 49 ceva,p0-cominit-params = /bits/ 8 <0x0F 0x25 0x18 0x29>; 54 ceva,p1-cominit-params = /bits/ 8 <0x0F 0x25 0x18 0x29>;
|