/linux/arch/x86/kernel/cpu/mtrr/ |
A D | if.c | 161 struct mtrr_sentry sentry; in mtrr_ioctl() local 176 if (copy_from_user(&sentry, arg, sizeof(sentry))) in mtrr_ioctl() 196 err = get_user(sentry.base, &s32->base); in mtrr_ioctl() 227 mtrr_file_add(sentry.base, sentry.size, sentry.type, true, in mtrr_ioctl() 234 err = mtrr_add(sentry.base, sentry.size, sentry.type, false); in mtrr_ioctl() 240 err = mtrr_file_del(sentry.base, sentry.size, file, 0); in mtrr_ioctl() 246 err = mtrr_del(-1, sentry.base, sentry.size); in mtrr_ioctl() 272 mtrr_file_add(sentry.base, sentry.size, sentry.type, true, in mtrr_ioctl() 280 mtrr_add_page(sentry.base, sentry.size, sentry.type, false); in mtrr_ioctl() 286 err = mtrr_file_del(sentry.base, sentry.size, file, 1); in mtrr_ioctl() [all …]
|
/linux/Documentation/x86/ |
A D | mtrr.rst | 315 struct mtrr_sentry sentry; 322 sentry.base = strtoul (argv[1], NULL, 0); 323 sentry.size = strtoul (argv[2], NULL, 0); 324 for (sentry.type = 0; sentry.type < MTRR_NUM_TYPES; ++sentry.type) 326 if (strcmp (argv[3], mtrr_strings[sentry.type]) == 0) break; 328 if (sentry.type >= MTRR_NUM_TYPES) 344 if (ioctl (fd, MTRRIOC_ADD_ENTRY, &sentry) == -1)
|
/linux/fs/f2fs/ |
A D | recovery.c | 446 struct seg_entry *sentry; in check_index_in_prev_nodes() local 459 sentry = get_seg_entry(sbi, segno); in check_index_in_prev_nodes() 460 if (!f2fs_test_bit(blkoff, sentry->cur_valid_map)) in check_index_in_prev_nodes()
|
A D | segment.c | 839 struct seg_entry *sentry = get_seg_entry(sbi, segno); in __locate_dirty_segment() local 840 enum dirty_type t = sentry->type; in __locate_dirty_segment() 873 struct seg_entry *sentry = get_seg_entry(sbi, segno); in __remove_dirty_segment() local 874 enum dirty_type t = sentry->type; in __remove_dirty_segment() 1127 struct seg_entry *sentry; in __check_sit_bitmap() local 1135 sentry = get_seg_entry(sbi, segno); in __check_sit_bitmap() 1142 map = (unsigned long *)(sentry->cur_valid_map); in __check_sit_bitmap() 4665 struct seg_entry *sentry; in init_free_segmap() local 4670 sentry = get_seg_entry(sbi, start); in init_free_segmap() 4671 if (!sentry->valid_blocks) in init_free_segmap() [all …]
|
A D | gc.c | 881 struct seg_entry *sentry; in check_valid_map() local 885 sentry = get_seg_entry(sbi, segno); in check_valid_map() 886 ret = f2fs_test_bit(offset, sentry->cur_valid_map); in check_valid_map()
|
/linux/arch/x86/kernel/cpu/resctrl/ |
A D | rdtgroup.c | 2382 struct rdtgroup *sentry, *stmp; in free_all_child_rdtgrp() local 2386 list_for_each_entry_safe(sentry, stmp, head, mon.crdtgrp_list) { in free_all_child_rdtgrp() 2387 free_rmid(sentry->mon.rmid); in free_all_child_rdtgrp() 2388 list_del(&sentry->mon.crdtgrp_list); in free_all_child_rdtgrp() 2390 if (atomic_read(&sentry->waitcount) != 0) in free_all_child_rdtgrp() 2391 sentry->flags = RDT_DELETED; in free_all_child_rdtgrp() 2393 rdtgroup_remove(sentry); in free_all_child_rdtgrp()
|
/linux/security/selinux/ss/ |
A D | services.c | 1659 struct sidtab_entry *sentry, in compute_sid_handle_invalid_context() argument 1670 if (sidtab_entry_to_string(policydb, sidtab, sentry, &s, &slen)) in compute_sid_handle_invalid_context() 1739 struct sidtab_entry *sentry, *tentry; in security_compute_sid() local 1779 sentry = sidtab_search_entry(sidtab, ssid); in security_compute_sid() 1780 if (!sentry) { in security_compute_sid() 1794 scontext = &sentry->context; in security_compute_sid() 1897 rc = compute_sid_handle_invalid_context(state, policy, sentry, in security_compute_sid()
|
/linux/drivers/infiniband/hw/hfi1/ |
A D | mad.c | 3897 u32 sentry, eentry; in __subn_get_opa_cc_table() local 3917 sentry = start_block * IB_CCT_ENTRIES; in __subn_get_opa_cc_table() 3918 eentry = sentry + (IB_CCT_ENTRIES * n_blocks); in __subn_get_opa_cc_table() 3925 for (j = 0, i = sentry; i < eentry; j++, i++) in __subn_get_opa_cc_table() 3948 u32 sentry, eentry; in __subn_set_opa_cc_table() local 3959 sentry = start_block * IB_CCT_ENTRIES; in __subn_set_opa_cc_table() 3960 eentry = sentry + ((n_blocks - 1) * IB_CCT_ENTRIES) + in __subn_set_opa_cc_table() 3977 for (j = 0, i = sentry; i < eentry; j++, i++) in __subn_set_opa_cc_table()
|
/linux/Documentation/filesystems/ext4/ |
A D | journal.rst | 578 The commit block is a sentry that indicates that a transaction has been
|