/Linux-v4.19/net/x25/ |
D | x25_in.c | 40 struct x25_sock *x25 = x25_sk(sk); in x25_queue_rx_frame() local 43 x25->fraglen += skb->len; in x25_queue_rx_frame() 44 skb_queue_tail(&x25->fragment_queue, skb); in x25_queue_rx_frame() 49 if (!more && x25->fraglen > 0) { /* End of fragment */ in x25_queue_rx_frame() 50 int len = x25->fraglen + skb->len; in x25_queue_rx_frame() 57 skb_queue_tail(&x25->fragment_queue, skb); in x25_queue_rx_frame() 61 skbo = skb_dequeue(&x25->fragment_queue); in x25_queue_rx_frame() 67 skb_dequeue(&x25->fragment_queue)) != NULL) { in x25_queue_rx_frame() 68 skb_pull(skbo, (x25->neighbour->extended) ? in x25_queue_rx_frame() 76 x25->fraglen = 0; in x25_queue_rx_frame() [all …]
|
D | x25_subr.c | 41 struct x25_sock *x25 = x25_sk(sk); in x25_clear_queues() local 44 skb_queue_purge(&x25->ack_queue); in x25_clear_queues() 45 skb_queue_purge(&x25->interrupt_in_queue); in x25_clear_queues() 46 skb_queue_purge(&x25->interrupt_out_queue); in x25_clear_queues() 47 skb_queue_purge(&x25->fragment_queue); in x25_clear_queues() 59 struct x25_sock *x25 = x25_sk(sk); in x25_frames_acked() local 60 int modulus = x25->neighbour->extended ? X25_EMODULUS : X25_SMODULUS; in x25_frames_acked() 65 if (x25->va != nr) in x25_frames_acked() 66 while (skb_peek(&x25->ack_queue) && x25->va != nr) { in x25_frames_acked() 67 skb = skb_dequeue(&x25->ack_queue); in x25_frames_acked() [all …]
|
D | x25_out.c | 58 struct x25_sock *x25 = x25_sk(sk); in x25_output() local 59 int header_len = x25->neighbour->extended ? X25_EXT_MIN_LEN : in x25_output() 61 int max_len = x25_pacsize_to_bytes(x25->facilities.pacsize_out); in x25_output() 99 if (x25->neighbour->extended) in x25_output() 123 struct x25_sock *x25 = x25_sk(sk); in x25_send_iframe() local 128 if (x25->neighbour->extended) { in x25_send_iframe() 129 skb->data[2] = (x25->vs << 1) & 0xFE; in x25_send_iframe() 131 skb->data[3] |= (x25->vr << 1) & 0xFE; in x25_send_iframe() 134 skb->data[2] |= (x25->vs << 1) & 0x0E; in x25_send_iframe() 135 skb->data[2] |= (x25->vr << 5) & 0xE0; in x25_send_iframe() [all …]
|
D | x25_timer.c | 34 struct x25_sock *x25 = x25_sk(sk); in x25_init_timers() local 36 timer_setup(&x25->timer, x25_timer_expiry, 0); in x25_init_timers() 54 struct x25_sock *x25 = x25_sk(sk); in x25_start_t2timer() local 56 mod_timer(&x25->timer, jiffies + x25->t2); in x25_start_t2timer() 61 struct x25_sock *x25 = x25_sk(sk); in x25_start_t21timer() local 63 mod_timer(&x25->timer, jiffies + x25->t21); in x25_start_t21timer() 68 struct x25_sock *x25 = x25_sk(sk); in x25_start_t22timer() local 70 mod_timer(&x25->timer, jiffies + x25->t22); in x25_start_t22timer() 75 struct x25_sock *x25 = x25_sk(sk); in x25_start_t23timer() local 77 mod_timer(&x25->timer, jiffies + x25->t23); in x25_start_t23timer() [all …]
|
D | x25_proc.c | 86 struct x25_sock *x25; in x25_seq_socket_show() local 97 x25 = x25_sk(s); in x25_seq_socket_show() 99 if (!x25->neighbour || (dev = x25->neighbour->dev) == NULL) in x25_seq_socket_show() 102 devname = x25->neighbour->dev->name; in x25_seq_socket_show() 106 !x25->dest_addr.x25_addr[0] ? "*" : x25->dest_addr.x25_addr, in x25_seq_socket_show() 107 !x25->source_addr.x25_addr[0] ? "*" : x25->source_addr.x25_addr, in x25_seq_socket_show() 108 devname, x25->lci & 0x0FFF, x25->state, x25->vs, x25->vr, in x25_seq_socket_show() 109 x25->va, x25_display_timer(s) / HZ, x25->t2 / HZ, in x25_seq_socket_show() 110 x25->t21 / HZ, x25->t22 / HZ, x25->t23 / HZ, in x25_seq_socket_show()
|
D | af_x25.c | 521 struct x25_sock *x25; in x25_alloc_socket() local 529 x25 = x25_sk(sk); in x25_alloc_socket() 530 skb_queue_head_init(&x25->ack_queue); in x25_alloc_socket() 531 skb_queue_head_init(&x25->fragment_queue); in x25_alloc_socket() 532 skb_queue_head_init(&x25->interrupt_in_queue); in x25_alloc_socket() 533 skb_queue_head_init(&x25->interrupt_out_queue); in x25_alloc_socket() 542 struct x25_sock *x25; in x25_create() local 560 x25 = x25_sk(sk); in x25_create() 570 x25->t21 = sysctl_x25_call_request_timeout; in x25_create() 571 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 | 19 You can read more about X.25 at <http://www.sangoma.com/tutorials/x25/> and 22 <file:Documentation/networking/x25.txt> and 23 <file:Documentation/networking/x25-iface.txt>. 33 will be called x25. If unsure, say N.
|
D | x25_facilities.c | 273 struct x25_sock *x25 = x25_sk(sk); in x25_negotiate_facilities() local 274 struct x25_facilities *ours = &x25->facilities; in x25_negotiate_facilities() 282 len = x25_parse_facilities(skb, &theirs, dte, &x25->vc_facil_mask); in x25_negotiate_facilities()
|
/Linux-v4.19/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 | 892 mov x25, x6 894 cmp x25, #0 986 1: cbz x25, 8b 987 st1 {v1.16b}, [x25] 989 2: cbz x25, 8b 990 st1 {v4.16b}, [x25] 992 3: cbz x25, 8b 993 st1 {v6.16b}, [x25] 995 4: cbz x25, 8b 996 st1 {v3.16b}, [x25] [all …]
|
/Linux-v4.19/arch/arm64/kernel/ |
D | entry.S | 173 stp x24, x25, [sp, #16 * 12] 342 ldp x24, x25, [sp, #16 * 12] 376 ldr x25, [tsk, TSK_STACK] 377 eor x25, x25, x19 378 and x25, x25, #~(THREAD_SIZE - 1) 379 cbnz x25, 9998f 381 ldr_this_cpu x25, irq_stack_ptr, x26 383 add x26, x25, x26 405 xsc_nr .req x25 // number of system calls (zero-extended) 653 mrs x25, esr_el1 // read the syndrome register [all …]
|
D | hibernate-asm.S | 88 mov x25, x5 114 break_before_make_ttbr_switch x25, x21, x6
|
D | sleep.S | 69 stp x25, x26, [x0,#SLEEP_STACK_DATA_CALLEE_REGS+64] 142 ldp x25, x26, [x29, #64]
|
/Linux-v4.19/Documentation/devicetree/bindings/extcon/ |
D | extcon-sm5502.txt | 11 - reg: Specifies the I2C slave address of the MUIC block. It should be 0x25 20 reg = <0x25>;
|
/Linux-v4.19/Documentation/ |
D | svga.txt | 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-v4.19/arch/powerpc/boot/dts/ |
D | mpc7448hpc2.dts | 161 0x800 0x0 0x0 0x2 &RT0 0x25 0x0 166 0x1000 0x0 0x0 0x1 &RT0 0x25 0x0 175 0x1800 0x0 0x0 0x4 &RT0 0x25 0x0 180 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-v4.19/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-v4.19/Documentation/isdn/ |
D | README.x25 | 143 - the x25-utils-2.X package from 145 (don't confuse the x25-utils with the ax25-utils) 148 contained in the x25-util package). 161 But a special x25route tool (distributed with the x25-util package) 170 tests, the x25-utils package contains a modified version of telnet 180 The x25-utility package also contains an x25trace tool that can be 182 The /proc/net/x25* files also contain useful information.
|
/Linux-v4.19/arch/arm64/kernel/probes/ |
D | kprobes_trampoline.S | 25 stp x24, x25, [sp, #S_X24] 59 ldp x24, x25, [sp, #S_X24]
|
/Linux-v4.19/arch/arm64/kvm/hyp/ |
D | entry.S | 38 stp x25, x26, [\ctxt, #CPU_XREG_OFFSET(25)] 47 ldp x25, x26, [\ctxt, #CPU_XREG_OFFSET(25)]
|
/Linux-v4.19/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-v4.19/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-v4.19/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>;
|