Searched refs:new_set (Results 1 – 5 of 5) sorted by relevance
/linux-6.3-rc2/kernel/ |
A D | compat.c | 44 old_sigset_t old_set, new_set; in COMPAT_SYSCALL_DEFINE3() local 50 if (get_user(new_set, nset)) in COMPAT_SYSCALL_DEFINE3() 52 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP)); in COMPAT_SYSCALL_DEFINE3() 58 sigaddsetmask(&new_blocked, new_set); in COMPAT_SYSCALL_DEFINE3() 61 sigdelsetmask(&new_blocked, new_set); in COMPAT_SYSCALL_DEFINE3() 64 compat_sig_setmask(&new_blocked, new_set); in COMPAT_SYSCALL_DEFINE3()
|
A D | signal.c | 3147 sigset_t old_set, new_set; in SYSCALL_DEFINE4() local 3157 if (copy_from_user(&new_set, nset, sizeof(sigset_t))) in SYSCALL_DEFINE4() 3161 error = sigprocmask(how, &new_set, NULL); in SYSCALL_DEFINE4() 3185 sigset_t new_set; in COMPAT_SYSCALL_DEFINE4() local 3187 if (get_compat_sigset(&new_set, nset)) in COMPAT_SYSCALL_DEFINE4() 3191 error = sigprocmask(how, &new_set, NULL); in COMPAT_SYSCALL_DEFINE4() 4368 old_sigset_t old_set, new_set; in SYSCALL_DEFINE3() local 4374 if (copy_from_user(&new_set, nset, sizeof(*nset))) in SYSCALL_DEFINE3() 4381 sigaddsetmask(&new_blocked, new_set); in SYSCALL_DEFINE3() 4384 sigdelsetmask(&new_blocked, new_set); in SYSCALL_DEFINE3() [all …]
|
A D | ptrace.c | 1096 sigset_t new_set; in ptrace_request() local 1103 if (copy_from_user(&new_set, datavp, sizeof(sigset_t))) { in ptrace_request() 1108 sigdelsetmask(&new_set, sigmask(SIGKILL)|sigmask(SIGSTOP)); in ptrace_request() 1116 child->blocked = new_set; in ptrace_request()
|
/linux-6.3-rc2/drivers/net/ethernet/ibm/ |
A D | ibmvnic.c | 586 struct ibmvnic_ltb_set new_set; in alloc_ltb_set() local 611 new_set = old_set; in alloc_ltb_set() 615 new_set.ltbs = kzalloc(tmp, GFP_KERNEL); in alloc_ltb_set() 616 if (!new_set.ltbs) in alloc_ltb_set() 619 new_set.num_ltbs = nltbs; in alloc_ltb_set() 622 for (i = new_set.num_ltbs; i < old_set.num_ltbs; i++) in alloc_ltb_set() 629 n = min(old_set.num_ltbs, new_set.num_ltbs); in alloc_ltb_set() 631 new_set.ltbs[i] = old_set.ltbs[i]; in alloc_ltb_set() 649 *ltb_set = new_set; in alloc_ltb_set() 660 rc = alloc_long_term_buff(adapter, &new_set.ltbs[i], ltb_size); in alloc_ltb_set() [all …]
|
/linux-6.3-rc2/fs/cifs/ |
A D | connect.c | 2653 bool new_set = (new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) && in match_prepath() local 2656 if (old_set && new_set && !strcmp(new->prepath, old->prepath)) in match_prepath() 2658 else if (!old_set && !new_set) in match_prepath()
|
Completed in 27 milliseconds