| /linux/drivers/remoteproc/ |
| H A D | remoteproc_coredump.c | 114 int rproc_coredump_set_elf_info(struct rproc *rproc, u8 class, u16 machine) in rproc_coredump_set_elf_info() argument 116 if (class != ELFCLASS64 && class != ELFCLASS32) in rproc_coredump_set_elf_info() 119 rproc->elf_class = class; in rproc_coredump_set_elf_info() 243 u8 class = rproc->elf_class; in rproc_coredump() local 252 if (class == ELFCLASSNONE) { in rproc_coredump() 257 data_size = elf_size_of_hdr(class); in rproc_coredump() 264 data_size += elf_size_of_phdr(class); in rproc_coredump() 277 memset(ehdr, 0, elf_size_of_hdr(class)); in rproc_coredump() 279 elf_hdr_init_ident(ehdr, class); in rproc_coredump() 281 elf_hdr_set_e_type(class, ehdr, ET_CORE); in rproc_coredump() [all …]
|
| H A D | remoteproc_elf_loader.c | 49 char class; local 69 class = ehdr->e_ident[EI_CLASS]; 70 if (class != ELFCLASS32 && class != ELFCLASS64) { 71 dev_err(dev, "Unsupported class: %d\n", class); 75 if (class == ELFCLASS64 && fw->size < sizeof(struct elf64_hdr)) { 90 phoff = elf_hdr_get_e_phoff(class, fw->data); 91 shoff = elf_hdr_get_e_shoff(class, fw->data); 92 phnum = elf_hdr_get_e_phnum(class, fw->data); 93 elf_shdr_get_size = elf_size_of_shdr(class); 111 class == ELFCLASS32 ? 32 : 64); [all …]
|
| H A D | remoteproc_elf_helpers.h | 30 static inline void elf_hdr_init_ident(struct elf32_hdr *hdr, u8 class) in elf_hdr_init_ident() argument 33 hdr->e_ident[EI_CLASS] = class; in elf_hdr_init_ident() 41 static inline __type elf_##__s##_get_##__field(u8 class, const void *arg) \ 43 if (class == ELFCLASS32) \ 48 static inline void elf_##__s##_set_##__field(u8 class, void *arg, \ 51 if (class == ELFCLASS32) \ 88 static inline unsigned long elf_size_of_##__s(u8 class) \ in ELF_GEN_FIELD_GET_SET() 90 if (class == ELFCLASS32)\ in ELF_GEN_FIELD_GET_SET() 100 static inline unsigned int elf_strtbl_add(const char *name, void *ehdr, u8 class, size_t *index) 102 u16 shstrndx = elf_hdr_get_e_shstrndx(class, ehdr); [all …]
|
| /linux/mm/ |
| H A D | zsmalloc.c | 265 unsigned int class:CLASS_BITS + 1; member 460 return pool->size_class[zspage->class]; in zspage_class() 481 static inline void class_stat_add(struct size_class *class, int type, in class_stat_add() argument 484 class->stats.objs[type] += cnt; in class_stat_add() 487 static inline void class_stat_sub(struct size_class *class, int type, in class_stat_sub() argument 490 class->stats.objs[type] -= cnt; in class_stat_sub() 493 static inline unsigned long class_stat_read(struct size_class *class, int type) in class_stat_read() argument 495 return class->stats.objs[type]; in class_stat_read() 515 static unsigned long zs_can_compact(struct size_class *class); 521 struct size_class *class; in zs_stats_size_show() local [all …]
|
| /linux/kernel/locking/ |
| H A D | lockdep_proc.c | 34 #define iterate_lock_classes(idx, class) \ argument 35 for (idx = 0, class = lock_classes; idx <= max_lock_class_idx; \ 36 idx++, class++) 40 struct lock_class *class = v; in l_next() local 42 ++class; in l_next() 43 *pos = class - lock_classes; in l_next() 44 return (*pos > max_lock_class_idx) ? NULL : class; in l_next() 60 static void print_name(struct seq_file *m, struct lock_class *class) in print_name() argument 63 const char *name = class->name; in print_name() 66 name = __get_key_name(class->key, str); in print_name() [all …]
|
| H A D | lockdep.c | 300 void lock_stats(struct lock_class *class, struct lock_class_stats *stats) in lock_stats() argument 307 &per_cpu(cpu_lock_stats, cpu)[class - lock_classes]; in lock_stats() 326 void clear_lock_stats(struct lock_class *class) in clear_lock_stats() argument 332 &per_cpu(cpu_lock_stats, cpu)[class - lock_classes]; in clear_lock_stats() 336 memset(class->contention_point, 0, sizeof(class->contention_point)); in clear_lock_stats() 337 memset(class->contending_point, 0, sizeof(class->contending_point)); in clear_lock_stats() 340 static struct lock_class_stats *get_lock_stats(struct lock_class *class) in get_lock_stats() argument 342 return &this_cpu_ptr(cpu_lock_stats)[class - lock_classes]; in get_lock_stats() 498 static int class_filter(struct lock_class *class) in class_filter() argument 502 if (class->name_version == 1 && in class_filter() [all …]
|
| H A D | test-ww_mutex.c | 58 static int __test_mutex(struct ww_class *class, unsigned int flags) in __test_mutex() argument 65 ww_mutex_init(&mtx.mutex, class); in __test_mutex() 67 ww_acquire_init(&ctx, class); in __test_mutex() 110 static int test_mutex(struct ww_class *class) in test_mutex() argument 116 ret = __test_mutex(class, i); in test_mutex() 124 static int test_aa(struct ww_class *class, bool trylock) in test_aa() argument 131 ww_mutex_init(&mutex, class); in test_aa() 132 ww_acquire_init(&ctx, class); in test_aa() 181 struct ww_class *class; member 196 ww_acquire_init_noinject(&ctx, abba->class); in test_abba_work() [all …]
|
| /linux/drivers/base/ |
| H A D | class.c | 42 struct subsys_private *class_to_subsys(const struct class *class) in class_to_subsys() argument 47 if (!class || !class_kset) in class_to_subsys() 59 if (sp->class == class) in class_to_subsys() 77 ret = class_attr->show(cp->class, class_attr, buf); in class_attr_show() 89 ret = class_attr->store(cp->class, class_attr, buf, count); in class_attr_store() 96 const struct class *class = cp->class; in class_release() local 98 pr_debug("class '%s': release.\n", class->name); in class_release() 100 if (class->class_release) in class_release() 101 class->class_release(class); in class_release() 104 "be careful\n", class->name); in class_release() [all …]
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-class-hwmon | 1 What: /sys/class/hwmon/hwmonX/name 12 What: /sys/class/hwmon/hwmonX/label 20 What: /sys/class/hwmon/hwmonX/update_interval 30 What: /sys/class/hwmon/hwmonX/inY_min 38 What: /sys/class/hwmon/hwmonX/inY_lcrit 50 What: /sys/class/hwmon/hwmonX/inY_max 58 What: /sys/class/hwmon/hwmonX/inY_crit 70 What: /sys/class/hwmon/hwmonX/inY_input 92 What: /sys/class/hwmon/hwmonX/inY_average 100 What: /sys/class/hwmon/hwmonX/inY_lowest [all …]
|
| H A D | sysfs-driver-hid-srws1 | 1 What: /sys/class/leds/SRWS1::<serial>::RPM1 2 What: /sys/class/leds/SRWS1::<serial>::RPM2 3 What: /sys/class/leds/SRWS1::<serial>::RPM3 4 What: /sys/class/leds/SRWS1::<serial>::RPM4 5 What: /sys/class/leds/SRWS1::<serial>::RPM5 6 What: /sys/class/leds/SRWS1::<serial>::RPM6 7 What: /sys/class/leds/SRWS1::<serial>::RPM7 8 What: /sys/class/leds/SRWS1::<serial>::RPM8 9 What: /sys/class/leds/SRWS1::<serial>::RPM9 10 What: /sys/class/leds/SRWS1::<serial>::RPM10 [all …]
|
| H A D | sysfs-class-backlight | 1 What: /sys/class/backlight/<backlight>/scale 28 What: /sys/class/backlight/<backlight>/ambient_light_level 49 What: /sys/class/backlight/<backlight>/ambient_light_zone 85 /sys/class/backlight/<backlight>/max_brightness to 86 /sys/class/backlight/<backlight>/brightness. 88 What: /sys/class/backlight/<backlight>/<ambient light zone>_max 106 daylight /sys/class/backlight/<backlight>/daylight_max 107 office /sys/class/backlight/<backlight>/office_max 108 dark /sys/class/backlight/<backlight>/dark_max 117 l1_daylight /sys/class/backlight/<backlight>/l1_daylight_max [all …]
|
| H A D | sysfs-c2port | 1 What: /sys/class/c2port/ 5 The /sys/class/c2port/ directory will contain files and 9 What: /sys/class/c2port/c2portX 13 The /sys/class/c2port/c2portX/ directory is related to X-th 17 What: /sys/class/c2port/c2portX/access 21 The /sys/class/c2port/c2portX/access file enable the access 25 What: /sys/class/c2port/c2portX/dev_id 29 The /sys/class/c2port/c2portX/dev_id file show the device ID 32 What: /sys/class/c2port/c2portX/flash_access 36 The /sys/class/c2port/c2portX/flash_access file enable the [all …]
|
| H A D | sysfs-class-devfreq | 1 What: /sys/class/devfreq/.../ 10 What: /sys/class/devfreq/.../name 14 The /sys/class/devfreq/.../name shows the name of device 17 What: /sys/class/devfreq/.../governor 21 The /sys/class/devfreq/.../governor show or set the name of the 24 What: /sys/class/devfreq/.../cur_freq 28 The /sys/class/devfreq/.../cur_freq shows the current 33 What: /sys/class/devfreq/.../target_freq 37 The /sys/class/devfreq/.../target_freq shows the next governor 40 What: /sys/class/devfreq/.../trans_stat [all …]
|
| H A D | sysfs-pps | 1 What: /sys/class/pps/ 5 The /sys/class/pps/ directory will contain files and 9 What: /sys/class/pps/ppsX/ 13 The /sys/class/pps/ppsX/ directory is related to X-th 17 What: /sys/class/pps/ppsX/assert 21 The /sys/class/pps/ppsX/assert file reports the assert events 29 What: /sys/class/pps/ppsX/clear 33 The /sys/class/pps/ppsX/clear file reports the clear events 41 What: /sys/class/pps/ppsX/mode 45 The /sys/class/pps/ppsX/mode file reports the functioning [all …]
|
| H A D | sysfs-ata | 1 What: /sys/class/ata_* 7 Files under /sys/class/ata_port 14 What: /sys/class/ata_port/ataX/nr_pmp_links 15 What: /sys/class/ata_port/ataX/idle_irq 27 What: /sys/class/ata_port/ataX/port_no 37 Files under /sys/class/ata_link 48 What: /sys/class/ata_link/linkX[.Y]/hw_sata_spd_limit 49 What: /sys/class/ata_link/linkX[.Y]/sata_spd_limit 50 What: /sys/class/ata_link/linkX[.Y]/sata_spd 64 Files under /sys/class/ata_device [all …]
|
| /linux/arch/arm/mach-omap2/ |
| H A D | omap_hwmod_2xxx_ipblock_data.c | 167 .class = &l3_hwmod_class, 174 .class = &l4_hwmod_class, 181 .class = &l4_hwmod_class, 188 .class = &mpu_hwmod_class, 203 .class = &omap2xxx_timer_hwmod_class, 218 .class = &omap2xxx_timer_hwmod_class, 233 .class = &omap2xxx_timer_hwmod_class, 248 .class = &omap2xxx_timer_hwmod_class, 263 .class = &omap2xxx_timer_hwmod_class, 278 .class = &omap2xxx_timer_hwmod_class, [all …]
|
| H A D | omap_hwmod_81xx_data.c | 105 .class = &l3_hwmod_class, 112 .class = &l3_hwmod_class, 119 .class = &l3_hwmod_class, 130 .class = &l4_hwmod_class, 142 .class = &l4_hwmod_class, 164 .class = &mpu_hwmod_class, 191 .class = &mpu_hwmod_class, 232 .class = &ti81xx_rtc_hwmod_class, 279 .class = &uart_class, 300 .class = &uart_class, [all …]
|
| /linux/samples/bpf/ |
| H A D | ibumad_kern.c | 81 u8 class = ctx->mgmt_class; in on_ib_umad_read_recv() local 83 bpf_printk("ib_umad read recv : class 0x%x\n", class); in on_ib_umad_read_recv() 85 val = bpf_map_lookup_elem(&read_count, &class); in on_ib_umad_read_recv() 87 bpf_map_update_elem(&read_count, &class, &zero, BPF_NOEXIST); in on_ib_umad_read_recv() 88 val = bpf_map_lookup_elem(&read_count, &class); in on_ib_umad_read_recv() 101 u8 class = ctx->mgmt_class; in on_ib_umad_read_send() local 103 bpf_printk("ib_umad read send : class 0x%x\n", class); in on_ib_umad_read_send() 105 val = bpf_map_lookup_elem(&read_count, &class); in on_ib_umad_read_send() 107 bpf_map_update_elem(&read_count, &class, &zero, BPF_NOEXIST); in on_ib_umad_read_send() 108 val = bpf_map_lookup_elem(&read_count, &class); in on_ib_umad_read_send() [all …]
|
| /linux/drivers/gpu/drm/tegra/ |
| H A D | firewall.c | 14 u32 class; member 54 is_addr = fw->client->ops->is_addr_reg(fw->client->base.dev, fw->class, in fw_check_reg() 103 is_addr = fw->client->ops->is_addr_reg(fw->client->base.dev, fw->class, in fw_check_regs_imm() 111 static int fw_check_class(struct tegra_drm_firewall *fw, u32 class) in fw_check_class() argument 114 if (class == fw->client->base.class) in fw_check_class() 120 if (!fw->client->ops->is_valid_class(class)) in fw_check_class() 154 .class = *job_class, in tegra_drm_fw_validate() 161 u32 word, opcode, offset, count, mask, class; in tegra_drm_fw_validate() local 173 class = (word >> 6) & 0x3ff; in tegra_drm_fw_validate() 174 err = fw_check_class(&fw, class); in tegra_drm_fw_validate() [all …]
|
| /linux/drivers/gpu/drm/xe/ |
| H A D | xe_hw_engine.c | 49 unsigned int class : 8; member 59 .class = XE_ENGINE_CLASS_RENDER, 67 .class = XE_ENGINE_CLASS_COPY, 75 .class = XE_ENGINE_CLASS_COPY, 83 .class = XE_ENGINE_CLASS_COPY, 91 .class = XE_ENGINE_CLASS_COPY, 99 .class = XE_ENGINE_CLASS_COPY, 107 .class = XE_ENGINE_CLASS_COPY, 115 .class = XE_ENGINE_CLASS_COPY, 123 .class = XE_ENGINE_CLASS_COPY, [all …]
|
| /linux/arch/powerpc/perf/ |
| H A D | mpc7450-pmu.c | 153 int pmc, class; in mpc7450_get_constraint() local 157 class = mpc7450_classify_event(event); in mpc7450_get_constraint() 158 if (class < 0) in mpc7450_get_constraint() 160 if (class == 4) { in mpc7450_get_constraint() 165 mask = classbits[class][0]; in mpc7450_get_constraint() 166 value = classbits[class][1]; in mpc7450_get_constraint() 266 int i, j, class, tuse; in mpc7450_compute_mmcr() local 278 class = mpc7450_classify_event(event[i]); in mpc7450_compute_mmcr() 279 if (class < 0) in mpc7450_compute_mmcr() 281 j = n_classevent[class]++; in mpc7450_compute_mmcr() [all …]
|
| /linux/tools/perf/ |
| H A D | builtin-kwork.c | 375 work->class = key->class; in work_new() 448 struct kwork_class *class, in work_push_atom() argument 460 BUG_ON(class->work_init == NULL); in work_push_atom() 461 class->work_init(kwork, class, &key, src_type, evsel, sample, machine); in work_push_atom() 467 work = work_findnew(&class->work_root, &key, &kwork->cmp_id); in work_push_atom() 507 struct kwork_class *class, in work_pop_atom() argument 518 BUG_ON(class->work_init == NULL); in work_pop_atom() 519 class->work_init(kwork, class, &key, src_type, evsel, sample, machine); in work_pop_atom() 521 work = work_findnew(&class->work_root, &key, &kwork->cmp_id); in work_pop_atom() 569 struct kwork_class *class; in get_kwork_class() local [all …]
|
| /linux/drivers/gpu/drm/i915/gt/uc/ |
| H A D | selftest_guc_multi_lrc.c | 31 multi_lrc_create_parent(struct intel_gt *gt, u8 class, in multi_lrc_create_parent() argument 40 if (engine->class != class) in multi_lrc_create_parent() 111 static int __intel_guc_multi_lrc_basic(struct intel_gt *gt, unsigned int class) in __intel_guc_multi_lrc_basic() argument 117 parent = multi_lrc_create_parent(gt, class, 0); in __intel_guc_multi_lrc_basic() 122 gt_dbg(gt, "Not enough engines in class: %d\n", class); in __intel_guc_multi_lrc_basic() 154 unsigned int class; in intel_guc_multi_lrc_basic() local 157 for (class = 0; class < MAX_ENGINE_CLASS + 1; ++class) { in intel_guc_multi_lrc_basic() 159 if (class == COMPUTE_CLASS || class == RENDER_CLASS) in intel_guc_multi_lrc_basic() 162 ret = __intel_guc_multi_lrc_basic(gt, class); in intel_guc_multi_lrc_basic()
|
| /linux/drivers/char/agp/ |
| H A D | sis-agp.c | 227 .class = (PCI_CLASS_BRIDGE_HOST << 8), 235 .class = (PCI_CLASS_BRIDGE_HOST << 8), 243 .class = (PCI_CLASS_BRIDGE_HOST << 8), 251 .class = (PCI_CLASS_BRIDGE_HOST << 8), 259 .class = (PCI_CLASS_BRIDGE_HOST << 8), 267 .class = (PCI_CLASS_BRIDGE_HOST << 8), 275 .class = (PCI_CLASS_BRIDGE_HOST << 8), 283 .class = (PCI_CLASS_BRIDGE_HOST << 8), 291 .class = (PCI_CLASS_BRIDGE_HOST << 8), 299 .class = (PCI_CLASS_BRIDGE_HOST << 8), [all …]
|
| /linux/drivers/staging/most/Documentation/ABI/ |
| H A D | sysfs-class-most.txt | 1 What: /sys/class/most/mostcore/aims 9 What: /sys/class/most/mostcore/aims/<aim>/add_link 18 What: /sys/class/most/mostcore/aims/<aim>/remove_link 27 What: /sys/class/most/mostcore/devices 35 What: /sys/class/most/mostcore/devices/<mdev>/description 45 What: /sys/class/most/mostcore/devices/<mdev>/interface 54 What: /sys/class/most/mostcore/devices/<mdev>/dci 65 What: /sys/class/most/mostcore/devices/<mdev>/dci/arb_address 74 What: /sys/class/most/mostcore/devices/<mdev>/dci/arb_value 83 What: /sys/class/most/mostcore/devices/<mdev>/dci/mep_eui48_hi [all …]
|