Home
last modified time | relevance | path

Searched refs:cps (Results 1 – 25 of 30) sorted by relevance

12

/linux/fs/nfs/
H A Dcallback_proc.c29 struct cb_process_state *cps) in nfs4_callback_getattr() argument
37 if (!cps->clp) /* Always set for v4.0. Set in cb_sequence for v4.1 */ in nfs4_callback_getattr()
44 rpc_peeraddr2str(cps->clp->cl_rpcclient, RPC_DISPLAY_ADDR)); in nfs4_callback_getattr()
46 inode = nfs_delegation_find_inode(cps->clp, &args->fh); in nfs4_callback_getattr()
50 trace_nfs4_cb_getattr(cps->clp, &args->fh, NULL, in nfs4_callback_getattr()
75 trace_nfs4_cb_getattr(cps->clp, &args->fh, inode, -ntohl(res->status)); in nfs4_callback_getattr()
83 struct cb_process_state *cps) in nfs4_callback_recall() argument
90 if (!cps->clp) /* Always set for v4.0. Set in cb_sequence for v4.1 */ in nfs4_callback_recall()
94 rpc_peeraddr2str(cps->clp->cl_rpcclient, RPC_DISPLAY_ADDR)); in nfs4_callback_recall()
97 inode = nfs_delegation_find_inode(cps->clp, &args->fh); in nfs4_callback_recall()
[all …]
H A Dcallback.h102 struct cb_process_state *cps);
123 struct cb_process_state *cps);
129 struct cb_process_state *cps);
146 struct cb_process_state *cps);
161 struct cb_process_state *cps);
170 struct cb_process_state *cps);
182 struct cb_process_state *cps);
186 struct cb_process_state *cps);
188 struct cb_process_state *cps);
H A Dcallback_xdr.c841 static void nfs4_cb_free_slot(struct cb_process_state *cps) in nfs4_cb_free_slot() argument
843 if (cps->slot) { in nfs4_cb_free_slot()
844 nfs4_callback_free_slot(cps->clp->cl_session, cps->slot); in nfs4_cb_free_slot()
845 cps->slot = NULL; in nfs4_cb_free_slot()
857 static void nfs4_cb_free_slot(struct cb_process_state *cps) in nfs4_cb_free_slot() argument
901 struct cb_process_state *cps) in process_op() argument
914 switch (cps->minorversion) { in process_op()
933 if (cps->drc_status) { in process_op()
934 status = cps->drc_status; in process_op()
944 cps); in process_op()
[all …]
/linux/arch/arm/common/
H A Dsecure_cntvoff.S20 cps #MON_MODE
30 cps #SVC_MODE
/linux/arch/mips/kernel/
H A DMakefile61 obj-$(CONFIG_MIPS_CPS) += smp-cps.o cps-vec.o
62 obj-$(CONFIG_MIPS_CPS_NS16550) += cps-vec-ns16550.o
112 obj-$(CONFIG_MIPS_CPS_PM) += pm-cps.o
/linux/net/netfilter/ipvs/
H A Dip_vs_est.c125 e->cps += ((s64)rate - (s64)e->cps) >> 2; in ip_vs_chain_estimation()
910 est->cps = 0; in ip_vs_zero_estimator()
922 dst->cps = (e->cps + 0x1FF) >> 10; in ip_vs_read_estimator()
H A Dip_vs_ctl.c895 dst->cps = (u32)src->cps; in ip_vs_export_stats_user()
2505 (unsigned long long)show.cps, in ip_vs_stats_show()
2561 kstats.cps, in ip_vs_stats_percpu_show()
3262 nla_put_u32(skb, IPVS_STATS_ATTR_CPS, (u32)kstats->cps) || in ip_vs_genl_fill_stats()
3295 nla_put_u64_64bit(skb, IPVS_STATS_ATTR_CPS, kstats->cps, in ip_vs_genl_fill_stats64()
/linux/include/sound/sof/
H A Dext_manifest4.h111 uint32_t cps; /* cycles per second */ member
/linux/drivers/cpuidle/
H A DMakefile32 obj-$(CONFIG_MIPS_CPS_CPUIDLE) += cpuidle-cps.o
/linux/drivers/hwmon/
H A Dhp-wmi-sensors.c420 unsigned int cps; in convert_raw_wmi_string() local
428 cps = *src / sizeof(*src); in convert_raw_wmi_string()
429 while (cps && !src[cps]) in convert_raw_wmi_string()
430 cps--; in convert_raw_wmi_string()
433 len = min(cps * 3, HP_WMI_MAX_STR_SIZE - 1); in convert_raw_wmi_string()
439 i = utf16s_to_utf8s(++src, cps, UTF16_LITTLE_ENDIAN, dst, len); in convert_raw_wmi_string()
/linux/arch/mips/include/asm/
H A Dmips-cpc.h8 # error Please include asm/mips-cps.h rather than asm/mips-cpc.h
H A Dmips-cm.h8 # error Please include asm/mips-cps.h rather than asm/mips-cm.h
H A Dmips-gic.h8 # error Please include asm/mips-cps.h rather than asm/mips-gic.h
/linux/fs/nfsd/
H A Dnfs4state.c88 static void _free_cpntf_state_locked(struct nfsd_net *nn, struct nfs4_cpntf_state *cps);
1003 struct nfs4_cpntf_state *cps; in nfs4_alloc_init_cpntf_state() local
1005 cps = kzalloc(sizeof(struct nfs4_cpntf_state), GFP_KERNEL); in nfs4_alloc_init_cpntf_state()
1006 if (!cps) in nfs4_alloc_init_cpntf_state()
1008 cps->cpntf_time = ktime_get_boottime_seconds(); in nfs4_alloc_init_cpntf_state()
1009 refcount_set(&cps->cp_stateid.cs_count, 1); in nfs4_alloc_init_cpntf_state()
1010 if (!nfs4_init_cp_state(nn, &cps->cp_stateid, NFS4_COPYNOTIFY_STID)) in nfs4_alloc_init_cpntf_state()
1013 list_add(&cps->cp_list, &p_stid->sc_cp_list); in nfs4_alloc_init_cpntf_state()
1015 return cps; in nfs4_alloc_init_cpntf_state()
1017 kfree(cps); in nfs4_alloc_init_cpntf_state()
[all …]
H A Dstate.h751 struct nfs4_cpntf_state *cps);
754 struct nfs4_cpntf_state **cps);
H A Dnfs4proc.c1947 struct nfs4_cpntf_state *cps; in nfsd4_copy_notify() local
1962 cps = nfs4_alloc_init_cpntf_state(nn, stid); in nfsd4_copy_notify()
1963 if (!cps) in nfsd4_copy_notify()
1965 memcpy(&cn->cpn_cnr_stateid, &cps->cp_stateid.cs_stid, sizeof(stateid_t)); in nfsd4_copy_notify()
1966 memcpy(&cps->cp_p_stateid, &stid->sc_stateid, sizeof(stateid_t)); in nfsd4_copy_notify()
1967 memcpy(&cps->cp_p_clid, &clp->cl_clientid, sizeof(clientid_t)); in nfsd4_copy_notify()
1977 nfs4_put_cpntf_state(nn, cps); in nfsd4_copy_notify()
/linux/fs/hpfs/
H A Dmap.c57 unsigned char *hpfs_load_code_page(struct super_block *s, secno cps) in hpfs_load_code_page() argument
66 struct code_page_directory *cp = hpfs_map_sector(s, cps, &bh, 0); in hpfs_load_code_page()
/linux/arch/arm64/boot/dts/marvell/
H A Darmada-80x0.dtsi78 compatible = "marvell,armada-8k-cps-pinctrl";
/linux/drivers/atm/
H A Didt77252.c729 u32 cps = vc->estimator->maxcps; in push_on_scq() local
731 vc->estimator->cps = cps; in push_on_scq()
732 vc->estimator->avcps = cps << 5; in push_on_scq()
2077 u32 rate, cps; in idt77252_est_timer() local
2089 est->cps = (est->avcps + 0x1f) >> 5; in idt77252_est_timer()
2091 cps = est->cps; in idt77252_est_timer()
2092 if (cps < (est->maxcps >> 4)) in idt77252_est_timer()
2093 cps = est->maxcps >> 4; in idt77252_est_timer()
2095 lacr = idt77252_rate_logindex(card, cps); in idt77252_est_timer()
2120 est->cps = est->maxcps; in idt77252_init_est()
[all …]
H A Diphase.c342 u32 exp, mantissa, cps;
349 cps = (1 << M_BITS) | mantissa;
351 cps = cps;
353 cps <<= (exp - M_BITS);
355 cps >>= (M_BITS - exp);
356 return cps;
H A Didt77252.h196 u32 cps; member
/linux/include/uapi/linux/
H A Dip_vs.h184 __u32 cps; /* current connection rate */ member
/linux/drivers/gpu/drm/amd/pm/legacy-dpm/
H A Dkv_dpm.c3221 struct amdgpu_ps *cps = (struct amdgpu_ps *)current_ps; in kv_check_state_equal() local
3225 if (adev == NULL || cps == NULL || rps == NULL || equal == NULL) in kv_check_state_equal()
3228 kv_cps = kv_get_ps(cps); in kv_check_state_equal()
3250 *equal = ((cps->vclk == rps->vclk) && (cps->dclk == rps->dclk)); in kv_check_state_equal()
3251 *equal &= ((cps->evclk == rps->evclk) && (cps->ecclk == rps->ecclk)); in kv_check_state_equal()
H A Dlegacy_dpm.c47 #define amdgpu_dpm_check_state_equal(adev, cps, rps, equal) \ argument
48 …((adev)->powerplay.pp_funcs->check_state_equal((adev)->powerplay.pp_handle, (cps), (rps), (equal)))
/linux/drivers/block/drbd/
H A Ddrbd_worker.c503 int cps; /* correction per invocation of drbd_rs_controller() */ in drbd_rs_controller() local
524 cps = correction / steps; in drbd_rs_controller()
525 fifo_add_val(plan, cps); in drbd_rs_controller()
526 plan->total += cps * steps; in drbd_rs_controller()

12