| /f-stack/dpdk/doc/guides/tools/ |
| H A D | devbind.rst | 38 NOTE: if this flag is passed along with a bind/unbind option, the 42 * ``-b driver, --bind=driver`` 83 To bind eth1 from the current driver and move to use vfio-pci:: 85 dpdk-devbind --bind=vfio-pci eth1 91 To bind 0000:02:00.0 and 0000:02:00.1 to the ixgbe kernel driver::
|
| /f-stack/app/nginx-1.16.1/src/mail/ |
| H A D | ngx_mail.c | 303 addr[last - 1].opt.bind = 1; in ngx_mail_optimize_servers() 314 if (bind_wildcard && !addr[i].opt.bind) { in ngx_mail_optimize_servers() 473 if (first->opt.bind && !second->opt.bind) { in ngx_mail_cmp_conf_addrs() 478 if (!first->opt.bind && second->opt.bind) { in ngx_mail_cmp_conf_addrs()
|
| H A D | ngx_mail_core_module.c | 385 ls->bind = 1; in ngx_mail_core_listen() 391 ls->bind = 1; in ngx_mail_core_listen() 407 ls->bind = 1; in ngx_mail_core_listen() 423 ls->bind = 1; in ngx_mail_core_listen() 449 ls->bind = 1; in ngx_mail_core_listen() 556 ls->bind = 1; in ngx_mail_core_listen()
|
| /f-stack/app/nginx-1.16.1/src/stream/ |
| H A D | ngx_stream.c | 463 addr[last - 1].opt.bind = 1; in ngx_stream_optimize_servers() 474 if (bind_wildcard && !addr[i].opt.bind) { in ngx_stream_optimize_servers() 642 if (first->opt.bind && !second->opt.bind) { in ngx_stream_cmp_conf_addrs() 647 if (!first->opt.bind && second->opt.bind) { in ngx_stream_cmp_conf_addrs()
|
| H A D | ngx_stream_core_module.c | 653 ls->bind = 1; in ngx_stream_core_listen() 659 ls->bind = 1; in ngx_stream_core_listen() 677 ls->bind = 1; in ngx_stream_core_listen() 693 ls->bind = 1; in ngx_stream_core_listen() 719 ls->bind = 1; in ngx_stream_core_listen() 732 ls->bind = 1; in ngx_stream_core_listen() 839 ls->bind = 1; in ngx_stream_core_listen()
|
| /f-stack/dpdk/doc/guides/nics/ |
| H A D | build_and_test.rst | 92 ./usertools/dpdk-devbind.py --bind igb_uio DEVICE1 DEVICE2 ... 94 Or setup VFIO permissions for regular users and then bind to ``vfio-pci``: 98 ./usertools/dpdk-devbind.py --bind vfio-pci DEVICE1 DEVICE2 ...
|
| /f-stack/freebsd/sys/ |
| H A D | elf32.h | 211 #define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf)) argument
|
| H A D | elf64.h | 218 #define ELF64_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf)) argument
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_diff/ |
| H A D | socket.c | 49 if (bind(fd, (struct sockaddr *)&sock, sizeof (struct sockaddr_un))) { in main()
|
| /f-stack/app/redis-5.0.5/tests/assets/ |
| H A D | default.conf | 9 bind 127.0.0.1
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | anet_ff.c | 132 INIT_FUNCTION(bind); in ff_mod_init() 174 bind(int sockfd, const struct sockaddr *addr, socklen_t addrlen) in bind() function 177 INIT_FUNCTION(bind); in bind()
|
| /f-stack/app/micro_thread/ |
| H A D | mt_sys_hook.cpp | 347 int bind(int sockfd, const struct sockaddr *addr, socklen_t addrlen) in bind() function 349 mt_hook_syscall(bind); in bind() 352 return mt_real_func(bind)(sockfd, addr, addrlen); in bind()
|
| H A D | echo.cpp | 65 if (bind(fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) { in echo_server()
|
| /f-stack/tools/libnetgraph/ |
| H A D | internal.h | 79 #define bind(a,b,c) ng_bind(a,b,c) macro
|
| /f-stack/dpdk/doc/guides/linux_gsg/ |
| H A D | linux_drivers.rst | 222 To bind ports to the ``vfio-pci``, ``uio_pci_generic`` or ``igb_uio`` module 226 and to bind and unbind those ports from the different kernel modules, 276 To bind device ``eth1``,``04:00.1``, to the ``uio_pci_generic`` driver: 280 ./usertools/dpdk-devbind.py --bind=uio_pci_generic 04:00.1 286 ./usertools/dpdk-devbind.py --bind=uio_pci_generic eth1 292 ./usertools/dpdk-devbind.py --bind=ixgbe 82:00.0 298 to bind a device to VFIO driver may fail.
|
| /f-stack/dpdk/doc/guides/mempool/ |
| H A D | octeontx2.rst | 83 available in the system. In order to avoid, the end user to bind the mempool 87 (without ethdev or eventdev), end user needs to bind a mempool device using
|
| /f-stack/dpdk/doc/guides/cryptodevs/ |
| H A D | octeontx2.rst | 108 echo 0002:10:00.1 > /sys/bus/pci/drivers/vfio-pci/bind 110 Another way to bind the VF would be to use the ``dpdk-devbind.py`` script:
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_mount/ |
| H A D | zfs_multi_mount.ksh | 100 log_must mount --bind $MNTPFS $MNTPFS4
|
| /f-stack/freebsd/contrib/device-tree/Bindings/phy/ |
| H A D | phy-mtk-ufs.txt | 7 To bind UFS M-PHY with UFS host controller, the controller node should
|
| /f-stack/freebsd/netgraph/ |
| H A D | NOTES | 61 - BUG FIX: bind() on a socket should neither require nor allow a 65 - bind on a control socket has been disabled
|
| /f-stack/app/redis-5.0.5/ |
| H A D | redis.conf | 69 bind 0.0.0.0
|
| /f-stack/dpdk/doc/guides/regexdevs/ |
| H A D | octeontx2.rst | 32 used to view the state of the devices and to bind them to a suitable
|
| /f-stack/freebsd/contrib/device-tree/Bindings/ufs/ |
| H A D | ufs-mediatek.txt | 6 To bind UFS PHY with UFS host controller, the controller node should
|
| /f-stack/dpdk/usertools/ |
| H A D | dpdk-telemetry-client.py | 55 self.socket.recv_fd.bind(self.file_path)
|
| /f-stack/dpdk/examples/ipsec-secgw/test/ |
| H A D | pkttest.py | 56 self.s.bind((self.name, 0, socket.PACKET_OTHERHOST))
|