| /kernel/linux/linux-6.6/kernel/ |
| D | cred.c | 171 struct cred *new; in cred_alloc_blank() local 173 new = kmem_cache_zalloc(cred_jar, GFP_KERNEL); in cred_alloc_blank() 174 if (!new) in cred_alloc_blank() 177 atomic_long_set(&new->usage, 1); in cred_alloc_blank() 178 if (security_cred_alloc_blank(new, GFP_KERNEL_ACCOUNT) < 0) in cred_alloc_blank() 181 return new; in cred_alloc_blank() 184 abort_creds(new); in cred_alloc_blank() 189 * prepare_creds - Prepare a new set of credentials for modification 191 * Prepare a new set of task credentials for modification. A task's creds 193 * prepare a new copy, which the caller then modifies and then commits by [all …]
|
| /kernel/linux/linux-5.10/kernel/ |
| D | cred.c | 216 struct cred *new; in cred_alloc_blank() local 218 new = kmem_cache_zalloc(cred_jar, GFP_KERNEL); in cred_alloc_blank() 219 if (!new) in cred_alloc_blank() 222 atomic_long_set(&new->usage, 1); in cred_alloc_blank() 224 new->magic = CRED_MAGIC; in cred_alloc_blank() 227 if (security_cred_alloc_blank(new, GFP_KERNEL_ACCOUNT) < 0) in cred_alloc_blank() 230 return new; in cred_alloc_blank() 233 abort_creds(new); in cred_alloc_blank() 238 * prepare_creds - Prepare a new set of credentials for modification 240 * Prepare a new set of task credentials for modification. A task's creds [all …]
|
| /kernel/linux/linux-6.6/fs/nfsd/ |
| D | auth.c | 25 struct cred *new; in nfsd_setuser() local 29 /* discard any old override before preparing the new set */ in nfsd_setuser() 31 new = prepare_creds(); in nfsd_setuser() 32 if (!new) in nfsd_setuser() 35 new->fsuid = rqstp->rq_cred.cr_uid; in nfsd_setuser() 36 new->fsgid = rqstp->rq_cred.cr_gid; in nfsd_setuser() 41 new->fsuid = exp->ex_anon_uid; in nfsd_setuser() 42 new->fsgid = exp->ex_anon_gid; in nfsd_setuser() 47 if (uid_eq(new->fsuid, GLOBAL_ROOT_UID)) in nfsd_setuser() 48 new->fsuid = exp->ex_anon_uid; in nfsd_setuser() [all …]
|
| /kernel/linux/linux-5.10/fs/nfsd/ |
| D | auth.c | 25 struct cred *new; in nfsd_setuser() local 31 /* discard any old override before preparing the new set */ in nfsd_setuser() 33 new = prepare_creds(); in nfsd_setuser() 34 if (!new) in nfsd_setuser() 37 new->fsuid = rqstp->rq_cred.cr_uid; in nfsd_setuser() 38 new->fsgid = rqstp->rq_cred.cr_gid; in nfsd_setuser() 43 new->fsuid = exp->ex_anon_uid; in nfsd_setuser() 44 new->fsgid = exp->ex_anon_gid; in nfsd_setuser() 49 if (uid_eq(new->fsuid, GLOBAL_ROOT_UID)) in nfsd_setuser() 50 new->fsuid = exp->ex_anon_uid; in nfsd_setuser() [all …]
|
| /kernel/linux/linux-6.6/arch/s390/mm/ |
| D | pageattr.c | 59 static void pgt_set(unsigned long *old, unsigned long new, unsigned long addr, in pgt_set() argument 78 crdte(*old, new, table, dtt, addr, S390_lowcore.kernel_asce); in pgt_set() 80 cspg(old, *old, new); in pgt_set() 82 csp((unsigned int *)old + 1, *old, new); in pgt_set() 89 pte_t *ptep, new; in walk_pte_level() local 95 new = *ptep; in walk_pte_level() 96 if (pte_none(new)) in walk_pte_level() 99 new = pte_wrprotect(new); in walk_pte_level() 101 new = pte_mkwrite_novma(pte_mkdirty(new)); in walk_pte_level() 103 new = set_pte_bit(new, __pgprot(_PAGE_NOEXEC)); in walk_pte_level() [all …]
|
| /kernel/linux/common_modules/newip/ |
| D | README_zh.md | 1 # New IP内核协议栈 5 New IP在现有[IPv4/IPv6](https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/log/?h=linux-… 16 New IP支持**可变长多语义地址(最短1字节)**,**可变长定制化报头封装(最短5字节)**,通过精简报文头开销,提升数据传输效率。 18 New IP报头开销,相比IPv4节省25.9%,相比IPv6节省44.9%。 20 New IP载荷传输效率,相比IPv4提高最少1%,相比IPv6提高最少2.33%。 26 | New IP for WiFi | 30+8+5=43 B | (1500-43)/1500=97.13% | 30 New IP内核协议栈架构图如下,用户态应用程序调用Socket API创建New IP socket,采用New IP极简帧头封装进行收发包。 36 New IP内核协议栈主要代码目录结构如下: 40 ├── examples # New IP 用户态样例代码 41 ├── src # New IP 自研代码 [all …]
|
| /kernel/linux/linux-6.6/arch/s390/include/asm/ |
| D | atomic_ops.h | 101 int old, new; \ 104 "0: lr %[new],%[old]\n" \ 105 op_string " %[new],%[val]\n" \ 106 " cs %[old],%[new],%[ptr]\n" \ 108 : [old] "=d" (old), [new] "=&d" (new), [ptr] "+Q" (*ptr)\ 127 long old, new; \ 130 "0: lgr %[new],%[old]\n" \ 131 op_string " %[new],%[val]\n" \ 132 " csg %[old],%[new],%[ptr]\n" \ 134 : [old] "=d" (old), [new] "=&d" (new), [ptr] "+QS" (*ptr)\ [all …]
|
| /kernel/linux/linux-6.6/fs/nfs/blocklayout/ |
| D | extent_tree.c | 137 struct pnfs_block_extent *new, bool merge_ok) in __ext_tree_insert() argument 146 if (new->be_f_offset < be->be_f_offset) { in __ext_tree_insert() 147 if (merge_ok && ext_can_merge(new, be)) { in __ext_tree_insert() 148 be->be_f_offset = new->be_f_offset; in __ext_tree_insert() 150 be->be_v_offset = new->be_v_offset; in __ext_tree_insert() 151 be->be_length += new->be_length; in __ext_tree_insert() 156 } else if (new->be_f_offset >= ext_f_end(be)) { in __ext_tree_insert() 157 if (merge_ok && ext_can_merge(be, new)) { in __ext_tree_insert() 158 be->be_length += new->be_length; in __ext_tree_insert() 168 rb_link_node(&new->be_node, parent, p); in __ext_tree_insert() [all …]
|
| /kernel/linux/linux-5.10/fs/nfs/blocklayout/ |
| D | extent_tree.c | 137 struct pnfs_block_extent *new, bool merge_ok) in __ext_tree_insert() argument 146 if (new->be_f_offset < be->be_f_offset) { in __ext_tree_insert() 147 if (merge_ok && ext_can_merge(new, be)) { in __ext_tree_insert() 148 be->be_f_offset = new->be_f_offset; in __ext_tree_insert() 150 be->be_v_offset = new->be_v_offset; in __ext_tree_insert() 151 be->be_length += new->be_length; in __ext_tree_insert() 156 } else if (new->be_f_offset >= ext_f_end(be)) { in __ext_tree_insert() 157 if (merge_ok && ext_can_merge(be, new)) { in __ext_tree_insert() 158 be->be_length += new->be_length; in __ext_tree_insert() 168 rb_link_node(&new->be_node, parent, p); in __ext_tree_insert() [all …]
|
| /kernel/linux/linux-5.10/fs/xfs/libxfs/ |
| D | xfs_rmap.c | 467 * growing the last AG. This extent is new space and so it is not tracked as 532 * just found as it is new space and won't be used by anyone. This is in xfs_rmap_unmap() 639 * record to the length of the new left-extent size, increment in xfs_rmap_unmap() 640 * the insertion position so we can insert a new record in xfs_rmap_unmap() 745 * When we allocate a new block, the first thing we do is add a reference to 917 * new record at current cursor position. in xfs_rmap_map() 980 #define NEW r[3] macro 997 /* prev is 2, new is 3 */ in xfs_rmap_convert() 1156 * The left and right neighbors are both contiguous with new. in xfs_rmap_convert() 1201 NEW = LEFT; in xfs_rmap_convert() [all …]
|
| /kernel/linux/linux-6.6/drivers/mtd/ |
| D | mtd_blkdevs.c | 276 int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new) in add_mtd_blktrans_dev() argument 278 struct mtd_blktrans_ops *tr = new->tr; in add_mtd_blktrans_dev() 287 if (new->devnum == -1) { in add_mtd_blktrans_dev() 291 new->devnum = last_devnum+1; in add_mtd_blktrans_dev() 292 list_add_tail(&new->list, &d->list); in add_mtd_blktrans_dev() 295 } else if (d->devnum == new->devnum) { in add_mtd_blktrans_dev() 298 } else if (d->devnum > new->devnum) { in add_mtd_blktrans_dev() 300 list_add_tail(&new->list, &d->list); in add_mtd_blktrans_dev() 307 if (new->devnum == -1) in add_mtd_blktrans_dev() 308 new->devnum = last_devnum+1; in add_mtd_blktrans_dev() [all …]
|
| /kernel/linux/linux-6.6/security/ |
| D | commoncap.c | 232 * @new: The proposed new credentials; alterations should be made here 234 * @effective: A pointer to the proposed new effective capabilities set 235 * @inheritable: A pointer to the proposed new inheritable capabilities set 236 * @permitted: A pointer to the proposed new permitted capabilities set 239 * process's capability sets. The changes are made to the proposed new 242 int cap_capset(struct cred *new, in cap_capset() argument 258 /* no new pI capabilities outside bounding set */ in cap_capset() 261 /* verify restrictions on target's new Permitted set */ in cap_capset() 269 new->cap_effective = *effective; in cap_capset() 270 new->cap_inheritable = *inheritable; in cap_capset() [all …]
|
| /kernel/linux/linux-5.10/security/ |
| D | commoncap.c | 231 * @new: The proposed new credentials; alterations should be made here 233 * @effective: A pointer to the proposed new effective capabilities set 234 * @inheritable: A pointer to the proposed new inheritable capabilities set 235 * @permitted: A pointer to the proposed new permitted capabilities set 238 * process's capability sets. The changes are made to the proposed new 241 int cap_capset(struct cred *new, in cap_capset() argument 257 /* no new pI capabilities outside bounding set */ in cap_capset() 260 /* verify restrictions on target's new Permitted set */ in cap_capset() 268 new->cap_effective = *effective; in cap_capset() 269 new->cap_inheritable = *inheritable; in cap_capset() [all …]
|
| /kernel/linux/linux-6.6/fs/xfs/libxfs/ |
| D | xfs_rmap.c | 575 * growing the last AG. This extent is new space and so it is not tracked as 633 * just found as it is new space and won't be used by anyone. This is in xfs_rmap_unmap() 740 * record to the length of the new left-extent size, increment in xfs_rmap_unmap() 741 * the insertion position so we can insert a new record in xfs_rmap_unmap() 846 * When we allocate a new block, the first thing we do is add a reference to 1011 * new record at current cursor position. in xfs_rmap_map() 1074 #define NEW r[3] macro 1091 /* prev is 2, new is 3 */ in xfs_rmap_convert() 1243 * The left and right neighbors are both contiguous with new. in xfs_rmap_convert() 1288 NEW = LEFT; in xfs_rmap_convert() [all …]
|
| /kernel/linux/linux-5.10/drivers/mtd/ |
| D | mtd_blkdevs.c | 340 int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new) in add_mtd_blktrans_dev() argument 342 struct mtd_blktrans_ops *tr = new->tr; in add_mtd_blktrans_dev() 352 if (new->devnum == -1) { in add_mtd_blktrans_dev() 356 new->devnum = last_devnum+1; in add_mtd_blktrans_dev() 357 list_add_tail(&new->list, &d->list); in add_mtd_blktrans_dev() 360 } else if (d->devnum == new->devnum) { in add_mtd_blktrans_dev() 364 } else if (d->devnum > new->devnum) { in add_mtd_blktrans_dev() 366 list_add_tail(&new->list, &d->list); in add_mtd_blktrans_dev() 373 if (new->devnum == -1) in add_mtd_blktrans_dev() 374 new->devnum = last_devnum+1; in add_mtd_blktrans_dev() [all …]
|
| /kernel/linux/linux-5.10/arch/sparc/kernel/ |
| D | ftrace.c | 26 static int ftrace_modify_code(unsigned long ip, u32 old, u32 new) in ftrace_modify_code() argument 32 "1: cas [%[ip]], %[old], %[new]\n" in ftrace_modify_code() 47 : [new] "0" (new), [old] "r" (old), [ip] "r" (ip) in ftrace_modify_code() 50 if (replaced != old && replaced != new) in ftrace_modify_code() 59 u32 old, new; in ftrace_make_nop() local 62 new = ftrace_nop; in ftrace_make_nop() 63 return ftrace_modify_code(ip, old, new); in ftrace_make_nop() 69 u32 old, new; in ftrace_make_call() local 72 new = ftrace_call_replace(ip, addr); in ftrace_make_call() 73 return ftrace_modify_code(ip, old, new); in ftrace_make_call() [all …]
|
| /kernel/linux/linux-6.6/arch/sparc/kernel/ |
| D | ftrace.c | 26 static int ftrace_modify_code(unsigned long ip, u32 old, u32 new) in ftrace_modify_code() argument 32 "1: cas [%[ip]], %[old], %[new]\n" in ftrace_modify_code() 47 : [new] "0" (new), [old] "r" (old), [ip] "r" (ip) in ftrace_modify_code() 50 if (replaced != old && replaced != new) in ftrace_modify_code() 59 u32 old, new; in ftrace_make_nop() local 62 new = ftrace_nop; in ftrace_make_nop() 63 return ftrace_modify_code(ip, old, new); in ftrace_make_nop() 69 u32 old, new; in ftrace_make_call() local 72 new = ftrace_call_replace(ip, addr); in ftrace_make_call() 73 return ftrace_modify_code(ip, old, new); in ftrace_make_call() [all …]
|
| /kernel/linux/linux-5.10/security/apparmor/ |
| D | task.c | 11 * cred or task context but instead creates a new one. Ideally the task 37 * @label: new label (NOT NULL) 45 struct cred *new; in aa_replace_current_label() local 55 new = prepare_creds(); in aa_replace_current_label() 56 if (!new) in aa_replace_current_label() 79 aa_put_label(cred_label(new)); in aa_replace_current_label() 80 set_cred_label(new, label); in aa_replace_current_label() 82 commit_creds(new); in aa_replace_current_label() 118 struct cred *new; in aa_set_current_hat() local 120 new = prepare_creds(); in aa_set_current_hat() [all …]
|
| /kernel/linux/linux-5.10/arch/s390/mm/ |
| D | pageattr.c | 56 static void pgt_set(unsigned long *old, unsigned long new, unsigned long addr, in pgt_set() argument 75 crdte(*old, new, table, dtt, addr, S390_lowcore.kernel_asce); in pgt_set() 77 cspg(old, *old, new); in pgt_set() 79 csp((unsigned int *)old + 1, *old, new); in pgt_set() 86 pte_t *ptep, new; in walk_pte_level() local 90 new = *ptep; in walk_pte_level() 91 if (pte_none(new)) in walk_pte_level() 94 new = pte_wrprotect(new); in walk_pte_level() 96 new = pte_mkwrite(pte_mkdirty(new)); in walk_pte_level() 98 pte_val(new) |= _PAGE_NOEXEC; in walk_pte_level() [all …]
|
| /kernel/linux/linux-6.6/arch/x86/include/asm/ |
| D | cmpxchg.h | 82 * store NEW in MEM. Return the initial value in MEM. Success is 85 #define __raw_cmpxchg(ptr, old, new, size, lock) \ argument 89 __typeof__(*(ptr)) __new = (new); \ 133 #define __cmpxchg(ptr, old, new, size) \ argument 134 __raw_cmpxchg((ptr), (old), (new), (size), LOCK_PREFIX) 136 #define __sync_cmpxchg(ptr, old, new, size) \ argument 137 __raw_cmpxchg((ptr), (old), (new), (size), "lock; ") 139 #define __cmpxchg_local(ptr, old, new, size) \ argument 140 __raw_cmpxchg((ptr), (old), (new), (size), "") 148 #define arch_cmpxchg(ptr, old, new) \ argument [all …]
|
| /kernel/linux/linux-6.6/tools/testing/selftests/rtc/ |
| D | setdate.c | 24 struct rtc_time new, current; in main() local 47 sscanf(date, "%d-%d-%d", &new.tm_mday, &new.tm_mon, &new.tm_year); in main() 48 new.tm_mon -= 1; in main() 49 new.tm_year -= 1900; in main() 50 sscanf(time, "%d:%d:%d", &new.tm_hour, &new.tm_min, &new.tm_sec); in main() 53 new.tm_mday, new.tm_mon + 1, new.tm_year + 1900, in main() 54 new.tm_hour, new.tm_min, new.tm_sec); in main() 56 /* Write the new date in RTC */ in main() 57 retval = ioctl(fd, RTC_SET_TIME, &new); in main()
|
| /kernel/linux/linux-5.10/tools/testing/selftests/rtc/ |
| D | setdate.c | 24 struct rtc_time new, current; in main() local 47 sscanf(date, "%d-%d-%d", &new.tm_mday, &new.tm_mon, &new.tm_year); in main() 48 new.tm_mon -= 1; in main() 49 new.tm_year -= 1900; in main() 50 sscanf(time, "%d:%d:%d", &new.tm_hour, &new.tm_min, &new.tm_sec); in main() 53 new.tm_mday, new.tm_mon + 1, new.tm_year + 1900, in main() 54 new.tm_hour, new.tm_min, new.tm_sec); in main() 56 /* Write the new date in RTC */ in main() 57 retval = ioctl(fd, RTC_SET_TIME, &new); in main()
|
| /kernel/linux/linux-6.6/security/keys/ |
| D | process_keys.c | 221 int install_thread_keyring_to_cred(struct cred *new) in install_thread_keyring_to_cred() argument 225 if (new->thread_keyring) in install_thread_keyring_to_cred() 228 keyring = keyring_alloc("_tid", new->uid, new->gid, new, in install_thread_keyring_to_cred() 235 new->thread_keyring = keyring; in install_thread_keyring_to_cred() 246 struct cred *new; in install_thread_keyring() local 249 new = prepare_creds(); in install_thread_keyring() 250 if (!new) in install_thread_keyring() 253 ret = install_thread_keyring_to_cred(new); in install_thread_keyring() 255 abort_creds(new); in install_thread_keyring() 259 return commit_creds(new); in install_thread_keyring() [all …]
|
| /kernel/linux/linux-5.10/arch/s390/include/asm/ |
| D | atomic_ops.h | 67 int old, new; \ 70 "0: lr %[new],%[old]\n" \ 71 op_string " %[new],%[val]\n" \ 72 " cs %[old],%[new],%[ptr]\n" \ 74 : [old] "=d" (old), [new] "=&d" (new), [ptr] "+Q" (*ptr)\ 93 long old, new; \ 96 "0: lgr %[new],%[old]\n" \ 97 op_string " %[new],%[val]\n" \ 98 " csg %[old],%[new],%[ptr]\n" \ 100 : [old] "=d" (old), [new] "=&d" (new), [ptr] "+Q" (*ptr)\ [all …]
|
| /kernel/linux/linux-5.10/security/keys/ |
| D | process_keys.c | 221 int install_thread_keyring_to_cred(struct cred *new) in install_thread_keyring_to_cred() argument 225 if (new->thread_keyring) in install_thread_keyring_to_cred() 228 keyring = keyring_alloc("_tid", new->uid, new->gid, new, in install_thread_keyring_to_cred() 235 new->thread_keyring = keyring; in install_thread_keyring_to_cred() 246 struct cred *new; in install_thread_keyring() local 249 new = prepare_creds(); in install_thread_keyring() 250 if (!new) in install_thread_keyring() 253 ret = install_thread_keyring_to_cred(new); in install_thread_keyring() 255 abort_creds(new); in install_thread_keyring() 259 return commit_creds(new); in install_thread_keyring() [all …]
|