Home
last modified time | relevance | path

Searched +full:soft +full:- +full:ip (Results 1 – 25 of 168) sorted by relevance

1234567

/freebsd/sys/ufs/ffs/
H A Dffs_inode.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
98 struct inode *ip; in ffs_update() local
104 ip = VTOI(vp); in ffs_update()
105 if ((ip->i_flag & IN_MODIFIED) == 0 && waitfor == 0) in ffs_update()
107 ip->i_flag &= ~(IN_LAZYACCESS | IN_LAZYMOD | IN_MODIFIED); in ffs_update()
123 * or fsyncdata() will be able to run before the on-disk inode in ffs_update()
127 ip->i_flag &= ~(IN_SIZEMOD | IN_IBLKDATA); in ffs_update()
128 fs = ITOFS(ip); in ffs_update()
129 if (fs->fs_ronly) in ffs_update()
[all …]
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_pool.c138 i6addr_t ip; in main() local
140 RWLOCK_INIT(softc->ipf_poolrw, "poolrw"); in main()
143 bzero((char *)&ip, sizeof(ip)); in main()
185 ip.in4.s_addr = 0x0a00aabb; in main()
186 printf("search(%#x) = %d (0)\n", ip.in4.s_addr, in main()
187 ipf_pool_search(ipo, 4, &ip, 1)); in main()
189 ip.in4.s_addr = 0x0a000001; in main()
190 printf("search(%#x) = %d (0)\n", ip.in4.s_addr, in main()
191 ipf_pool_search(ipo, 4, &ip, 1)); in main()
193 ip.in4.s_addr = 0x0a000101; in main()
[all …]
H A Dip_lookup.c58 * range for unit is [-1,IPL_LOGMAX]. The -1 is considered to be a valid number
62 * array indexing on the unit, +1 is used to map [-1.IPL_LOGMAX] to
87 /* ------------------------------------------------------------------------ */
89 /* Returns: int - 0 = success, else error */
90 /* Parameters: softc(I) - pointer to soft context main structure */
93 /* ------------------------------------------------------------------------ */
108 softl->ipf_back[i] = (*(*l)->ipfl_create)(softc); in ipf_lookup_soft_create()
109 if (softl->ipf_back[i] == NULL) { in ipf_lookup_soft_create()
119 /* ------------------------------------------------------------------------ */
121 /* Returns: int - 0 = success, else error */
[all …]
H A Dip_nat.c72 #include <netinet/ip.h>
110 #define NATFSUM(n,v,f) ((v) == 4 ? (n)->f.in4.s_addr : (n)->f.i6[0] + \
111 (n)->f.i6[1] + (n)->f.i6[2] + (n)->f.i6[3])
112 #define NBUMP(x) softn->(x)++
114 softn->x.y++; \
117 #define NBUMPSIDE(y,x) softn->ipf_nat_stats.ns_side[y].x++
118 #define NBUMPSIDED(y,x) do { softn->ipf_nat_stats.ns_side[y].x++; \
121 do { softn->ipf_nat_stats.ns_side[y].x++; \
123 #define NBUMPSIDEDF(y,x)do { softn->ipf_nat_stats.ns_side[y].x++; \
182 /* -------------------- -+- ------------------------------------- */
[all …]
H A Dip_auth.c71 #include <netinet/ip.h>
122 /* ------------------------------------------------------------------------ */
124 /* Returns: int - 0 == success, else error */
127 /* A null-op function that exists as a placeholder so that the flow in */
129 /* ------------------------------------------------------------------------ */
137 /* ------------------------------------------------------------------------ */
139 /* Returns: int - 0 == success, else error */
142 /* A null-op function that exists as a placeholder so that the flow in */
144 /* ------------------------------------------------------------------------ */
152 /* ------------------------------------------------------------------------ */
[all …]
H A Dip_frag.c58 #include <netinet/ip.h>
113 #define FBUMP(x) softf->ipfr_stats.x++
114 #define FBUMPD(x) do { softf->ipfr_stats.x++; DT(x); } while (0)
117 /* ------------------------------------------------------------------------ */
119 /* Returns: int - 0 == success, -1 == error */
122 /* Initialise the filter rule associted with blocked packets - everyone can */
124 /* ------------------------------------------------------------------------ */
136 /* ------------------------------------------------------------------------ */
138 /* Returns: int - 0 == success, -1 == error */
141 /* A null-op function that exists as a placeholder so that the flow in */
[all …]
H A Dfil.c63 #include <netinet/ip.h>
114 #define LBUMP(x) softc->x++
115 #define LBUMPD(x, y) do { softc->x.y++; DT(y); } while (0)
182 * bit values for identifying presence of individual IP options
226 * bit values for identifying presence of individual IP security options
409 /* ------------------------------------------------------------------------ */
412 /* Parameters: fin(I) - pointer to packet information */
413 /* xmin(I) - minimum header size */
419 /* ------------------------------------------------------------------------ */
424 if (fin->fin_dlen < xmin) in ipf_pr_short6()
[all …]
/freebsd/usr.sbin/nfsd/
H A Dpnfsserver.476 .Bd -literal -offset indent
77 jot -w ds 20 0 | xargs mkdir -m 700
99 of these DSs must be mountable via a separate IP address.
103 to create these different IP addresses.
118 .Dq -p
124 .Bd -literal -offset indent
125 nfsv4,minorversion=2,soft,retrans=2
129 .Dq -p
134 For example, if there are four DSs named nfsv4-data[0-3], the
137 .Bd -literal -offset
[all …]
/freebsd/sys/ufs/ufs/
H A Dufs_quota.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
85 /* conversion functions - from_to() */
107 getinoquota(struct inode *ip) in getinoquota() argument
113 vp = ITOV(ip); in getinoquota()
119 if ((vp->v_vflag & VV_SYSTEM) != 0) in getinoquota()
125 if ((int)ip->i_uid < 0 || (int)ip->i_gid < 0) in getinoquota()
127 ump = VFSTOUFS(vp->v_mount); in getinoquota()
133 dqget(vp, ip->i_uid, ump, USRQUOTA, &ip->i_dquot[USRQUOTA])) && in getinoquota()
141 dqget(vp, ip->i_gid, ump, GRPQUOTA, &ip->i_dquot[GRPQUOTA])) && in getinoquota()
[all …]
H A Dufs_vnops.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
138 0, DIRBLKSIZ - 12, DT_DIR, 2, ".."
142 0, DIRBLKSIZ - 12, 2, ".."
148 struct inode *ip; in ufs_itimes_locked() local
153 ip = VTOI(vp); in ufs_itimes_locked()
154 if (UFS_RDONLY(ip)) in ufs_itimes_locked()
156 if ((ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_UPDATE)) == 0) in ufs_itimes_locked()
160 UFS_INODE_SET_FLAG(ip, IN_LAZYMOD); in ufs_itimes_locked()
161 else if (((vp->v_mount->mnt_kern_flag & in ufs_itimes_locked()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/net/
H A Daltr,socfpga-stmmac.yaml1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
3 ---
4 $id: http://devicetree.org/schemas/net/altr,socfpga-stmmac.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Matthew Gerlach <matthew.gerlach@altera.com>
16 # TODO: Determine how to handle the Arria10 reset-name, stmmaceth-ocp, that
24 - altr,socfpga-stmmac
25 - altr,socfpga-stmmac-a10-s10
26 - altr,socfpga-stmmac-agilex5
29 - compatible
[all …]
/freebsd/sys/contrib/device-tree/Bindings/reset/
H A Dimg,pistachio-reset.txt5 disable individual IP blocks within the Pistachio SoC using "soft reset"
8 The actual action taken when soft reset is asserted is hardware dependent.
18 - compatible: Contains "img,pistachio-reset"
20 - #reset-cells: Contains 1
25 compatible = "img,pistachio-cr-periph", "syscon", "simple-mfd";
28 clock-names = "sys";
29 #clock-cells = <1>;
31 pistachio_reset: reset-controller {
32 compatible = "img,pistachio-reset";
33 #reset-cells = <1>;
[all …]
/freebsd/sbin/fsck_ffs/
H A Dpass1.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
93 cgp = cgbp->b_un.b_cg; in pass1()
108 inosused = cgp->cg_initediblk; in pass1()
131 * If we are using soft updates, then we can trust the in pass1()
138 cp = &cg_inosused(cgp)[(inosused - 1) / CHAR_BIT]; in pass1()
139 for ( ; inosused != 0; cp--) { in pass1()
142 inosused -= CHAR_BIT; in pass1()
147 for (i = 1 << (CHAR_BIT - 1); i > 0; i >>= 1) { in pass1()
150 inosused--; in pass1()
[all …]
H A Dpass3.c1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
48 struct inode ip; in pass3() local
52 for (inpindex = inplast - 1; inpindex >= 0; inpindex--) { in pass3()
55 (int)(inplast - inpindex - 1), (int)inplast, in pass3()
56 (int)((inplast - inpindex - 1) * 100 / inplast)); in pass3()
61 (int)((inplast - inpindex - 1) * 100 / inplast)); in pass3()
65 state = inoinfo(inp->i_number)->ino_state; in pass3()
66 if (inp->i_number == UFS_ROOTINO || in pass3()
67 (inp->i_parent != 0 && !S_IS_DUNFOUND(state))) in pass3()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/mailbox/
H A Dmicrochip,sbi-ipc.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/mailbox/microchip,sbi-ipc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Microchip Inter-processor communication (IPC) mailbox controller
10 - Valentina Fernandez <valentina.fernandezalanis@microchip.com>
13 The Microchip Inter-processor Communication (IPC) facilitates
20 - description:
22 mode (s-mode). This SBI interface is compatible with the Mi-V
23 Inter-hart Communication (IHC) IP.
[all …]
/freebsd/sys/dev/iscsi/
H A Dicl_soft.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
74 /* soft specific stuff goes here. */
87 struct icl_pdu ip; member
89 /* soft specific stuff goes here. */
95 SYSCTL_NODE(_kern_icl, OID_AUTO, soft, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
177 if (ic->ic_socket == NULL) in icl_conn_fail()
183 ic->ic_socket->so_error = EDOOFUS; in icl_conn_fail()
184 (ic->ic_error)(ic); in icl_conn_fail()
188 icl_soft_conn_pdu_free(struct icl_conn *ic, struct icl_pdu *ip) in icl_soft_conn_pdu_free() argument
[all …]
/freebsd/sbin/mount_nfs/
H A Dmount_nfs.871 For non-critical file systems, the
84 .Cm soft
88 .Bl -tag -width indent
97 .Bl -tag -width indent
109 The default values are 3 -> 60 seconds
110 for regular files, and 30 -> 60 seconds for directories.
119 to specify that all operations should use the host-based initiator
139 such as cross-mounted servers (each of two servers is an NFS client of
155 .It Cm gssname Ns = Ns Aq Ar service-principal-name
158 .Dq "service-principal-name"
[all …]
/freebsd/sys/contrib/device-tree/Bindings/misc/
H A Dxlnx,sd-fec.txt1 * Xilinx SDFEC(16nm) IP *
3 The Soft Decision Forward Error Correction (SDFEC) Engine is a Hard IP block
4 which provides high-throughput LDPC and Turbo Code implementations.
6 customer specified Quasi-cyclic (QC) codes. The Turbo decode functionality
12 - compatible: Must be "xlnx,sd-fec-1.1"
13 - clock-names : List of input clock names from the following:
14 - "core_clk", Main processing clock for processing core (required)
15 - "s_axi_aclk", AXI4-Lite memory-mapped slave interface clock (required)
16 - "s_axis_din_aclk", DIN AXI4-Stream Slave interface clock (optional)
17 - "s_axis_din_words-aclk", DIN_WORDS AXI4-Stream Slave interface clock (optional)
[all …]
/freebsd/sys/contrib/device-tree/Bindings/ata/
H A Dahci-st.txt6 - compatible : Must be "st,ahci"
7 - reg : Physical base addresses and length of register sets
8 - interrupts : Interrupt associated with the SATA device
9 - interrupt-names : Associated name must be; "hostc"
10 - clocks : The phandle for the clock
11 - clock-names : Associated name must be; "ahci_clk"
12 - phys : The phandle for the PHY port
13 - phy-names : Associated name must be; "ahci_phy"
16 - resets : The power-down, soft-reset and power-reset lines of SATA IP
17 - reset-names : Associated names must be; "pwr-dwn", "sw-rst" and "pwr-rst"
[all …]
/freebsd/sys/contrib/device-tree/src/arm/microchip/
H A Danimeo_ip.dts1 // SPDX-License-Identifier: GPL-2.0-only
3 * animeo_ip.dts - Device Tree file for Somfy Animeo IP Boards
5 * Copyright (C) 2011-2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8 /dts-v1/;
12 model = "Somfy Animeo IP";
13 compatible = "somfy,animeo-ip", "atmel,at91sam9260", "atmel,at91sam9";
26 stdout-path = &usart2;
35 clock-frequency = <32768>;
39 clock-frequency = <18432000>;
47 compatible = "atmel,tcb-timer";
[all …]
/freebsd/sys/dev/ice/
H A Dvirtchnl_inline_ipsec.h
/freebsd/sys/dev/usb/net/
H A Dif_smsc.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
30 * Microchip LAN9xxx devices (https://www.microchip.com/en-us/product/lan9500a)
32 * The LAN9500 & LAN9500A devices are stand-alone USB to Ethernet chips that
46 * ---------------------------------
51 * the Ethernet frame, this means if the frame is padded with non-zero values
93 #include <netinet/ip.h>
166 device_printf((sc)->sc_ue.ue_dev, "debug: " fmt, ##args); \
173 device_printf((sc)->sc_ue.ue_dev, "warning: " fmt, ##args)
176 device_printf((sc)->sc_ue.ue_dev, "error: " fmt, ##args)
[all …]
/freebsd/sys/contrib/device-tree/Bindings/spi/
H A Dmicrochip,mpfs-spi.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/spi/microchip,mpfs-spi.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 SPI and QSPI controllers on Microchip PolarFire SoC and the "soft"/
11 fabric IP cores they are based on
14 - Conor Dooley <conor.dooley@microchip.com>
19 - items:
20 - enum:
21 - microchip,mpfs-qspi
[all …]
/freebsd/secure/lib/libcrypto/man/man3/
H A DEVP_EncodeInit.31 .\" -*- mode: troff; coding: utf-8 -*-
34 .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
58 .TH EVP_ENCODEINIT 3ossl 2025-09-30 3.5.4 OpenSSL
67 EVP_DecodeBlock \- EVP base64 encode/decode routines
91 The EVP encode routines provide a high-level interface to base64 encoding and
94 the characters A\-Z, a\-z, 0\-9, "+" and "/" to represent the data. For every 3
172 For compatibility with \fBPEM\fR, the \fB\-\fR (hyphen) character is treated as a soft
173 end-of-input, subsequent bytes are not buffered, and the return value will be
175 The soft end-of-input, if present, MUST occur after a multiple of 4 valid base64
177 The soft end-of-input condition is not remembered in \fBctx\fR, it is up to the
[all …]
H A DBIO_f_base64.31 .\" -*- mode: troff; coding: utf-8 -*-
34 .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
58 .TH BIO_F_BASE64 3ossl 2025-09-30 3.5.4 OpenSSL
64 BIO_f_base64 \- base64 BIO filter
91 lines that contain non\-base64 content (whitespace is tolerated and ignored) are
96 Decoding stops when base64 padding is encountered, a soft end-of-input
97 character (\fB\-\fR, see \fBEVP_DecodeUpdate\fR\|(3)) occurs as the first byte after a
160 The hyphen character (\fB\-\fR) is treated as an ad hoc soft end-of-input
165 multi-part MIME, provided there are no stray hyphens in the middle
173 It may be possible for \fBBIO_read\fR\|(3) to return zero, rather than \-1, even if
[all …]

1234567