Home
last modified time | relevance | path

Searched refs:un (Results 1 – 25 of 26) sorted by relevance

12

/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dunique.c80 un->un_value = value; in unique_insert()
83 while (un->un_value == 0 || un->un_value & ~UNIQUE_MASK || in unique_insert()
84 avl_find(&unique_avl, un, &idx)) { in unique_insert()
87 sizeof (un->un_value)); in unique_insert()
88 un->un_value &= UNIQUE_MASK; in unique_insert()
92 avl_insert(&unique_avl, un, idx); in unique_insert()
95 return (un->un_value); in unique_insert()
102 unique_t *un; in unique_remove() local
107 if (un != NULL) { in unique_remove()
108 avl_remove(&unique_avl, un); in unique_remove()
[all …]
/f-stack/freebsd/contrib/openzfs/include/os/linux/spl/sys/
H A Dvfs.h44 } un; member
47 #define fid_len un._fid.len
48 #define fid_data un._fid.data
/f-stack/dpdk/drivers/net/virtio/virtio_user/
H A Dvhost_user.c420 virtio_user_start_server(struct virtio_user_dev *dev, struct sockaddr_un *un) in virtio_user_start_server() argument
426 ret = bind(fd, (struct sockaddr *)un, sizeof(*un)); in virtio_user_start_server()
457 struct sockaddr_un un; in vhost_user_setup() local
469 memset(&un, 0, sizeof(un)); in vhost_user_setup()
470 un.sun_family = AF_UNIX; in vhost_user_setup()
471 strlcpy(un.sun_path, dev->path, sizeof(un.sun_path)); in vhost_user_setup()
475 if (virtio_user_start_server(dev, &un) < 0) { in vhost_user_setup()
482 if (connect(fd, (struct sockaddr *)&un, sizeof(un)) < 0) { in vhost_user_setup()
/f-stack/dpdk/lib/librte_vhost/
H A Dsocket.c37 struct sockaddr_un un; member
339 struct sockaddr_un *un = &vsocket->un; in create_unix_socket() local
355 memset(un, 0, sizeof(*un)); in create_unix_socket()
356 un->sun_family = AF_UNIX; in create_unix_socket()
357 strncpy(un->sun_path, vsocket->path, sizeof(un->sun_path)); in create_unix_socket()
358 un->sun_path[sizeof(un->sun_path) - 1] = '\0'; in create_unix_socket()
381 ret = bind(fd, (struct sockaddr *)&vsocket->un, sizeof(vsocket->un)); in vhost_user_start_server()
411 struct sockaddr_un un; member
432 ret = connect(fd, un, sz); in vhost_user_connect_nonblock()
469 sizeof(reconn->un)); in vhost_user_client_reconnect()
[all …]
/f-stack/dpdk/lib/librte_eal/common/
H A Deal_common_proc.c541 struct sockaddr_un un; in open_socket_fd() local
554 memset(&un, 0, sizeof(un)); in open_socket_fd()
555 un.sun_family = AF_UNIX; in open_socket_fd()
557 create_socket_path(peer_name, un.sun_path, sizeof(un.sun_path)); in open_socket_fd()
559 unlink(un.sun_path); /* May still exist since last run */ in open_socket_fd()
561 if (bind(mp_fd, (struct sockaddr *)&un, sizeof(un)) < 0) { in open_socket_fd()
563 un.sun_path, strerror(errno)); in open_socket_fd()
568 RTE_LOG(INFO, EAL, "Multi-process socket %s\n", un.sun_path); in open_socket_fd()
/f-stack/freebsd/kern/
H A Dsubr_hints.c312 int un; in resource_find() local
327 un = -1; in resource_find()
328 i = res_find(&hintp, line, startln, name, &un, resname, value, in resource_find()
H A Dbus_if.m217 * attach any un-matched children of the bus.
/f-stack/dpdk/drivers/net/memif/
H A Dmemif_socket.c868 struct sockaddr_un un = { 0 }; in memif_socket_create() local
888 un.sun_family = AF_UNIX; in memif_socket_create()
891 un.sun_path[0] = '\0'; in memif_socket_create()
892 strlcpy(un.sun_path + 1, sock->filename, MEMIF_SOCKET_UN_SIZE - 1); in memif_socket_create()
894 strlcpy(un.sun_path, sock->filename, MEMIF_SOCKET_UN_SIZE); in memif_socket_create()
902 ret = bind(sockfd, (struct sockaddr *)&un, sizeof(un)); in memif_socket_create()
/f-stack/freebsd/contrib/openzfs/cmd/zfs/
H A Dzfs_main.c5666 if (un && argc == expected_argc - 1) in munge_args()
5671 allow_usage(un, B_FALSE, in munge_args()
5686 allow_usage(un, B_FALSE, in parse_allow_args()
5691 allow_usage(un, B_TRUE, NULL); in parse_allow_args()
5698 allow_usage(un, B_FALSE, in parse_allow_args()
5703 allow_usage(un, B_FALSE, in parse_allow_args()
5708 allow_usage(un, B_FALSE, in parse_allow_args()
5713 allow_usage(un, B_FALSE, in parse_allow_args()
5722 } else if (argc == 1 && !un) { in parse_allow_args()
6140 boolean_t un; member
[all …]
/f-stack/freebsd/contrib/openzfs/rpm/generic/
H A Dzfs-kmod.spec.in34 # (un)define the next line to either build for the newest or all current kernels
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dstm32mp15xx-dhcom-pdk2.dtsi285 /* spare dmas for other usage (un-delete to enable pwm capture) */
H A Dstm32mp157c-ev1.dts300 /* spare dmas for other usage (un-delete to enable pwm capture) */
/f-stack/app/nginx-1.16.1/src/http/
H A Dngx_http_upstream.c2448 ngx_http_upstream_next_t *un; in ngx_http_upstream_test_next() local
2452 for (un = ngx_http_upstream_next_errors; un->status; un++) { in ngx_http_upstream_test_next()
2454 if (status != un->status) { in ngx_http_upstream_test_next()
2463 mask = un->mask | NGX_HTTP_UPSTREAM_FT_NON_IDEMPOTENT; in ngx_http_upstream_test_next()
2466 mask = un->mask; in ngx_http_upstream_test_next()
2474 ngx_http_upstream_next(r, u, un->mask); in ngx_http_upstream_test_next()
2481 && ((u->conf->cache_use_stale & un->mask) || r->cache->stale_error)) in ngx_http_upstream_test_next()
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dl2_forward_cat.rst201 for a sufficient number of un-associated COS. COS are selected and
/f-stack/dpdk/doc/guides/prog_guide/
H A Dipsec_lib.rst27 * initialize/un-initialize given SA based on user provided parameters.
H A Dpoll_mode_drv.rst96 * Share among multiple packets the un-amortized cost of invoking the rte_eth_tx_one function.
/f-stack/tools/libxo/
H A Dconfigure.ac227 [HAS_SUN_LEN=no], [[#include <sys/un.h>]])
/f-stack/freebsd/contrib/openzfs/contrib/dracut/
H A DREADME.dracut.markdown57 un-importable pool since the last importing hostid won't match. In order
/f-stack/dpdk/doc/guides/rel_notes/
H A Drelease_18_02.rst224 * ``rte_mp_register`` and ``rte_mp_unregister`` are for action (un)registration.
H A Drelease_19_05.rst284 request mapping or un-mapping to the default vfio container fd.
H A Drelease_18_05.rst315 for registering and un-registering user callbacks.
/f-stack/freebsd/contrib/zstd/programs/
H A DREADME.md184 --[no-]compress-literals : force (un)compressed literals
/f-stack/freebsd/contrib/openzfs/lib/libzfs/
H A Dlibzfs_dataset.c5179 zfs_set_fsacl(zfs_handle_t *zhp, boolean_t un, nvlist_t *nvl) in zfs_set_fsacl() argument
5201 zc.zc_perm_action = un; in zfs_set_fsacl()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/include/
H A Dlibtest.shlib1045 # devices which currently can only be used in the test suite as raw/un-partitioned
3742 # Set a variable in zed.rc to something, un-commenting it in the process.
/f-stack/freebsd/contrib/zlib/
H A DChangeLog650 un-versioned, the patch adds versioning only for symbols introduced in

12