| /OK3568_Linux_fs/kernel/net/rxrpc/ |
| H A D | call_object.c | 50 struct rxrpc_call *call = from_timer(call, t, timer); in rxrpc_call_timer_expired() local 52 _enter("%d", call->debug_id); in rxrpc_call_timer_expired() 54 if (call->state < RXRPC_CALL_COMPLETE) { in rxrpc_call_timer_expired() 55 trace_rxrpc_timer(call, rxrpc_timer_expired, jiffies); in rxrpc_call_timer_expired() 56 __rxrpc_queue_call(call); in rxrpc_call_timer_expired() 58 rxrpc_put_call(call, rxrpc_call_put); in rxrpc_call_timer_expired() 62 void rxrpc_reduce_call_timer(struct rxrpc_call *call, in rxrpc_reduce_call_timer() argument 67 if (rxrpc_try_get_call(call, rxrpc_call_got_timer)) { in rxrpc_reduce_call_timer() 68 trace_rxrpc_timer(call, why, now); in rxrpc_reduce_call_timer() 69 if (timer_reduce(&call->timer, expire_at)) in rxrpc_reduce_call_timer() [all …]
|
| H A D | call_event.c | 23 static void rxrpc_propose_ping(struct rxrpc_call *call, in rxrpc_propose_ping() argument 28 !test_and_set_bit(RXRPC_CALL_EV_PING, &call->events)) in rxrpc_propose_ping() 29 rxrpc_queue_call(call); in rxrpc_propose_ping() 34 if (time_before(ping_at, call->ping_at)) { in rxrpc_propose_ping() 35 WRITE_ONCE(call->ping_at, ping_at); in rxrpc_propose_ping() 36 rxrpc_reduce_call_timer(call, ping_at, now, in rxrpc_propose_ping() 45 static void __rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason, in __rxrpc_propose_ACK() argument 57 rxrpc_propose_ping(call, immediate, background); in __rxrpc_propose_ACK() 66 call->ackr_reason, rxrpc_ack_priority[call->ackr_reason]); in __rxrpc_propose_ACK() 67 if (ack_reason == call->ackr_reason) { in __rxrpc_propose_ACK() [all …]
|
| H A D | recvmsg.c | 23 void rxrpc_notify_socket(struct rxrpc_call *call) in rxrpc_notify_socket() argument 28 _enter("%d", call->debug_id); in rxrpc_notify_socket() 30 if (!list_empty(&call->recvmsg_link)) in rxrpc_notify_socket() 35 rx = rcu_dereference(call->socket); in rxrpc_notify_socket() 38 if (call->notify_rx) { in rxrpc_notify_socket() 39 spin_lock_bh(&call->notify_lock); in rxrpc_notify_socket() 40 call->notify_rx(sk, call, call->user_call_ID); in rxrpc_notify_socket() 41 spin_unlock_bh(&call->notify_lock); in rxrpc_notify_socket() 44 if (list_empty(&call->recvmsg_link)) { in rxrpc_notify_socket() 45 rxrpc_get_call(call, rxrpc_call_got); in rxrpc_notify_socket() [all …]
|
| H A D | input.c | 27 struct rxrpc_call *call, rxrpc_seq_t seq) in rxrpc_proto_abort() argument 29 if (rxrpc_abort_call(why, call, seq, RX_PROTOCOL_ERROR, -EBADMSG)) { in rxrpc_proto_abort() 30 set_bit(RXRPC_CALL_EV_ABORT, &call->events); in rxrpc_proto_abort() 31 rxrpc_queue_call(call); in rxrpc_proto_abort() 38 static void rxrpc_congestion_management(struct rxrpc_call *call, in rxrpc_congestion_management() argument 44 unsigned int cumulative_acks = call->cong_cumul_acks; in rxrpc_congestion_management() 45 unsigned int cwnd = call->cong_cwnd; in rxrpc_congestion_management() 49 (call->tx_top - call->tx_hard_ack) - summary->nr_acks; in rxrpc_congestion_management() 51 if (test_and_clear_bit(RXRPC_CALL_RETRANS_TIMEOUT, &call->flags)) { in rxrpc_congestion_management() 53 call->cong_ssthresh = max_t(unsigned int, in rxrpc_congestion_management() [all …]
|
| H A D | sendmsg.c | 23 static bool rxrpc_check_tx_space(struct rxrpc_call *call, rxrpc_seq_t *_tx_win) in rxrpc_check_tx_space() argument 26 min_t(unsigned int, call->tx_winsize, in rxrpc_check_tx_space() 27 call->cong_cwnd + call->cong_extra); in rxrpc_check_tx_space() 28 rxrpc_seq_t tx_win = READ_ONCE(call->tx_hard_ack); in rxrpc_check_tx_space() 32 return call->tx_top - tx_win < win_size; in rxrpc_check_tx_space() 39 struct rxrpc_call *call, in rxrpc_wait_for_tx_window_intr() argument 44 if (rxrpc_check_tx_space(call, NULL)) in rxrpc_wait_for_tx_window_intr() 47 if (call->state >= RXRPC_CALL_COMPLETE) in rxrpc_wait_for_tx_window_intr() 48 return call->error; in rxrpc_wait_for_tx_window_intr() 53 trace_rxrpc_transmit(call, rxrpc_transmit_wait); in rxrpc_wait_for_tx_window_intr() [all …]
|
| H A D | output.c | 36 static void rxrpc_tx_backoff(struct rxrpc_call *call, int ret) in rxrpc_tx_backoff() argument 39 u16 tx_backoff = READ_ONCE(call->tx_backoff); in rxrpc_tx_backoff() 42 WRITE_ONCE(call->tx_backoff, tx_backoff + 1); in rxrpc_tx_backoff() 44 WRITE_ONCE(call->tx_backoff, 0); in rxrpc_tx_backoff() 56 static void rxrpc_set_keepalive(struct rxrpc_call *call) in rxrpc_set_keepalive() argument 58 unsigned long now = jiffies, keepalive_at = call->next_rx_timo / 6; in rxrpc_set_keepalive() 61 WRITE_ONCE(call->keepalive_at, keepalive_at); in rxrpc_set_keepalive() 62 rxrpc_reduce_call_timer(call, keepalive_at, now, in rxrpc_set_keepalive() 70 struct rxrpc_call *call, in rxrpc_fill_out_ack() argument 83 tmp = atomic_xchg(&call->ackr_nr_unacked, 0); in rxrpc_fill_out_ack() [all …]
|
| H A D | call_accept.c | 25 static void rxrpc_dummy_notify(struct sock *sk, struct rxrpc_call *call, in rxrpc_dummy_notify() argument 42 struct rxrpc_call *call, *xcall; in rxrpc_service_prealloc_one() local 100 call = rxrpc_alloc_call(rx, gfp, debug_id); in rxrpc_service_prealloc_one() 101 if (!call) in rxrpc_service_prealloc_one() 103 call->flags |= (1 << RXRPC_CALL_IS_SERVICE); in rxrpc_service_prealloc_one() 104 call->state = RXRPC_CALL_SERVER_PREALLOC; in rxrpc_service_prealloc_one() 106 trace_rxrpc_call(call->debug_id, rxrpc_call_new_service, in rxrpc_service_prealloc_one() 107 refcount_read(&call->ref), in rxrpc_service_prealloc_one() 126 call->user_call_ID = user_call_ID; in rxrpc_service_prealloc_one() 127 call->notify_rx = notify_rx; in rxrpc_service_prealloc_one() [all …]
|
| /OK3568_Linux_fs/kernel/fs/afs/ |
| H A D | cmservice.c | 106 bool afs_cm_incoming_call(struct afs_call *call) in afs_cm_incoming_call() argument 108 _enter("{%u, CB.OP %u}", call->service_id, call->operation_ID); in afs_cm_incoming_call() 110 switch (call->operation_ID) { in afs_cm_incoming_call() 112 call->type = &afs_SRXCBCallBack; in afs_cm_incoming_call() 115 call->type = &afs_SRXCBInitCallBackState; in afs_cm_incoming_call() 118 call->type = &afs_SRXCBInitCallBackState3; in afs_cm_incoming_call() 121 call->type = &afs_SRXCBProbe; in afs_cm_incoming_call() 124 call->type = &afs_SRXCBProbeUuid; in afs_cm_incoming_call() 127 call->type = &afs_SRXCBTellMeAboutYourself; in afs_cm_incoming_call() 130 if (call->service_id != YFS_CM_SERVICE) in afs_cm_incoming_call() [all …]
|
| H A D | rxrpc.c | 138 struct afs_call *call; in afs_alloc_call() local 141 call = kzalloc(sizeof(*call), gfp); in afs_alloc_call() 142 if (!call) in afs_alloc_call() 145 call->type = type; in afs_alloc_call() 146 call->net = net; in afs_alloc_call() 147 call->debug_id = atomic_inc_return(&rxrpc_debug_id); in afs_alloc_call() 148 atomic_set(&call->usage, 1); in afs_alloc_call() 149 INIT_WORK(&call->async_work, afs_process_async_call); in afs_alloc_call() 150 init_waitqueue_head(&call->waitq); in afs_alloc_call() 151 spin_lock_init(&call->state_lock); in afs_alloc_call() [all …]
|
| H A D | vlclient.c | 17 static int afs_deliver_vl_get_entry_by_name_u(struct afs_call *call) in afs_deliver_vl_get_entry_by_name_u() argument 27 ret = afs_transfer_reply(call); in afs_deliver_vl_get_entry_by_name_u() 32 uvldb = call->buffer; in afs_deliver_vl_get_entry_by_name_u() 33 entry = call->ret_vldb; in afs_deliver_vl_get_entry_by_name_u() 109 static void afs_destroy_vl_get_entry_by_name_u(struct afs_call *call) in afs_destroy_vl_get_entry_by_name_u() argument 111 kfree(call->ret_vldb); in afs_destroy_vl_get_entry_by_name_u() 112 afs_flat_call_destructor(call); in afs_destroy_vl_get_entry_by_name_u() 134 struct afs_call *call; in afs_vl_get_entry_by_name_u() local 148 call = afs_alloc_flat_call(net, &afs_RXVLGetEntryByNameU, reqsz, in afs_vl_get_entry_by_name_u() 150 if (!call) { in afs_vl_get_entry_by_name_u() [all …]
|
| H A D | yfsclient.c | 145 static void yfs_check_req(struct afs_call *call, __be32 *bp) in yfs_check_req() argument 147 size_t len = (void *)bp - call->request; in yfs_check_req() 149 if (len > call->request_size) in yfs_check_req() 151 call->type->name, len, call->request_size); in yfs_check_req() 152 else if (len < call->request_size) in yfs_check_req() 154 call->type->name, len, call->request_size); in yfs_check_req() 181 struct afs_call *call, in xdr_decode_YFSFetchStatus() argument 227 afs_protocol_error(call, afs_eproto_bad_status); in xdr_decode_YFSFetchStatus() 235 struct afs_call *call, in xdr_decode_YFSCallBack() argument 242 cb_expiry = ktime_add(call->issue_time, xdr_to_u64(x->expiration_time) * 100); in xdr_decode_YFSCallBack() [all …]
|
| H A D | fsclient.c | 54 struct afs_call *call, in xdr_decode_AFSFetchStatus() argument 59 bool inline_error = (call->operation_ID == afs_FS_InlineBulkStatus); in xdr_decode_AFSFetchStatus() 127 afs_protocol_error(call, afs_eproto_bad_status); in xdr_decode_AFSFetchStatus() 131 static time64_t xdr_decode_expiry(struct afs_call *call, u32 expiry) in xdr_decode_expiry() argument 133 return ktime_divns(call->issue_time, NSEC_PER_SEC) + expiry; in xdr_decode_expiry() 137 struct afs_call *call, in xdr_decode_AFSCallBack() argument 144 cb->expires_at = xdr_decode_expiry(call, ntohl(*bp++)); in xdr_decode_AFSCallBack() 237 static int afs_deliver_fs_fetch_status(struct afs_call *call) in afs_deliver_fs_fetch_status() argument 239 struct afs_operation *op = call->op; in afs_deliver_fs_fetch_status() 244 ret = afs_transfer_reply(call); in afs_deliver_fs_fetch_status() [all …]
|
| /OK3568_Linux_fs/buildroot/package/uclibc/ |
| H A D | uclibc.mk | 26 UCLIBC_CONFIG_FILE = $(call qstrip,$(BR2_UCLIBC_CONFIG)) 31 UCLIBC_KCONFIG_FRAGMENT_FILES = $(call qstrip,$(BR2_UCLIBC_CONFIG_FRAGMENT_FILES)) 44 UCLIBC_TARGET_ARCH = $(call qstrip,$(BR2_UCLIBC_TARGET_ARCH)) 46 UCLIBC_GENERATE_LOCALES = $(call qstrip,$(BR2_GENERATE_LOCALE)) 61 $(call KCONFIG_ENABLE_OPT,UCLIBC_FORMAT_FLAT) 62 $(call KCONFIG_DISABLE_OPT,UCLIBC_FORMAT_FLAT_SEP_DATA) 63 $(call KCONFIG_DISABLE_OPT,UCLIBC_FORMAT_SHARED_FLAT) 64 $(call KCONFIG_DISABLE_OPT,UCLIBC_FORMAT_FDPIC_ELF) 69 $(call KCONFIG_DISABLE_OPT,UCLIBC_FORMAT_FLAT) 70 $(call KCONFIG_DISABLE_OPT,UCLIBC_FORMAT_FLAT_SEP_DATA) [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/phoenix/core/detail/cpp03/preprocessed/ |
| H A D | assign_50.hpp | 9 …call< proto::_child_c< 0>(proto::_state) > ) > > , proto::or_< proto::when< proto::nary_expr<proto…
|
| H A D | assign_40.hpp | 9 …call< proto::_child_c< 0>(proto::_state) > ) > > , proto::or_< proto::when< proto::nary_expr<proto…
|
| H A D | assign_30.hpp | 9 …call< proto::_child_c< 0>(proto::_state) > ) > > , proto::or_< proto::when< proto::nary_expr<proto…
|
| H A D | assign_20.hpp | 9 …call< proto::_child_c< 0>(proto::_state) > ) > > , proto::or_< proto::when< proto::nary_expr<proto…
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v1/ |
| H A D | Makefile | 131 $(call patch-xalan,TEE.xml,adbg_case_declare.xsl,adbg_case_declare.h) 132 $(call patch-xalan,TEE.xml,adbg_entry_declare.xsl,adbg_entry_declare.h) 133 $(call patch-xalan,TEE.xml,TEE.xsl,xtest_7000_gp.c) 134 $(call patch-xalan,TEE_DataStorage_API.xml,TEE_DataStorage_API.xsl,xtest_7500.c) 135 $(call patch-xalan,TEE_Internal_API.xml,TEE_Internal_API.xsl,xtest_8000.c) 136 $(call patch-xalan,TEE_TimeArithm_API.xml,TEE_TimeArithm_API.xsl,xtest_8500.c) 137 $(call patch-xalan,TEE_Crypto_API.xml,TEE_Crypto_API.xsl,xtest_9000.c) 143 $(call patch-file,host/xtest/xtest_9000.c,${CFG_GP_XSL_PACKAGE_PATH}/host/xtest/xtest_9000.c.patch) 148 …$(call patch-cp-ta,TTAs/TTA_Arithmetical/TTA_Arithmetical/code_files,TTAs/TTA_Arithmetical/code_fi… 149 $(call patch-cp-ta,TTAs/TTA_DS/TTA_DS/code_files,TTAs/TTA_DS/code_files,GP_TTA_DS) [all …]
|
| /OK3568_Linux_fs/buildroot/package/docker-engine/ |
| H A D | docker-engine.mk | 8 DOCKER_ENGINE_SITE = $(call github,moby,moby,v$(DOCKER_ENGINE_VERSION)) 85 $(call KCONFIG_ENABLE_OPT,CONFIG_BTRFS_FS) 86 $(call KCONFIG_ENABLE_OPT,CONFIG_BTRFS_FS_POSIX_ACL) 92 $(call KCONFIG_ENABLE_OPT,CONFIG_MD) 93 $(call KCONFIG_ENABLE_OPT,CONFIG_BLK_DEV_DM) 94 $(call KCONFIG_ENABLE_OPT,CONFIG_MD_THIN_PROVISIONING) 100 $(call KCONFIG_ENABLE_OPT,CONFIG_POSIX_MQUEUE) 101 $(call KCONFIG_ENABLE_OPT,CONFIG_CGROUPS) 102 $(call KCONFIG_ENABLE_OPT,CONFIG_MEMCG) 103 $(call KCONFIG_ENABLE_OPT,CONFIG_CGROUP_SCHED) [all …]
|
| /OK3568_Linux_fs/buildroot/package/ |
| H A D | pkg-download.mk | 11 export WGET := $(call qstrip,$(BR2_WGET)) 12 export SVN := $(call qstrip,$(BR2_SVN)) 13 export CVS := $(call qstrip,$(BR2_CVS)) 14 export BZR := $(call qstrip,$(BR2_BZR)) 15 export GIT := $(call qstrip,$(BR2_GIT)) 16 export HG := $(call qstrip,$(BR2_HG)) 17 export SCP := $(call qstrip,$(BR2_SCP)) 18 export LOCALFILES := $(call qstrip,$(BR2_LOCALFILES)) 29 DL_DIR ?= $(call qstrip,$(BR2_DL_DIR)) 48 geturischeme = $(firstword $(subst ://, ,$(call qstrip,$(1)))) [all …]
|
| H A D | pkg-generic.mk | 38 $(foreach hook,$(GLOBAL_INSTRUMENTATION_HOOKS),$(call $(hook),start,$(1),$($(PKG)_NAME))$(sep)) 44 $(foreach hook,$(GLOBAL_INSTRUMENTATION_HOOKS),$(call $(hook),end,$(1),$($(PKG)_NAME))$(sep)) 75 $(if $(filter end,$(1)),$(call step_check_build_dir_one,$(3),$(STAGING_DIR)/$(O)))) 77 $(if $(filter end,$(1)),$(call step_check_build_dir_one,$(3),$(TARGET_DIR)/$(O)))) 106 @$(call log_commands,$(1),$(2)) 107 +$(foreach cmd,$(2),$(call $(cmd))$(sep)) 188 $(call remove-conflicting-useless-files,$(HOST_DIR)) 191 $(call remove-conflicting-useless-files,$(STAGING_DIR)) 194 $(call remove-conflicting-useless-files,$(TARGET_DIR)) 203 @$(call step_start,download) [all …]
|
| /OK3568_Linux_fs/kernel/include/trace/events/ |
| H A D | rxrpc.h | 606 __field(unsigned int, call ) 614 __entry->call = call_debug_id; 622 __entry->call, 735 TP_PROTO(struct rxrpc_call *call), 737 TP_ARGS(call), 740 __field(unsigned int, call ) 747 __entry->call = call->debug_id; 748 __entry->compl = call->completion; 749 __entry->error = call->error; 750 __entry->abort_code = call->abort_code; [all …]
|
| /OK3568_Linux_fs/buildroot/package/balena-engine/ |
| H A D | balena-engine.mk | 8 BALENA_ENGINE_SITE = $(call github,balena-os,balena-engine,v$(BALENA_ENGINE_VERSION)) 65 $(call KCONFIG_ENABLE_OPT,CONFIG_POSIX_MQUEUE) 66 $(call KCONFIG_ENABLE_OPT,CONFIG_CGROUPS) 67 $(call KCONFIG_ENABLE_OPT,CONFIG_MEMCG) 68 $(call KCONFIG_ENABLE_OPT,CONFIG_CGROUP_SCHED) 69 $(call KCONFIG_ENABLE_OPT,CONFIG_CGROUP_FREEZER) 70 $(call KCONFIG_ENABLE_OPT,CONFIG_CPUSETS) 71 $(call KCONFIG_ENABLE_OPT,CONFIG_CGROUP_DEVICE) 72 $(call KCONFIG_ENABLE_OPT,CONFIG_CGROUP_CPUACCT) 73 $(call KCONFIG_ENABLE_OPT,CONFIG_NAMESPACES) [all …]
|
| /OK3568_Linux_fs/kernel/tools/ |
| H A D | Makefile | 62 $(call descend,power/$@) 65 $(call descend,power/$@) 68 $(call descend,$@) 71 $(call descend,$@) 74 $(call descend,lib/lockdep) 77 $(call descend,lib/api) 88 $(call descend,testing/$@) 91 $(call descend,power/x86/$@) 94 $(call descend,thermal/$@) 97 $(call descend,laptop/$@) [all …]
|
| /OK3568_Linux_fs/buildroot/package/busybox/ |
| H A D | busybox.mk | 115 BUSYBOX_CONFIG_FILE = $(call qstrip,$(BR2_PACKAGE_BUSYBOX_CONFIG)) 120 BUSYBOX_KCONFIG_FRAGMENT_FILES = $(call qstrip,$(BR2_PACKAGE_BUSYBOX_CONFIG_FRAGMENT_FILES)) 162 $(call KCONFIG_ENABLE_OPT,CONFIG_MDEV) 163 $(call KCONFIG_ENABLE_OPT,CONFIG_FEATURE_MDEV_CONF) 164 $(call KCONFIG_ENABLE_OPT,CONFIG_FEATURE_MDEV_EXEC) 165 $(call KCONFIG_ENABLE_OPT,CONFIG_FEATURE_MDEV_LOAD_FIRMWARE) 172 $(call KCONFIG_ENABLE_OPT,CONFIG_USE_BB_CRYPT_SHA) 178 $(call KCONFIG_DISABLE_OPT,CONFIG_NOMMU) 182 $(call KCONFIG_ENABLE_OPT,CONFIG_NOMMU) 183 $(call KCONFIG_DISABLE_OPT,CONFIG_SWAPON) [all …]
|