Home
last modified time | relevance | path

Searched refs:sup (Results 1 – 25 of 51) sorted by relevance

123

/openbmc/u-boot/fs/ubifs/
H A Dsb.c157 if (!sup) in create_default_filesystem()
195 kfree(sup); in create_default_filesystem()
488 if (!sup) in ubifs_read_sb_node()
494 kfree(sup); in ubifs_read_sb_node()
498 return sup; in ubifs_read_sb_node()
541 if (IS_ERR(sup)) in ubifs_read_superblock()
542 return PTR_ERR(sup); in ubifs_read_superblock()
664 kfree(sup); in ubifs_read_superblock()
805 if (IS_ERR(sup)) in ubifs_fixup_free_space()
806 return PTR_ERR(sup); in ubifs_fixup_free_space()
[all …]
H A Ddebug.c330 const struct ubifs_sb_node *sup = node; in ubifs_dump_node() local
331 unsigned int sup_flags = le32_to_cpu(sup->flags); in ubifs_dump_node()
334 (int)sup->key_hash, get_key_hash(sup->key_hash)); in ubifs_dump_node()
336 (int)sup->key_fmt, get_key_fmt(sup->key_fmt)); in ubifs_dump_node()
344 pr_err("\tleb_cnt %u\n", le32_to_cpu(sup->leb_cnt)); in ubifs_dump_node()
352 pr_err("\tfanout %u\n", le32_to_cpu(sup->fanout)); in ubifs_dump_node()
355 (int)le16_to_cpu(sup->default_compr)); in ubifs_dump_node()
357 (unsigned long long)le64_to_cpu(sup->rp_size)); in ubifs_dump_node()
358 pr_err("\trp_uid %u\n", le32_to_cpu(sup->rp_uid)); in ubifs_dump_node()
359 pr_err("\trp_gid %u\n", le32_to_cpu(sup->rp_gid)); in ubifs_dump_node()
[all …]
H A Dsuper.c1801 struct ubifs_sb_node *sup; in ubifs_remount_rw() local
1803 sup = ubifs_read_sb_node(c); in ubifs_remount_rw()
1804 if (IS_ERR(sup)) { in ubifs_remount_rw()
1805 err = PTR_ERR(sup); in ubifs_remount_rw()
1808 sup->leb_cnt = cpu_to_le32(c->leb_cnt); in ubifs_remount_rw()
1809 err = ubifs_write_sb_node(c, sup); in ubifs_remount_rw()
1810 kfree(sup); in ubifs_remount_rw()
/openbmc/linux/fs/ubifs/
H A Dsb.c77 struct ubifs_sb_node *sup; in create_default_filesystem() local
360 kfree(sup); in create_default_filesystem()
523 struct ubifs_sb_node *sup; in ubifs_read_sb_node() local
527 if (!sup) in ubifs_read_sb_node()
533 kfree(sup); in ubifs_read_sb_node()
537 return sup; in ubifs_read_sb_node()
597 err = ubifs_node_verify_hmac(c, sup, sizeof(*sup), in authenticate_sb_node()
648 if (IS_ERR(sup)) in ubifs_read_superblock()
649 return PTR_ERR(sup); in ubifs_read_superblock()
651 c->sup_node = sup; in ubifs_read_superblock()
[all …]
H A Ddebug.c352 const struct ubifs_sb_node *sup = node; in ubifs_dump_node() local
353 unsigned int sup_flags = le32_to_cpu(sup->flags); in ubifs_dump_node()
356 (int)sup->key_hash, get_key_hash(sup->key_hash)); in ubifs_dump_node()
358 (int)sup->key_fmt, get_key_fmt(sup->key_fmt)); in ubifs_dump_node()
366 pr_err("\tleb_cnt %u\n", le32_to_cpu(sup->leb_cnt)); in ubifs_dump_node()
374 pr_err("\tfanout %u\n", le32_to_cpu(sup->fanout)); in ubifs_dump_node()
377 (int)le16_to_cpu(sup->default_compr)); in ubifs_dump_node()
379 (unsigned long long)le64_to_cpu(sup->rp_size)); in ubifs_dump_node()
380 pr_err("\trp_uid %u\n", le32_to_cpu(sup->rp_uid)); in ubifs_dump_node()
381 pr_err("\trp_gid %u\n", le32_to_cpu(sup->rp_gid)); in ubifs_dump_node()
[all …]
H A Dauth.c192 const struct ubifs_sb_node *sup) in ubifs_sb_verify_signature() argument
234 err = verify_pkcs7_signature(sup, sizeof(struct ubifs_sb_node), in ubifs_sb_verify_signature()
/openbmc/linux/fs/befs/
H A Ddebug.c164 befs_debug(sb, " name %s", sup->name); in befs_dump_super_block()
165 befs_debug(sb, " magic1 %08x", fs32_to_cpu(sb, sup->magic1)); in befs_dump_super_block()
167 fs32_to_cpu(sb, sup->fs_byte_order)); in befs_dump_super_block()
176 befs_debug(sb, " magic2 %08x", fs32_to_cpu(sb, sup->magic2)); in befs_dump_super_block()
178 fs32_to_cpu(sb, sup->blocks_per_ag)); in befs_dump_super_block()
180 befs_debug(sb, " num_ags %u", fs32_to_cpu(sb, sup->num_ags)); in befs_dump_super_block()
182 befs_debug(sb, " flags %08x", fs32_to_cpu(sb, sup->flags)); in befs_dump_super_block()
184 tmp_run = fsrun_to_cpu(sb, sup->log_blocks); in befs_dump_super_block()
191 befs_debug(sb, " magic3 %08x", fs32_to_cpu(sb, sup->magic3)); in befs_dump_super_block()
193 tmp_run = fsrun_to_cpu(sb, sup->root_dir); in befs_dump_super_block()
[all …]
H A Dbtree.c97 befs_btree_super * sup);
135 befs_btree_super * sup) in befs_bt_read_super() argument
151 sup->magic = fs32_to_cpu(sb, od_sup->magic); in befs_bt_read_super()
152 sup->node_size = fs32_to_cpu(sb, od_sup->node_size); in befs_bt_read_super()
153 sup->max_depth = fs32_to_cpu(sb, od_sup->max_depth); in befs_bt_read_super()
154 sup->data_type = fs32_to_cpu(sb, od_sup->data_type); in befs_bt_read_super()
155 sup->root_node_ptr = fs64_to_cpu(sb, od_sup->root_node_ptr); in befs_bt_read_super()
158 if (sup->magic != BEFS_BTREE_MAGIC) { in befs_bt_read_super()
/openbmc/linux/kernel/rcu/
H A Dsrcutree.c629 WRITE_ONCE(sup->srcu_n_exp_nodelay, READ_ONCE(sup->srcu_n_exp_nodelay) + 1); in srcu_get_delay()
663 WARN_ON(rcu_seq_current(&sup->srcu_gp_seq) != sup->srcu_gp_seq_needed) || in cleanup_srcu_struct()
667 rcu_seq_current(&sup->srcu_gp_seq), sup->srcu_gp_seq_needed); in cleanup_srcu_struct()
670 kfree(sup->node); in cleanup_srcu_struct()
671 sup->node = NULL; in cleanup_srcu_struct()
676 kfree(sup); in cleanup_srcu_struct()
1057 WARN_ON_ONCE(ULONG_CMP_GE(sup->srcu_gp_seq, sup->srcu_gp_seq_needed)); in srcu_funnel_gp_start()
1789 struct srcu_usage *sup; in process_srcu() local
1792 ssp = sup->srcu_ssp; in process_srcu()
1801 WRITE_ONCE(sup->reschedule_count, READ_ONCE(sup->reschedule_count) + 1); in process_srcu()
[all …]
/openbmc/linux/drivers/tty/serial/
H A Dsunplus-uart.c535 struct sunplus_uart_port *sup; in sunplus_console_setup() local
545 if (!sup) in sunplus_console_setup()
592 struct sunplus_uart_port *sup; in sunplus_uart_probe() local
602 sup = devm_kzalloc(&pdev->dev, sizeof(*sup), GFP_KERNEL); in sunplus_uart_probe()
603 if (!sup) in sunplus_uart_probe()
607 if (IS_ERR(sup->clk)) in sunplus_uart_probe()
619 if (IS_ERR(sup->rstc)) in sunplus_uart_probe()
622 port = &sup->port; in sunplus_uart_probe()
651 sunplus_console_ports[sup->port.line] = sup; in sunplus_uart_probe()
678 if (!uart_console(&sup->port)) in sunplus_uart_suspend()
[all …]
H A Dcpm_uart.c760 scc_uart_t __iomem *sup; in cpm_uart_init_scc() local
765 sup = pinfo->sccup; in cpm_uart_init_scc()
781 out_be16(&sup->scc_maxidl, 0x10); in cpm_uart_init_scc()
782 out_be16(&sup->scc_brkcr, 1); in cpm_uart_init_scc()
783 out_be16(&sup->scc_parec, 0); in cpm_uart_init_scc()
784 out_be16(&sup->scc_frmec, 0); in cpm_uart_init_scc()
785 out_be16(&sup->scc_nosec, 0); in cpm_uart_init_scc()
786 out_be16(&sup->scc_brkec, 0); in cpm_uart_init_scc()
787 out_be16(&sup->scc_uaddr1, 0); in cpm_uart_init_scc()
788 out_be16(&sup->scc_uaddr2, 0); in cpm_uart_init_scc()
[all …]
H A Dsprd_serial.c882 struct sprd_uart_port *sup = in sprd_pm() local
887 clk_prepare_enable(sup->clk); in sprd_pm()
890 clk_disable_unprepare(sup->clk); in sprd_pm()
1083 if (sup) { in sprd_remove()
1084 uart_remove_one_port(&sprd_uart_driver, &sup->port); in sprd_remove()
1085 sprd_port[sup->port.line] = NULL; in sprd_remove()
1086 sprd_rx_free_buf(sup); in sprd_remove()
1233 struct sprd_uart_port *sup = dev_get_drvdata(dev); in sprd_suspend() local
1235 uart_suspend_port(&sprd_uart_driver, &sup->port); in sprd_suspend()
1242 struct sprd_uart_port *sup = dev_get_drvdata(dev); in sprd_resume() local
[all …]
/openbmc/linux/include/uapi/linux/
H A Dnilfs2_api.h118 nilfs_suinfo_update_set_##name(struct nilfs_suinfo_update *sup) \
120 sup->sup_flags |= 1UL << NILFS_SUINFO_UPDATE_##flag; \
123 nilfs_suinfo_update_clear_##name(struct nilfs_suinfo_update *sup) \
125 sup->sup_flags &= ~(1UL << NILFS_SUINFO_UPDATE_##flag); \
128 nilfs_suinfo_update_##name(const struct nilfs_suinfo_update *sup) \
130 return !!(sup->sup_flags & (1UL << NILFS_SUINFO_UPDATE_##flag));\
/openbmc/linux/fs/nilfs2/
H A Dsufile.c948 for (sup = buf; sup < supend; sup = (void *)sup + supsz) { in nilfs_sufile_set_suinfo()
950 || (sup->sup_flags & in nilfs_sufile_set_suinfo()
953 sup->sup_sui.sui_nblocks > in nilfs_sufile_set_suinfo()
964 sup = buf; in nilfs_sufile_set_suinfo()
973 sufile, sup->sup_segnum, bh, kaddr); in nilfs_sufile_set_suinfo()
975 if (nilfs_suinfo_update_lastmod(sup)) in nilfs_sufile_set_suinfo()
978 if (nilfs_suinfo_update_nblocks(sup)) in nilfs_sufile_set_suinfo()
981 if (nilfs_suinfo_update_flags(sup)) { in nilfs_sufile_set_suinfo()
987 sup->sup_sui.sui_flags &= in nilfs_sufile_set_suinfo()
1010 sup = (void *)sup + supsz; in nilfs_sufile_set_suinfo()
[all …]
/openbmc/ipmitool/src/plugins/
H A Dipmi_intf.c140 struct ipmi_intf_support * sup; in ipmi_intf_print() local
150 for (sup=intflist; sup->name != NULL; sup++) { in ipmi_intf_print()
151 if (strncmp(sup->name, (*intf)->name, strlen(sup->name)) == 0 && in ipmi_intf_print()
152 strncmp(sup->name, (*intf)->name, strlen((*intf)->name)) == 0 && in ipmi_intf_print()
153 sup->supported == 1) in ipmi_intf_print()
/openbmc/qemu/docs/
H A Ddefs.rst.inc14 .. |I2C| replace:: I\ :sup:`2`\ C
15 .. |I2S| replace:: I\ :sup:`2`\ S
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dext-ctrls-colorimetry.rst40 samples for the pictures of a video sequence, cd/m\ :sup:`2`.
46 cd/m\ :sup:`2`. When equal to 0 no such upper bound is present.
89 display in units of 0.0001 cd/m\ :sup:`2`.
93 display in units of 0.0001 cd/m\ :sup:`2`.
H A Dcolorspaces-details.rst759 L' = ((c1 + c2 * L\ :sup:`m1`) / (1 + c3 * L\ :sup:`m1`))\ :sup:`m2`
762 L = (max(L':sup:`1/m2` - c1, 0) / (c2 - c3 *
763 L'\ :sup:`1/m2`))\ :sup:`1/m1`
767 of 0 to 10000 cd/m\ :sup:`2` whereas the linear RGB values of non-HDR (aka
768 Standard Dynamic Range or SDR) map to a luminance range of 0 to 100 cd/m\ :sup:`2`.
772 luminance values over 100 cd/m\ :sup:`2` to 100 cd/m\ :sup:`2`.
/openbmc/linux/drivers/base/
H A Dcore.c81 link->supplier = sup; in __fwnode_link_add()
90 con, sup); in __fwnode_link_add()
100 ret = __fwnode_link_add(con, sup, 0); in fwnode_link_add()
570 len = max(strlen(dev_bus_name(sup)) + strlen(dev_name(sup)), in devlink_add_symlinks()
591 snprintf(buf, len, "supplier:%s:%s", dev_bus_name(sup), dev_name(sup)); in devlink_add_symlinks()
621 len = max(strlen(dev_bus_name(sup)) + strlen(dev_name(sup)), in devlink_remove_symlinks()
632 snprintf(buf, len, "supplier:%s:%s", dev_bus_name(sup), dev_name(sup)); in devlink_remove_symlinks()
1230 if (list_empty(&sup->links.defer_sync) && dev_has_sync_state(sup)) in __device_links_supplier_defer_sync()
1788 !dev_has_sync_state(sup)) in fw_devlink_dev_sync_state()
1801 sup->state_synced = true; in fw_devlink_dev_sync_state()
[all …]
/openbmc/ipmitool/lib/
H A Dipmi_main.c372 struct ipmi_intf_support * sup; in ipmi_main() local
427 for (sup=intflist; sup->name != NULL; sup++) { in ipmi_main()
428 if (strncmp(sup->name, intfname, strlen(intfname)) == 0 && in ipmi_main()
429 strncmp(sup->name, intfname, strlen(sup->name)) == 0 && in ipmi_main()
430 sup->supported == 1) in ipmi_main()
/openbmc/qemu/include/exec/
H A Dplugin-gen.h33 plugin_gen_tb_start(CPUState *cpu, const struct DisasContextBase *db, bool sup) in plugin_gen_tb_start() argument
/openbmc/linux/Documentation/driver-api/
H A Di2c.rst1 I\ :sup:`2`\ C and SMBus Subsystem
4 I\ :sup:`2`\ C (or without fancy typography, "I2C") is an acronym for
/openbmc/linux/include/linux/
H A Dfwnode.h211 int fwnode_link_add(struct fwnode_handle *con, struct fwnode_handle *sup);
/openbmc/openbmc/poky/meta/recipes-devtools/strace/
H A Dstrace_6.7.bb15 file://0001-configure-Use-autoconf-macro-to-detect-largefile-sup.patch \
/openbmc/linux/sound/pci/hda/
H A Dhda_proc.c526 int sup = param_read(codec, nid, AC_PAR_POWER_STATE); in print_power_state() local
529 if (sup != -1) { in print_power_state()
534 if (sup & (1U << i)) in print_power_state()

123