Home
last modified time | relevance | path

Searched refs:old_ctx (Results 1 – 25 of 29) sorted by relevance

12

/linux/arch/mips/mm/
H A Dtlb-r3k.c42 unsigned long old_ctx; in local_flush_tlb_from() local
44 old_ctx = read_c0_entryhi() & cpu_asid_mask(&current_cpu_data); in local_flush_tlb_from()
52 write_c0_entryhi(old_ctx); in local_flush_tlb_from()
222 unsigned long old_ctx; in add_wired_entry() local
232 old_ctx = read_c0_entryhi() & asid_mask; in add_wired_entry()
238 write_c0_entryhi(old_ctx); in add_wired_entry()
H A Dtlb-r4k.c61 unsigned long old_ctx; in local_flush_tlb_all() local
66 old_ctx = read_c0_entryhi(); in local_flush_tlb_all()
103 write_c0_entryhi(old_ctx); in local_flush_tlb_all()
401 unsigned long old_ctx; in add_wired_entry()
409 old_ctx = read_c0_entryhi(); in add_wired_entry()
424 write_c0_entryhi(old_ctx); in add_wired_entry()
473 unsigned long old_ctx; in add_temporary_entry() local
478 old_ctx = read_c0_entryhi(); in add_temporary_entry()
497 write_c0_entryhi(old_ctx); in add_temporary_entry()
H A Dinit.c78 unsigned long old_ctx; in __kmap_pgprot() local
99 old_ctx = read_c0_entryhi(); in __kmap_pgprot()
120 write_c0_entryhi(old_ctx); in __kmap_pgprot()
141 unsigned long flags, old_ctx; in kunmap_coherent() local
144 old_ctx = read_c0_entryhi(); in kunmap_coherent()
154 write_c0_entryhi(old_ctx); in kunmap_coherent()
/linux/net/mac80211/
H A Dchan.c813 struct ieee80211_chanctx *old_ctx, in _ieee80211_change_chanctx() argument
852 ieee80211_chan_bw_change(local, old_ctx, false, true); in _ieee80211_change_chanctx()
892 ieee80211_chan_bw_change(local, old_ctx, false, false); in _ieee80211_change_chanctx()
900 struct ieee80211_chanctx *old_ctx, in ieee80211_change_chanctx() argument
903 _ieee80211_change_chanctx(local, ctx, old_ctx, chanreq, NULL); in ieee80211_change_chanctx()
1649 struct ieee80211_chanctx *old_ctx, *new_ctx; in ieee80211_link_use_reserved_reassign() local
1658 old_ctx = ieee80211_link_get_chanctx(link); in ieee80211_link_use_reserved_reassign()
1666 if (WARN_ON(!old_ctx)) in ieee80211_link_use_reserved_reassign()
1684 _ieee80211_change_chanctx(local, new_ctx, old_ctx, chanreq, link); in ieee80211_link_use_reserved_reassign()
1687 vif_chsw[0].old_ctx = &old_ctx->conf; in ieee80211_link_use_reserved_reassign()
[all …]
/linux/security/selinux/
H A Dxfrm.c290 int selinux_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, in selinux_xfrm_policy_clone() argument
295 if (!old_ctx) in selinux_xfrm_policy_clone()
298 new_ctx = kmemdup(old_ctx, sizeof(*old_ctx) + old_ctx->ctx_len, in selinux_xfrm_policy_clone()
/linux/drivers/net/wireless/mediatek/mt76/
H A Dchannel.c190 struct mt76_chanctx *old_ctx, *new_ctx; in mt76_switch_vif_chanctx() local
224 old_ctx = (struct mt76_chanctx *)v->old_ctx->drv_priv; in mt76_switch_vif_chanctx()
225 old_phy = old_ctx->phy; in mt76_switch_vif_chanctx()
231 old_phy->chanctx == old_ctx && phy != old_phy) in mt76_switch_vif_chanctx()
/linux/arch/powerpc/include/asm/
H A Dsyscalls.h53 long sys_swapcontext(struct ucontext __user *old_ctx,
75 long compat_sys_swapcontext(struct ucontext32 __user *old_ctx,
/linux/fs/btrfs/
H A Dsuper.c1422 #define btrfs_info_if_set(fs_info, old_ctx, opt, fmt, args...) \ argument
1424 if ((!old_ctx || !btrfs_raw_test_opt(old_ctx->mount_opt, opt)) && \
1429 #define btrfs_info_if_unset(fs_info, old_ctx, opt, fmt, args...) \ argument
1431 if ((old_ctx && btrfs_raw_test_opt(old_ctx->mount_opt, opt)) && \
1497 struct btrfs_fs_context old_ctx; in btrfs_reconfigure() local
1501 btrfs_info_to_ctx(fs_info, &old_ctx); in btrfs_reconfigure()
1509 ctx->mount_opt = old_ctx.mount_opt; in btrfs_reconfigure()
1524 btrfs_remount_begin(fs_info, old_ctx.mount_opt, fc->sb_flags); in btrfs_reconfigure()
1526 old_ctx.thread_pool_size); in btrfs_reconfigure()
1560 btrfs_emit_options(fs_info, &old_ctx); in btrfs_reconfigure()
[all …]
/linux/arch/powerpc/kernel/
H A Dsignal_32.c990 COMPAT_SYSCALL_DEFINE3(swapcontext, struct ucontext __user *, old_ctx, in COMPAT_SYSCALL_DEFINE3() argument
993 SYSCALL_DEFINE3(swapcontext, struct ucontext __user *, old_ctx, in COMPAT_SYSCALL_DEFINE3()
1041 if (old_ctx != NULL) { in COMPAT_SYSCALL_DEFINE3()
1052 ((unsigned long) &old_ctx->uc_mcontext & ~0xfUL); in COMPAT_SYSCALL_DEFINE3()
1054 if (!user_write_access_begin(old_ctx, ctx_size)) in COMPAT_SYSCALL_DEFINE3()
1057 unsafe_put_sigset_t(&old_ctx->uc_sigmask, &current->blocked, failed); in COMPAT_SYSCALL_DEFINE3()
1058 unsafe_put_user(to_user_ptr(mctx), &old_ctx->uc_regs, failed); in COMPAT_SYSCALL_DEFINE3()
H A Dsignal_64.c657 SYSCALL_DEFINE3(swapcontext, struct ucontext __user *, old_ctx, in SYSCALL_DEFINE3() argument
684 if (old_ctx != NULL) { in SYSCALL_DEFINE3()
686 if (!user_write_access_begin(old_ctx, ctx_size)) in SYSCALL_DEFINE3()
689 unsafe_setup_sigcontext(&old_ctx->uc_mcontext, current, 0, NULL, in SYSCALL_DEFINE3()
691 unsafe_copy_to_user(&old_ctx->uc_sigmask, &current->blocked, in SYSCALL_DEFINE3()
/linux/security/selinux/include/
H A Dxfrm.h18 int selinux_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx,
/linux/arch/mips/pci/
H A Dpci-alchemy.c77 unsigned long old_ctx; in mod_wired_entry() local
80 old_ctx = read_c0_entryhi() & MIPS_ENTRYHI_ASID; in mod_wired_entry()
88 write_c0_entryhi(old_ctx); in mod_wired_entry()
/linux/tools/perf/arch/x86/tests/
H A Dintel-pt-test.c248 enum intel_pt_pkt_ctx old_ctx = ctx; in test_ctx_unchanged() local
252 if (ctx != old_ctx) { in test_ctx_unchanged()
/linux/fs/ntfs/
H A Dattrib.c97 struct ntfs_attr_search_ctx old_ctx = { NULL, }; in ntfs_map_runlist_nolock() local
148 old_ctx = *ctx; in ntfs_map_runlist_nolock()
157 if (old_ctx.base_ntfs_ino && old_ctx.ntfs_ino != in ntfs_map_runlist_nolock()
158 old_ctx.base_ntfs_ino) { in ntfs_map_runlist_nolock()
159 put_this_folio = old_ctx.ntfs_ino->folio; in ntfs_map_runlist_nolock()
221 if (ctx->ntfs_ino != old_ctx.ntfs_ino) { in ntfs_map_runlist_nolock()
236 if (old_ctx.base_ntfs_ino && in ntfs_map_runlist_nolock()
237 old_ctx.ntfs_ino != old_ctx.base_ntfs_ino) { in ntfs_map_runlist_nolock()
239 ctx->mrec = map_mft_record(old_ctx.ntfs_ino); in ntfs_map_runlist_nolock()
255 old_ctx.ntfs_ino = in ntfs_map_runlist_nolock()
[all …]
/linux/net/mptcp/
H A Dsubflow.c766 struct mptcp_subflow_context *old_ctx) in subflow_ulp_fallback() argument
770 mptcp_subflow_tcp_fallback(sk, old_ctx); in subflow_ulp_fallback()
2045 struct mptcp_subflow_context *old_ctx = mptcp_subflow_ctx(newsk); in subflow_ulp_clone() local
2050 subflow_ulp_fallback(newsk, old_ctx); in subflow_ulp_clone()
2056 subflow_ulp_fallback(newsk, old_ctx); in subflow_ulp_clone()
2061 new_ctx->icsk_af_ops = old_ctx->icsk_af_ops; in subflow_ulp_clone()
2062 new_ctx->tcp_state_change = old_ctx->tcp_state_change; in subflow_ulp_clone()
2063 new_ctx->tcp_error_report = old_ctx->tcp_error_report; in subflow_ulp_clone()
/linux/fs/smb/client/
H A Dcifsfs.h154 struct smb3_fs_context *old_ctx);
H A Dcifsfs.c990 cifs_smb3_do_mount(struct fs_context *fc, struct smb3_fs_context *old_ctx) in cifs_smb3_do_mount() argument
1001 old_ctx->source, fc->sb_flags); in cifs_smb3_do_mount()
1003 cifs_info("Attempting to mount %s\n", old_ctx->source); in cifs_smb3_do_mount()
1014 rc = smb3_fs_context_dup(cifs_sb->ctx, old_ctx); in cifs_smb3_do_mount()
1077 root = cifs_get_root(cifs_sb ? cifs_sb->ctx : old_ctx, sb); in cifs_smb3_do_mount()
/linux/drivers/net/wireless/intel/iwlwifi/mld/
H A Dmac80211.c2460 vifs[0].old_ctx); in iwl_mld_switch_vif_chanctx_swap()
2461 iwl_mld_remove_chanctx(hw, vifs[0].old_ctx); in iwl_mld_switch_vif_chanctx_swap()
2482 if (iwl_mld_add_chanctx(hw, vifs[0].old_ctx)) { in iwl_mld_switch_vif_chanctx_swap()
2488 vifs[0].old_ctx)) in iwl_mld_switch_vif_chanctx_swap()
2502 vifs[0].old_ctx); in iwl_mld_switch_vif_chanctx_reassign()
2515 vifs[0].old_ctx)) in iwl_mld_switch_vif_chanctx_reassign()
/linux/drivers/net/wireless/ath/ath9k/
H A Dchannel.c1225 struct ath_chanctx *old_ctx; in ath_chanctx_set_next() local
1277 old_ctx = sc->cur_chan; in ath_chanctx_set_next()
1308 ath9k_chanctx_wake_queues(sc, old_ctx); in ath_chanctx_set_next()
/linux/net/bpf/
H A Dtest_run.c393 struct bpf_run_ctx *old_ctx; in bpf_test_run() local
413 old_ctx = bpf_set_run_ctx(&run_ctx.run_ctx); in bpf_test_run()
427 bpf_reset_run_ctx(old_ctx); in bpf_test_run()
/linux/include/linux/
H A Dbpf.h2557 struct bpf_run_ctx *old_ctx = NULL; in bpf_set_run_ctx() local
2560 old_ctx = current->bpf_ctx; in bpf_set_run_ctx()
2563 return old_ctx; in bpf_set_run_ctx()
2566 static inline void bpf_reset_run_ctx(struct bpf_run_ctx *old_ctx) in bpf_reset_run_ctx() argument
2569 current->bpf_ctx = old_ctx; in bpf_reset_run_ctx()
/linux/drivers/net/wireless/intel/iwlwifi/mvm/
H A Dmac80211.c5219 vifs[0].old_ctx, true); in iwl_mvm_switch_vif_chanctx_swap()
5220 __iwl_mvm_remove_chanctx(mvm, vifs[0].old_ctx); in iwl_mvm_switch_vif_chanctx_swap()
5246 if (__iwl_mvm_add_chanctx(mvm, vifs[0].old_ctx)) { in iwl_mvm_switch_vif_chanctx_swap()
5252 vifs[0].old_ctx, true)) { in iwl_mvm_switch_vif_chanctx_swap()
5274 vifs[0].old_ctx, true); in iwl_mvm_switch_vif_chanctx_reassign()
5288 vifs[0].old_ctx, true)) { in iwl_mvm_switch_vif_chanctx_reassign()
/linux/kernel/bpf/
H A Dhelpers.c4527 struct bpf_task_work_ctx *ctx, *old_ctx; in bpf_task_work_fetch_ctx() local
4541 old_ctx = cmpxchg(&twk->ctx, NULL, ctx); in bpf_task_work_fetch_ctx()
4542 if (old_ctx) { in bpf_task_work_fetch_ctx()
4548 return old_ctx; in bpf_task_work_fetch_ctx()
/linux/drivers/net/wireless/virtual/
H A Dmac80211_hwsim_main.c3457 hwsim_check_chanctx_magic(vifs[i].old_ctx); in mac80211_hwsim_switch_vif_chanctx()
3460 vifs[i].old_ctx->def.chan->center_freq, in mac80211_hwsim_switch_vif_chanctx()
3461 vifs[i].old_ctx->def.width, in mac80211_hwsim_switch_vif_chanctx()
3462 vifs[i].old_ctx->def.center_freq1, in mac80211_hwsim_switch_vif_chanctx()
3463 vifs[i].old_ctx->def.center_freq2, in mac80211_hwsim_switch_vif_chanctx()
3475 hwsim_clear_chanctx_magic(vifs[i].old_ctx); in mac80211_hwsim_switch_vif_chanctx()
/linux/security/
H A Dsecurity.c4950 * @old_ctx: xfrm security context
4954 * the old_ctx structure.
4958 int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx,
4961 return call_int_hook(xfrm_policy_clone_security, old_ctx, new_ctxp); in security_xfrm_policy_clone()
4959 security_xfrm_policy_clone(struct xfrm_sec_ctx * old_ctx,struct xfrm_sec_ctx ** new_ctxp) security_xfrm_policy_clone() argument

12