/Linux-v6.1/drivers/clk/tegra/ |
D | clk-super.c | 147 struct tegra_clk_super_mux *super = to_clk_super_mux(hw); in clk_super_round_rate() local 148 struct clk_hw *div_hw = &super->frac_div.hw; in clk_super_round_rate() 152 return super->div_ops->round_rate(div_hw, rate, parent_rate); in clk_super_round_rate() 158 struct tegra_clk_super_mux *super = to_clk_super_mux(hw); in clk_super_recalc_rate() local 159 struct clk_hw *div_hw = &super->frac_div.hw; in clk_super_recalc_rate() 163 return super->div_ops->recalc_rate(div_hw, parent_rate); in clk_super_recalc_rate() 169 struct tegra_clk_super_mux *super = to_clk_super_mux(hw); in clk_super_set_rate() local 170 struct clk_hw *div_hw = &super->frac_div.hw; in clk_super_set_rate() 174 return super->div_ops->set_rate(div_hw, rate, parent_rate); in clk_super_set_rate() 179 struct tegra_clk_super_mux *super = to_clk_super_mux(hw); in clk_super_restore_context() local [all …]
|
D | clk-tegra-super-cclk.c | 52 struct tegra_clk_super_mux *super = to_clk_super_mux(hw); in cclk_super_recalc_rate() local 53 u32 val = readl_relaxed(super->reg); in cclk_super_recalc_rate() 73 struct tegra_clk_super_mux *super = to_clk_super_mux(hw); in cclk_super_determine_rate() local 87 if (super->flags & TEGRA20_SUPER_CLK) in cclk_super_determine_rate() 128 struct tegra_clk_super_mux *super; in tegra_clk_register_super_cclk() local 136 super = kzalloc(sizeof(*super), GFP_KERNEL); in tegra_clk_register_super_cclk() 137 if (!super) in tegra_clk_register_super_cclk() 145 super->reg = reg; in tegra_clk_register_super_cclk() 146 super->lock = lock; in tegra_clk_register_super_cclk() 147 super->width = 4; in tegra_clk_register_super_cclk() [all …]
|
D | Makefile | 13 obj-y += clk-super.o 17 obj-y += clk-tegra-super-cclk.o 18 obj-y += clk-tegra-super-gen4.o
|
/Linux-v6.1/drivers/nvdimm/ |
D | btt.c | 59 static int btt_info_write(struct arena_info *arena, struct btt_sb *super) in btt_info_write() argument 73 ret = arena_write_bytes(arena, arena->info2off, super, in btt_info_write() 78 return arena_write_bytes(arena, arena->infooff, super, in btt_info_write() 82 static int btt_info_read(struct arena_info *arena, struct btt_sb *super) in btt_info_read() argument 84 return arena_read_bytes(arena, arena->infooff, super, in btt_info_read() 820 static void parse_arena_meta(struct arena_info *arena, struct btt_sb *super, in parse_arena_meta() argument 823 arena->internal_nlba = le32_to_cpu(super->internal_nlba); in parse_arena_meta() 824 arena->internal_lbasize = le32_to_cpu(super->internal_lbasize); in parse_arena_meta() 825 arena->external_nlba = le32_to_cpu(super->external_nlba); in parse_arena_meta() 826 arena->external_lbasize = le32_to_cpu(super->external_lbasize); in parse_arena_meta() [all …]
|
D | btt_devs.c | 247 bool nd_btt_arena_is_valid(struct nd_btt *nd_btt, struct btt_sb *super) in nd_btt_arena_is_valid() argument 253 if (memcmp(super->signature, BTT_SIG, BTT_SIG_LEN) != 0) in nd_btt_arena_is_valid() 256 import_uuid(&parent_uuid, super->parent_uuid); in nd_btt_arena_is_valid() 261 checksum = le64_to_cpu(super->checksum); in nd_btt_arena_is_valid() 262 super->checksum = 0; in nd_btt_arena_is_valid() 263 if (checksum != nd_sb_checksum((struct nd_gen_sb *) super)) in nd_btt_arena_is_valid() 265 super->checksum = cpu_to_le64(checksum); in nd_btt_arena_is_valid() 268 if ((le32_to_cpu(super->flags) & IB_FLAG_ERROR_MASK) != 0) in nd_btt_arena_is_valid()
|
/Linux-v6.1/fs/cramfs/ |
D | inode.c | 507 struct cramfs_super *super) in cramfs_read_super() argument 518 memcpy(super, cramfs_read(sb, 0, sizeof(*super)), sizeof(*super)); in cramfs_read_super() 522 if (super->magic != CRAMFS_MAGIC) { in cramfs_read_super() 524 if (super->magic == CRAMFS_MAGIC_WEND) { in cramfs_read_super() 532 memcpy(super, in cramfs_read_super() 533 cramfs_read(sb, 512, sizeof(*super)), in cramfs_read_super() 534 sizeof(*super)); in cramfs_read_super() 536 if (super->magic != CRAMFS_MAGIC) { in cramfs_read_super() 537 if (super->magic == CRAMFS_MAGIC_WEND && !silent) in cramfs_read_super() 546 if (super->flags & ~CRAMFS_SUPPORTED_FLAGS) { in cramfs_read_super() [all …]
|
/Linux-v6.1/fs/efs/ |
D | super.c | 234 static int efs_validate_super(struct efs_sb_info *sb, struct efs_super *super) { in efs_validate_super() argument 236 if (!IS_EFS_MAGIC(be32_to_cpu(super->fs_magic))) in efs_validate_super() 239 sb->fs_magic = be32_to_cpu(super->fs_magic); in efs_validate_super() 240 sb->total_blocks = be32_to_cpu(super->fs_size); in efs_validate_super() 241 sb->first_block = be32_to_cpu(super->fs_firstcg); in efs_validate_super() 242 sb->group_size = be32_to_cpu(super->fs_cgfsize); in efs_validate_super() 243 sb->data_free = be32_to_cpu(super->fs_tfree); in efs_validate_super() 244 sb->inode_free = be32_to_cpu(super->fs_tinode); in efs_validate_super() 245 sb->inode_blocks = be16_to_cpu(super->fs_cgisize); in efs_validate_super() 246 sb->total_groups = be16_to_cpu(super->fs_ncg); in efs_validate_super()
|
/Linux-v6.1/drivers/net/wireless/ath/carl9170/ |
D | tx.c | 110 struct _carl9170_tx_superframe *super = (void *) skb->data; in __carl9170_get_tx_sta() local 111 struct ieee80211_hdr *hdr = (void *) super->frame_data; in __carl9170_get_tx_sta() 115 vif_id = (super->s.misc & CARL9170_TX_SUPER_MISC_VIF_ID) >> in __carl9170_get_tx_sta() 192 struct _carl9170_tx_superframe *super = (void *) skb->data; in carl9170_alloc_dev_space() local 213 super = (void *) skb->data; in carl9170_alloc_dev_space() 222 super->s.cookie = (u8) cookie + 1; in carl9170_alloc_dev_space() 228 struct _carl9170_tx_superframe *super = (void *) skb->data; in carl9170_release_dev_space() local 232 cookie = super->s.cookie; in carl9170_release_dev_space() 234 super->s.cookie = 0; in carl9170_release_dev_space() 293 struct _carl9170_tx_superframe *super; in carl9170_tx_release() local [all …]
|
/Linux-v6.1/tools/testing/selftests/tc-testing/plugin-lib/ |
D | buildebpfPlugin.py | 17 super().__init__() 20 super().pre_suite(testcount, testidlist) 26 super().post_suite(index) 31 super().add_args(parser)
|
D | nsPlugin.py | 13 super().__init__() 17 super().pre_suite(testcount, testidlist) 26 super().post_suite(index) 36 super().add_args(parser) 46 super().adjust_command(stage, command)
|
D | valgrindPlugin.py | 26 super().__init__() 30 super().pre_suite(testcount, testidlist) 38 super().post_suite(index) 51 super().add_args(parser) 63 super().adjust_command(stage, command)
|
D | rootPlugin.py | 11 super().__init__() 15 super().pre_suite(testcount, testidlist)
|
/Linux-v6.1/fs/befs/ |
D | debug.c | 227 befs_disk_btree_super *super) in befs_dump_index_entry() argument 232 befs_debug(sb, " magic %08x", fs32_to_cpu(sb, super->magic)); in befs_dump_index_entry() 233 befs_debug(sb, " node_size %u", fs32_to_cpu(sb, super->node_size)); in befs_dump_index_entry() 234 befs_debug(sb, " max_depth %08x", fs32_to_cpu(sb, super->max_depth)); in befs_dump_index_entry() 236 befs_debug(sb, " data_type %08x", fs32_to_cpu(sb, super->data_type)); in befs_dump_index_entry() 238 fs64_to_cpu(sb, super->root_node_ptr)); in befs_dump_index_entry() 240 fs64_to_cpu(sb, super->free_node_ptr)); in befs_dump_index_entry() 242 fs64_to_cpu(sb, super->max_size)); in befs_dump_index_entry()
|
D | ChangeLog | 103 (super.c, debug.c) [WD] 148 (datastream.c, btree.c super.c inode.c) [WD] 160 (super.c inode.c) [WD] 171 is the new way. (inode.c, super.c) [WD] 187 symlink string). (super.c, inode.c, befs_fs.h) [WD] 212 fields set (inode.c and super.c). 239 (super.c). Now we check to see if log_start and log_end differ. If so, 242 * Fixed an extra instance of MOD_DEC_USE_COUNT in super.c 335 (fs/befs/super.c) (fs/befs/inode.c) 341 (fs/befs/super.c) [all …]
|
/Linux-v6.1/scripts/gdb/linux/ |
D | tasks.py | 56 super(LxTaskByPidFunc, self).__init__("lx_task_by_pid") 73 super(LxPs, self).__init__("lx-ps", gdb.COMMAND_DATA) 114 super(LxThreadInfoFunc, self).__init__("lx_thread_info") 130 super(LxThreadInfoByPidFunc, self).__init__("lx_thread_info_by_pid")
|
D | proc.py | 27 super(LxCmdLine, self).__init__("lx-cmdline", gdb.COMMAND_DATA) 41 super(LxVersion, self).__init__("lx-version", gdb.COMMAND_DATA) 86 super(LxIOMem, self).__init__("lx-iomem", gdb.COMMAND_DATA) 101 super(LxIOPorts, self).__init__("lx-ioports", gdb.COMMAND_DATA) 146 super(LxMounts, self).__init__("lx-mounts", gdb.COMMAND_DATA) 211 super(LxFdtDump, self).__init__("lx-fdtdump", gdb.COMMAND_DATA,
|
D | device.py | 101 super(LxDeviceListBus, self).__init__('lx-device-list-bus', gdb.COMMAND_DATA) 121 super(LxDeviceListClass, self).__init__('lx-device-list-class', gdb.COMMAND_DATA) 139 super(LxDeviceListTree, self).__init__('lx-device-list-tree', gdb.COMMAND_DATA) 154 super(LxDeviceFindByBusName, self).__init__('lx_device_find_by_bus_name') 168 super(LxDeviceFindByClassName, self).__init__('lx_device_find_by_class_name')
|
D | rbtree.py | 107 super(LxRbFirst, self).__init__("lx_rb_first") 127 super(LxRbLast, self).__init__("lx_rb_last") 147 super(LxRbNext, self).__init__("lx_rb_next") 167 super(LxRbPrev, self).__init__("lx_rb_prev")
|
D | cpus.py | 133 super(LxCpus, self).__init__("lx-cpus", gdb.COMMAND_DATA) 153 super(PerCpu, self).__init__("lx_per_cpu") 187 super(LxCurrentFunc, self).__init__("lx_current")
|
D | clk.py | 27 super(LxClkSummary, self).__init__("lx-clk-summary", gdb.COMMAND_DATA) 60 super(LxClkCoreLookup, self).__init__("lx_clk_core_lookup")
|
/Linux-v6.1/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
D | base.c | 403 if (disp->super.wq) { in nvkm_disp_dtor() 404 destroy_workqueue(disp->super.wq); in nvkm_disp_dtor() 405 mutex_destroy(&disp->super.mutex); in nvkm_disp_dtor() 467 if (func->super) { in nvkm_disp_new_() 468 disp->super.wq = create_singlethread_workqueue("nvkm-disp"); in nvkm_disp_new_() 469 if (!disp->super.wq) in nvkm_disp_new_() 472 INIT_WORK(&disp->super.work, func->super); in nvkm_disp_new_() 473 mutex_init(&disp->super.mutex); in nvkm_disp_new_()
|
D | nv50.c | 1344 struct nvkm_disp *disp = container_of(work, struct nvkm_disp, super.work); in nv50_disp_super() 1348 u32 super; in nv50_disp_super() local 1350 mutex_lock(&disp->super.mutex); in nv50_disp_super() 1351 super = nvkm_rd32(device, 0x610030); in nv50_disp_super() 1353 nvkm_debug(subdev, "supervisor %08x %08x\n", disp->super.pending, super); in nv50_disp_super() 1355 if (disp->super.pending & 0x00000010) { in nv50_disp_super() 1359 if (!(super & (0x00000020 << head->id))) in nv50_disp_super() 1361 if (!(super & (0x00000080 << head->id))) in nv50_disp_super() 1366 if (disp->super.pending & 0x00000020) { in nv50_disp_super() 1368 if (!(super & (0x00000080 << head->id))) in nv50_disp_super() [all …]
|
D | gf119.c | 991 struct nvkm_disp *disp = container_of(work, struct nvkm_disp, super.work); in gf119_disp_super() 997 nvkm_debug(subdev, "supervisor %d\n", ffs(disp->super.pending)); in gf119_disp_super() 998 mutex_lock(&disp->super.mutex); in gf119_disp_super() 1005 if (disp->super.pending & 0x00000001) { in gf119_disp_super() 1014 if (disp->super.pending & 0x00000002) { in gf119_disp_super() 1032 if (disp->super.pending & 0x00000004) { in gf119_disp_super() 1044 mutex_unlock(&disp->super.mutex); in gf119_disp_super() 1108 disp->super.pending = (stat & 0x00000007); in gf119_disp_intr() 1109 queue_work(disp->super.wq, &disp->super.work); in gf119_disp_intr() 1110 nvkm_wr32(device, 0x6100ac, disp->super.pending); in gf119_disp_intr() [all …]
|
D | gv100.c | 817 struct nvkm_disp *disp = container_of(work, struct nvkm_disp, super.work); in gv100_disp_super() 823 mutex_lock(&disp->super.mutex); in gv100_disp_super() 826 nvkm_debug(subdev, "supervisor %d: %08x\n", ffs(disp->super.pending), stat); in gv100_disp_super() 832 if (disp->super.pending & 0x00000001) { in gv100_disp_super() 841 if (disp->super.pending & 0x00000002) { in gv100_disp_super() 859 if (disp->super.pending & 0x00000004) { in gv100_disp_super() 871 mutex_unlock(&disp->super.mutex); in gv100_disp_super() 924 disp->super.pending = (stat & 0x00000007); in gv100_disp_intr_ctrl_disp() 925 queue_work(disp->super.wq, &disp->super.work); in gv100_disp_intr_ctrl_disp() 926 nvkm_wr32(device, 0x611860, disp->super.pending); in gv100_disp_intr_ctrl_disp() [all …]
|
/Linux-v6.1/drivers/md/ |
D | dm-log-writes.c | 402 struct log_write_super super; in log_super() local 404 super.magic = cpu_to_le64(WRITE_LOG_MAGIC); in log_super() 405 super.version = cpu_to_le64(WRITE_LOG_VERSION); in log_super() 406 super.nr_entries = cpu_to_le64(lc->logged_entries); in log_super() 407 super.sectorsize = cpu_to_le32(lc->sectorsize); in log_super() 409 if (write_metadata(lc, &super, sizeof(super), NULL, 0, in log_super() 435 bool super = false; in log_writes_kthread() local 468 super = (block->flags & (LOG_FUA_FLAG | LOG_MARK_FLAG)); in log_writes_kthread() 469 if (super) in log_writes_kthread() 478 if (!ret && super) in log_writes_kthread()
|