/Linux-v5.10/drivers/tee/optee/ |
D | supp.c | 22 void optee_supp_init(struct optee_supp *supp) in optee_supp_init() argument 24 memset(supp, 0, sizeof(*supp)); in optee_supp_init() 25 mutex_init(&supp->mutex); in optee_supp_init() 26 init_completion(&supp->reqs_c); in optee_supp_init() 27 idr_init(&supp->idr); in optee_supp_init() 28 INIT_LIST_HEAD(&supp->reqs); in optee_supp_init() 29 supp->req_id = -1; in optee_supp_init() 32 void optee_supp_uninit(struct optee_supp *supp) in optee_supp_uninit() argument 34 mutex_destroy(&supp->mutex); in optee_supp_uninit() 35 idr_destroy(&supp->idr); in optee_supp_uninit() [all …]
|
D | optee_private.h | 92 struct optee_supp supp; member 142 void optee_supp_init(struct optee_supp *supp); 143 void optee_supp_uninit(struct optee_supp *supp); 144 void optee_supp_release(struct optee_supp *supp);
|
D | core.c | 242 mutex_lock(&optee->supp.mutex); in optee_open() 243 if (!optee->supp.ctx) { in optee_open() 245 optee->supp.ctx = ctx; in optee_open() 247 mutex_unlock(&optee->supp.mutex); in optee_open() 327 optee_supp_release(&optee->supp); in optee_release() 607 optee_supp_uninit(&optee->supp); in optee_remove() 695 optee_supp_init(&optee->supp); in optee_probe()
|
D | Makefile | 6 optee-objs += supp.o
|
D | rpc.c | 278 mutex_lock(&optee->supp.mutex); in cmd_alloc_suppl() 280 shm = tee_shm_get_from_id(optee->supp.ctx, param.u.value.c); in cmd_alloc_suppl() 281 mutex_unlock(&optee->supp.mutex); in cmd_alloc_suppl()
|
/Linux-v5.10/drivers/net/wireless/intel/iwlwifi/mvm/ |
D | rs-fw.c | 102 u8 supp = 0; in rs_fw_sgi_cw_support() local 108 supp |= BIT(IWL_TLC_MNG_CH_WIDTH_20MHZ); in rs_fw_sgi_cw_support() 110 supp |= BIT(IWL_TLC_MNG_CH_WIDTH_40MHZ); in rs_fw_sgi_cw_support() 112 supp |= BIT(IWL_TLC_MNG_CH_WIDTH_80MHZ); in rs_fw_sgi_cw_support() 114 supp |= BIT(IWL_TLC_MNG_CH_WIDTH_160MHZ); in rs_fw_sgi_cw_support() 116 return supp; in rs_fw_sgi_cw_support() 196 u16 supp; in rs_fw_vht_set_enabled_rates() local 215 supp = BIT(highest_mcs + 1) - 1; in rs_fw_vht_set_enabled_rates() 217 supp &= ~BIT(IWL_TLC_MNG_HT_RATE_MCS9); in rs_fw_vht_set_enabled_rates() 219 cmd->ht_rates[i][IWL_TLC_HT_BW_NONE_160] = cpu_to_le16(supp); in rs_fw_vht_set_enabled_rates() [all …]
|
D | rs.c | 2975 unsigned long supp; /* must be unsigned long for for_each_set_bit */ in rs_drv_rate_init() local 3007 supp = sta->supp_rates[sband->band]; in rs_drv_rate_init() 3009 for_each_set_bit(i, &supp, BITS_PER_LONG) in rs_drv_rate_init()
|
/Linux-v5.10/net/tipc/ |
D | bcast.h | 89 void tipc_bcast_toggle_rcast(struct net *net, bool supp);
|
D | bcast.c | 91 void tipc_bcast_toggle_rcast(struct net *net, bool supp) in tipc_bcast_toggle_rcast() argument 93 tipc_bc_base(net)->rcast_support = supp; in tipc_bcast_toggle_rcast()
|
D | bearer.c | 486 bool supp = false; in tipc_bearer_bcast_support() local 492 supp = (b->bcast_addr.broadcast == TIPC_BROADCAST_SUPPORT); in tipc_bearer_bcast_support() 494 return supp; in tipc_bearer_bcast_support()
|
/Linux-v5.10/fs/nfsd/ |
D | nfs4xdr.c | 2803 u32 supp[3]; in nfsd4_encode_fattr() local 2805 memcpy(supp, nfsd_suppattrs[minorversion], sizeof(supp)); in nfsd4_encode_fattr() 2808 supp[0] &= ~FATTR4_WORD0_ACL; in nfsd4_encode_fattr() 2810 supp[2] &= ~FATTR4_WORD2_SECURITY_LABEL; in nfsd4_encode_fattr() 2811 if (!supp[2]) { in nfsd4_encode_fattr() 2816 *p++ = cpu_to_be32(supp[0]); in nfsd4_encode_fattr() 2817 *p++ = cpu_to_be32(supp[1]); in nfsd4_encode_fattr() 2823 *p++ = cpu_to_be32(supp[0]); in nfsd4_encode_fattr() 2824 *p++ = cpu_to_be32(supp[1]); in nfsd4_encode_fattr() 2825 *p++ = cpu_to_be32(supp[2]); in nfsd4_encode_fattr() [all …]
|
/Linux-v5.10/drivers/net/wireless/quantenna/qtnfmac/ |
D | commands.c | 994 struct wiphy_wowlan_support *supp; in qtnf_parse_wowlan_info() local 996 supp = kzalloc(sizeof(*supp), GFP_KERNEL); in qtnf_parse_wowlan_info() 997 if (!supp) in qtnf_parse_wowlan_info() 1004 supp->flags = WIPHY_WOWLAN_MAGIC_PKT | WIPHY_WOWLAN_DISCONNECT; in qtnf_parse_wowlan_info() 1005 supp->n_patterns = le32_to_cpu(data1->n_patterns); in qtnf_parse_wowlan_info() 1006 supp->pattern_max_len = le32_to_cpu(data1->pattern_max_len); in qtnf_parse_wowlan_info() 1007 supp->pattern_min_len = le32_to_cpu(data1->pattern_min_len); in qtnf_parse_wowlan_info() 1009 mac_info->wowlan = supp; in qtnf_parse_wowlan_info() 1014 kfree(supp); in qtnf_parse_wowlan_info()
|
/Linux-v5.10/net/wireless/ |
D | util.c | 2108 int supp = (map >> (2 * i)) & 3; in ieee80211_get_vht_max_nss() local 2110 if (supp == 3) in ieee80211_get_vht_max_nss() 2113 if (supp >= mcs_encoding) { in ieee80211_get_vht_max_nss()
|
D | nl80211.c | 2057 struct nlattr *supp; in nl80211_put_tid_config_support() local 2063 supp = nla_nest_start(msg, NL80211_ATTR_TID_CONFIG); in nl80211_put_tid_config_support() 2064 if (!supp) in nl80211_put_tid_config_support() 2087 nla_nest_end(msg, supp); in nl80211_put_tid_config_support() 2091 nla_nest_cancel(msg, supp); in nl80211_put_tid_config_support()
|
/Linux-v5.10/drivers/scsi/ |
D | scsi_debug.c | 1972 u8 reporting_opts, req_opcode, sdeb_i, supp; in resp_rsup_opcodes() local 2052 supp = 1; in resp_rsup_opcodes() 2071 supp = 3; in resp_rsup_opcodes() 2079 supp = (k >= na) ? 1 : 3; in resp_rsup_opcodes() 2087 supp = (k >= na) ? 1 : 3; in resp_rsup_opcodes() 2089 supp = 3; in resp_rsup_opcodes() 2090 if (3 == supp) { in resp_rsup_opcodes() 2101 arr[1] = (rctd ? 0x80 : 0) | supp; in resp_rsup_opcodes()
|
/Linux-v5.10/drivers/net/wireless/intel/iwlwifi/dvm/ |
D | rs.c | 2775 unsigned long supp; /* must be unsigned long for for_each_set_bit */ in iwl_rs_rate_init() local 2806 supp = sta->supp_rates[sband->band]; in iwl_rs_rate_init() 2808 for_each_set_bit(i, &supp, BITS_PER_LONG) in iwl_rs_rate_init()
|
/Linux-v5.10/drivers/net/wireless/intel/ipw2x00/ |
D | ipw2200.h | 1214 struct ipw_rates supp; /**< software defined */ member
|
/Linux-v5.10/fs/nfs/ |
D | nfs4xdr.c | 4261 uint32_t supp, acc; in decode_access() local 4270 supp = be32_to_cpup(p++); in decode_access() 4272 *supported = supp; in decode_access()
|
/Linux-v5.10/Documentation/RCU/ |
D | RTFP.txt | 2384 http://www.rdrop.com/users/paulmck/RCU/urcu-supp-accepted.2011.08.30a.pdf 2665 http://www.rdrop.com/users/paulmck/RCU/urcu-supp-accepted.2011.08.30a.pdf
|
/Linux-v5.10/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
D | cfg80211.c | 6679 static __le16 brcmf_get_mcs_map(u32 nchain, enum ieee80211_vht_mcs_support supp) in brcmf_get_mcs_map() argument 6685 mcs_map = (mcs_map << 2) | supp; in brcmf_get_mcs_map()
|