| /OK3568_Linux_fs/kernel/net/core/ |
| H A D | sock_reuseport.c | 23 struct sock_reuseport *reuse; in reuseport_has_conns_set() local 29 reuse = rcu_dereference_protected(sk->sk_reuseport_cb, in reuseport_has_conns_set() 31 if (likely(reuse)) in reuseport_has_conns_set() 32 reuse->has_conns = 1; in reuseport_has_conns_set() 41 struct sock_reuseport *reuse = kzalloc(size, GFP_ATOMIC); in __reuseport_alloc() local 43 if (!reuse) in __reuseport_alloc() 46 reuse->max_socks = max_socks; in __reuseport_alloc() 48 RCU_INIT_POINTER(reuse->prog, NULL); in __reuseport_alloc() 49 return reuse; in __reuseport_alloc() 54 struct sock_reuseport *reuse; in reuseport_alloc() local [all …]
|
| /OK3568_Linux_fs/kernel/include/net/ |
| H A D | sock_reuseport.h | 43 struct sock_reuseport *reuse; in reuseport_has_conns() local 47 reuse = rcu_dereference(sk->sk_reuseport_cb); in reuseport_has_conns() 48 if (reuse && reuse->has_conns) in reuseport_has_conns()
|
| H A D | tcp.h | 499 struct sock_reuseport *reuse; in tcp_synq_overflow() local 501 reuse = rcu_dereference(sk->sk_reuseport_cb); in tcp_synq_overflow() 502 if (likely(reuse)) { in tcp_synq_overflow() 503 last_overflow = READ_ONCE(reuse->synq_overflow_ts); in tcp_synq_overflow() 506 WRITE_ONCE(reuse->synq_overflow_ts, now); in tcp_synq_overflow() 523 struct sock_reuseport *reuse; in tcp_synq_no_recent_overflow() local 525 reuse = rcu_dereference(sk->sk_reuseport_cb); in tcp_synq_no_recent_overflow() 526 if (likely(reuse)) { in tcp_synq_no_recent_overflow() 527 last_overflow = READ_ONCE(reuse->synq_overflow_ts); in tcp_synq_no_recent_overflow()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/ |
| H A D | test_sockmap_listen.c | 78 int prog_reuseport(struct sk_reuseport_md *reuse) in prog_reuseport() argument 85 err = bpf_sk_select_reuseport(reuse, &sock_map, &zero, 0); in prog_reuseport() 87 err = bpf_sk_select_reuseport(reuse, &sock_hash, &zero, 0); in prog_reuseport()
|
| H A D | test_tcpbpf_kern.c | 57 struct bpf_sock_ops *reuse = skops; in bpf_testcb() local 69 : [reuse] "+r"(reuse) in bpf_testcb()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-connectivity/dibbler/ |
| H A D | dibbler_git.bb | 17 PACKAGECONFIG ??= "debug bind-reuse resolvconf dns-update" 21 PACKAGECONFIG[bind-reuse] = "--enable-bind-reuse,,,"
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/ |
| H A D | vector.hpp | 387 pointer reuse = pointer(); in vector_alloc_holder() local 388 … m_start = this->allocation_command(allocate_new, initial_size, m_capacity = initial_size, reuse); in vector_alloc_holder() 400 pointer reuse = pointer(); in vector_alloc_holder() local 401 … m_start = this->allocation_command(allocate_new, initial_size, m_capacity = initial_size, reuse); in vector_alloc_holder() 434 pointer reuse = pointer(); in vector_alloc_holder() local 435 m_start = this->allocation_command(allocate_new, n, m_capacity = n, reuse); in vector_alloc_holder() 466 … size_type limit_size, size_type &prefer_in_recvd_out_size, pointer &reuse) in allocation_command() 469 …is->priv_allocation_command(alloc_version(), command, limit_size, prefer_in_recvd_out_size, reuse); in allocation_command() 477 pointer reuse = this->start(); in try_expand_fwd() local 478 bool const success = !!this->allocation_command(expand_fwd, new_cap, real_cap, reuse); in try_expand_fwd() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/staging/rtl8188eu/os_dep/ |
| H A D | usb_ops_linux.c | 362 precvbuf->reuse = true; in usb_read_port_complete() 374 precvbuf->reuse = true; in usb_read_port_complete() 385 precvbuf->reuse = false; in usb_read_port_complete() 412 precvbuf->reuse = true; in usb_read_port_complete() 448 if (!precvbuf->reuse || !precvbuf->pskb) { in usb_read_port() 451 precvbuf->reuse = true; in usb_read_port() 455 if (!precvbuf->reuse || !precvbuf->pskb) { in usb_read_port() 463 precvbuf->reuse = false; in usb_read_port() 502 precvbuf->reuse = true; in rtw_hal_inirp_deinit()
|
| /OK3568_Linux_fs/external/mpp/doc/design/ |
| H A D | 3.mpp_buffer.txt | 11 MppBufferGroup provides allocator service and buffer reuse ability. 18 unused list for later reuse. There is a good reason for doing so. When video
|
| /OK3568_Linux_fs/buildroot/package/ltp-testsuite/ |
| H A D | 0004-lapi-Create-if_addr.h-and-reuse-it-in-rtnetlink.h.patch | 4 Subject: [PATCH] lapi: Create if_addr.h and reuse it in rtnetlink.h 8 as it belongs there and reuse lapi/if_addr.h in lapi/rtnetlink.h just
|
| /OK3568_Linux_fs/kernel/kernel/bpf/ |
| H A D | reuseport_array.c | 254 struct sock_reuseport *reuse; in bpf_fd_reuseport_array_update_elem() local 304 reuse = rcu_dereference_protected(nsk->sk_reuseport_cb, in bpf_fd_reuseport_array_update_elem() 306 err = reuseport_array_update_check(array, nsk, osk, reuse, map_flags); in bpf_fd_reuseport_array_update_elem()
|
| /OK3568_Linux_fs/kernel/drivers/rpmsg/ |
| H A D | qcom_glink_native.c | 71 bool reuse; member 255 if (!intent->reuse) { in qcom_glink_channel_release() 487 bool reuse; in qcom_glink_rx_done_work() local 495 reuse = intent->reuse; in qcom_glink_rx_done_work() 497 cmd.id = reuse ? RPM_CMD_RX_DONE_W_REUSE : RPM_CMD_RX_DONE; in qcom_glink_rx_done_work() 502 if (!reuse) { in qcom_glink_rx_done_work() 523 if (!intent->reuse) { in qcom_glink_rx_done() 679 intent->reuse = reuseable; in qcom_glink_alloc_intent() 692 bool reuse) in qcom_glink_handle_rx_done() argument 717 if (!reuse) { in qcom_glink_handle_rx_done()
|
| /OK3568_Linux_fs/kernel/net/ipv4/ |
| H A D | inet_connection_sock.c | 138 bool reuse = sk->sk_reuse; in inet_csk_bind_conflict() local 154 if (reuse && sk2->sk_reuse && in inet_csk_bind_conflict() 303 bool reuse = sk->sk_reuse && sk->sk_state != TCP_LISTEN; in inet_csk_update_fastreuse() local 306 tb->fastreuse = reuse; in inet_csk_update_fastreuse() 320 if (!reuse) in inet_csk_update_fastreuse() 356 bool reuse = sk->sk_reuse && sk->sk_state != TCP_LISTEN; in inet_csk_get_port() local 391 if ((tb->fastreuse > 0 && reuse) || in inet_csk_get_port()
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/fpga/ |
| H A D | intro.rst | 17 seek out a solution that expands the framework for broad reuse. 19 * Generally, when adding code, think of the future. Plan for reuse.
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/mediatek/mt76/mt7915/ |
| H A D | Kconfig | 11 OFDMA, spatial reuse and dual carrier modulation.
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | kernel-artifact-names.bbclass | 3 # for recipes/bbclasses which need to reuse some of the kernel
|
| H A D | buildstats-summary.bbclass | 36 bb.note(" {0}: {1:.1f}% sstate reuse({2} setscene, {3} scratch)".format(
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/hci/ |
| H A D | phl_trx_def_pcie.h | 64 bool reuse; member
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/packagegroups/ |
| H A D | packagegroup-cross-canadian.bb | 22 # This will result in erroneous reuse of previous sstate packages. The following line
|
| /OK3568_Linux_fs/buildroot/package/qt5/qt5multimedia/ |
| H A D | 0005-qgstreamerplayersession-set-m_videoIdentity-drop-buf.patch | 8 bufferpool unable to reuse memory.
|
| /OK3568_Linux_fs/yocto/meta-qt5/classes/ |
| H A D | populate_sdk_qt5_base.bbclass | 1 # This allow reuse of Qt paths
|
| /OK3568_Linux_fs/u-boot/lib/efi_loader/ |
| H A D | Kconfig | 8 interfaces to a loaded EFI application, enabling it to reuse U-Boot's
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | armada-388.dtsi | 10 * SATA ports. So we can reuse the dtsi of the Armada 385, override the pinctrl
|
| /OK3568_Linux_fs/external/mpp/mpp/base/ |
| H A D | mpp_buffer_impl.cpp | 238 RK_U32 reuse, const char *caller) in put_buffer() argument 249 if (reuse) { in put_buffer() 501 RK_U32 reuse = 0; in mpp_buffer_ref_dec() local 505 reuse = (!group->is_misc && !buffer->discard); in mpp_buffer_ref_dec() 506 put_buffer(group, buffer, reuse, caller); in mpp_buffer_ref_dec()
|
| /OK3568_Linux_fs/kernel/include/xen/interface/io/ |
| H A D | pvcalls.h | 57 uint8_t reuse; member
|