Searched refs:part (Results 51 - 75 of 233) sorted by last modified time

12345678910

/linux-master/drivers/firmware/efi/
H A Defi-pstore.c76 static inline u64 generic_id(u64 timestamp, unsigned int part, int count) argument
78 return (timestamp * 100 + part) * 1000 + count;
88 unsigned int part; local
94 &record->type, &part, &cnt, &time, &data_type) == 5) {
95 record->id = generic_id(time, part, cnt);
96 record->part = part;
106 &record->type, &part, &cnt, &time) == 4) {
107 record->id = generic_id(time, part, cnt);
108 record->part
[all...]
/linux-master/block/partitions/
H A Dcore.c251 const struct block_device *part = dev_to_bdev(dev); local
253 add_uevent_var(env, "PARTN=%u", part->bd_partno);
254 if (part->bd_meta_info && part->bd_meta_info->volname[0])
255 add_uevent_var(env, "PARTNAME=%s", part->bd_meta_info->volname);
266 void drop_partition(struct block_device *part) argument
268 lockdep_assert_held(&part->bd_disk->open_mutex);
270 xa_erase(&part->bd_disk->part_tbl, part->bd_partno);
271 kobject_put(part
401 struct block_device *part; local
422 struct block_device *part; local
451 struct block_device *part = NULL; local
484 struct block_device *part = NULL; local
526 struct block_device *part; local
637 struct block_device *part; local
[all...]
H A Dmac.c16 extern void note_bootable_part(dev_t dev, int part, int goodness);
43 struct mac_partition *part; local
61 if (partoffset + sizeof(*part) > datasize)
63 part = (struct mac_partition *) (data + partoffset);
64 if (be16_to_cpu(part->signature) != MAC_PARTITION_MAGIC) {
68 blocks_in_map = be32_to_cpu(part->map_count);
84 part = (struct mac_partition *) (data + pos%512);
85 if (be16_to_cpu(part->signature) != MAC_PARTITION_MAGIC)
88 be32_to_cpu(part->start_block) * (secsize/512),
89 be32_to_cpu(part
[all...]
/linux-master/block/
H A Dgenhd.c100 static void part_stat_read_all(struct block_device *part, argument
107 struct disk_stats *ptr = per_cpu_ptr(part->bd_stats, cpu);
121 unsigned int part_in_flight(struct block_device *part) argument
127 inflight += part_stat_local_read_cpu(part, in_flight[0], cpu) +
128 part_stat_local_read_cpu(part, in_flight[1], cpu);
136 static void part_in_flight_rw(struct block_device *part, argument
144 inflight[0] += part_stat_local_read_cpu(part, in_flight[0], cpu);
145 inflight[1] += part_stat_local_read_cpu(part, in_flight[1], cpu);
324 struct block_device *part; local
328 xa_for_each(&disk->part_tbl, idx, part) {
644 struct block_device *part; local
860 struct block_device *part; local
1323 struct block_device *part; local
[all...]
H A Dblk-flush.c143 struct block_device *part = rq->q->disk->part0;
146 part_stat_inc(part, ios[STAT_FLUSH]);
147 part_stat_add(part, nsecs[STAT_FLUSH],
159 * @rq just completed @seq part of its flush sequence, record the
453 * Mark the request as part of a flush sequence and submit it
141 struct block_device *part = rq->q->disk->part0; local
/linux-master/arch/x86/boot/
H A Dheader.S213 # Kernel attributes; used by setup. This is part 1 of the
477 # the size-dependent part now grows so fast.
/linux-master/arch/arm/mach-omap2/
H A Dprm_common.c355 * @part: PRM partition ID (e.g., OMAP4430_PRM_PARTITION)
360 * identified by (@part, @inst, @idx), which means that some context
365 bool prm_was_any_context_lost_old(u8 part, s16 inst, u16 idx) argument
370 ret = prm_ll_data->was_any_context_lost_old(part, inst, idx);
380 * @part: PRM partition ID (e.g., OMAP4430_PRM_PARTITION)
385 * (@part, @inst, @idx). No return value. XXX Deprecated; callers
389 void prm_clear_context_loss_flags_old(u8 part, s16 inst, u16 idx) argument
392 prm_ll_data->clear_context_loss_flags_old(part, inst, idx);
401 * @part: PRM partition
407 int omap_prm_assert_hardreset(u8 shift, u8 part, s1 argument
429 omap_prm_deassert_hardreset(u8 shift, u8 st_shift, u8 part, s16 prm_mod, u16 offset, u16 st_offset) argument
451 omap_prm_is_hardreset_asserted(u8 shift, u8 part, s16 prm_mod, u16 offset) argument
[all...]
H A Dprm44xx.c396 * @part: PRM partition ID (e.g., OMAP4430_PRM_PARTITION)
401 * identified by (@part, @inst, @idx), which means that some context
404 static bool omap44xx_prm_was_any_context_lost_old(u8 part, s16 inst, u16 idx) argument
406 return (omap4_prminst_read_inst_reg(part, inst, idx)) ? 1 : 0;
411 * @part: PRM partition ID (e.g., OMAP4430_PRM_PARTITION)
416 * (@part, @inst, @idx). No return value. XXX Writes to reserved bits;
419 static void omap44xx_prm_clear_context_loss_flags_old(u8 part, s16 inst, argument
422 omap4_prminst_write_inst_reg(0xffffffff, part, inst, idx);
H A Dprm.h137 bool (*was_any_context_lost_old)(u8 part, s16 inst, u16 idx);
138 void (*clear_context_loss_flags_old)(u8 part, s16 inst, u16 idx);
140 int (*assert_hardreset)(u8 shift, u8 part, s16 prm_mod, u16 offset);
141 int (*deassert_hardreset)(u8 shift, u8 st_shift, u8 part, s16 prm_mod,
143 int (*is_hardreset_asserted)(u8 shift, u8 part, s16 prm_mod,
154 int omap_prm_assert_hardreset(u8 shift, u8 part, s16 prm_mod, u16 offset);
155 int omap_prm_deassert_hardreset(u8 shift, u8 st_shift, u8 part, s16 prm_mod,
157 int omap_prm_is_hardreset_asserted(u8 shift, u8 part, s16 prm_mod, u16 offset);
158 extern bool prm_was_any_context_lost_old(u8 part, s16 inst, u16 idx);
159 extern void prm_clear_context_loss_flags_old(u8 part, s1
[all...]
H A Dprm33xx.c48 * @part: PRM partition, ignored for AM33xx
56 static int am33xx_prm_is_hardreset_asserted(u8 shift, u8 part, s16 inst, argument
71 * @part: CM partition, ignored for AM33xx
82 static int am33xx_prm_assert_hardreset(u8 shift, u8 part, s16 inst, argument
97 * @part: PRM partition, not used for AM33xx
111 static int am33xx_prm_deassert_hardreset(u8 shift, u8 st_shift, u8 part, argument
H A Dcminst44xx.c45 * 0x2 idle: Module is in Idle mode (only OCP part). It is functional if
74 static u32 omap4_cminst_read_inst_reg(u8 part, u16 inst, u16 idx);
78 * @part: PRCM partition ID that the CM_CLKCTRL register exists in
85 static u32 _clkctrl_idlest(u8 part, u16 inst, u16 clkctrl_offs) argument
87 u32 v = omap4_cminst_read_inst_reg(part, inst, clkctrl_offs);
95 * @part: PRCM partition ID that the CM_CLKCTRL register exists in
102 static bool _is_module_ready(u8 part, u16 inst, u16 clkctrl_offs) argument
106 v = _clkctrl_idlest(part, inst, clkctrl_offs);
113 static u32 omap4_cminst_read_inst_reg(u8 part, u16 inst, u16 idx) argument
115 BUG_ON(part >
122 omap4_cminst_write_inst_reg(u32 val, u8 part, u16 inst, u16 idx) argument
131 omap4_cminst_rmw_inst_reg_bits(u32 mask, u32 bits, u8 part, u16 inst, s16 idx) argument
144 omap4_cminst_set_inst_reg_bits(u32 bits, u8 part, u16 inst, s16 idx) argument
149 omap4_cminst_clear_inst_reg_bits(u32 bits, u8 part, u16 inst, s16 idx) argument
155 omap4_cminst_read_inst_reg_bits(u8 part, u16 inst, s16 idx, u32 mask) argument
180 _clktrctrl_write(u8 c, u8 part, u16 inst, u16 cdoffs) argument
199 omap4_cminst_is_clkdm_in_hwsup(u8 part, u16 inst, u16 cdoffs) argument
219 omap4_cminst_clkdm_enable_hwsup(u8 part, u16 inst, u16 cdoffs) argument
234 omap4_cminst_clkdm_disable_hwsup(u8 part, u16 inst, u16 cdoffs) argument
248 omap4_cminst_clkdm_force_wakeup(u8 part, u16 inst, u16 cdoffs) argument
257 omap4_cminst_clkdm_force_sleep(u8 part, u16 inst, u16 cdoffs) argument
274 omap4_cminst_wait_module_ready(u8 part, s16 inst, u16 clkctrl_offs, u8 bit_shift) argument
297 omap4_cminst_wait_module_idle(u8 part, s16 inst, u16 clkctrl_offs, u8 bit_shift) argument
318 omap4_cminst_module_enable(u8 mode, u8 part, u16 inst, u16 clkctrl_offs) argument
337 omap4_cminst_module_disable(u8 part, u16 inst, u16 clkctrl_offs) argument
476 omap4_cminst_xlate_clkctrl(u8 part, u16 inst, u16 offset) argument
[all...]
H A Dcm33xx.c30 * 0x2 idle: Module is in Idle mode (only OCP part). It is functional if
211 * @part: PRCM partition, ignored for AM33xx
221 static int am33xx_cm_wait_module_ready(u8 part, s16 inst, u16 clkctrl_offs, argument
235 * @part: CM partition, ignored for AM33xx
244 static int am33xx_cm_wait_module_idle(u8 part, s16 inst, u16 clkctrl_offs, argument
259 * @part: CM partition, ignored for AM33xx
265 static void am33xx_cm_module_enable(u8 mode, u8 part, u16 inst, argument
278 * @part: CM partition, ignored for AM33xx
284 static void am33xx_cm_module_disable(u8 part, u16 inst, u16 clkctrl_offs) argument
339 static u32 am33xx_cm_xlate_clkctrl(u8 part, u1 argument
[all...]
/linux-master/sound/soc/codecs/
H A Dcs35l45.c1360 dsp->part = "cs35l45";
H A Dwm2200.c2207 wm2200->dsp[i].part = "wm2200";
/linux-master/fs/hfsplus/
H A Dhfsplus_fs.h187 int part, session; member in struct:hfsplus_sb_info
/linux-master/tools/tracing/rtla/src/
H A Dutils.h70 #define ns_to_per(total, part) ((part * 100) / (double)total)
/linux-master/fs/netfs/
H A Dbuffered_read.c302 size_t part;
322 part = min_t(size_t, to - off, PAGE_SIZE);
323 bvec_set_folio(&bvec[i++], sink, part, 0);
324 off += part;
286 size_t part; local
/linux-master/scripts/
H A Dget_abi.pl135 # New "tag" is actually part of
319 my $part = "";
347 if ($cur_part ne "" && $part ne $cur_part) {
348 $part = $cur_part;
349 my $bar = $part;
351 print "$part\n$bar\n\n";
658 # Ignore some sysfs nodes that aren't actually part of ABI
/linux-master/include/linux/mmc/
H A Dcard.h339 struct mmc_part part[MMC_NUM_PHY_PARTITION]; /* physical partitions */ member in struct:mmc_card
/linux-master/fs/orangefs/
H A Ddir.c17 struct orangefs_dir_part *part; member in struct:orangefs_dir
40 * part and is stored in a linked list in case more than one part is
43 * The position pointer (ctx->pos) encodes the part and offset on which
44 * to begin reading at. Bits above PART_SHIFT encode the part and bits
51 * part list. Data is parsed from the current position as it is needed.
58 * first part of the part list.
134 struct orangefs_dir_part *part, *new; local
138 part
188 fill_from_part(struct orangefs_dir_part *part, struct dir_context *ctx) argument
242 struct orangefs_dir_part *part; local
288 struct orangefs_dir_part *part = od->part; local
380 struct orangefs_dir_part *part = od->part; local
[all...]
/linux-master/drivers/net/wireless/mediatek/mt76/
H A Deeprom.c37 const char *part; local
55 part = of_get_property(np, "label", NULL);
56 if (!part)
57 part = np->name;
59 mtd = get_mtd_device_nm(part);
77 part, ret);
97 dev->test_mtd.name = devm_kstrdup(dev->dev, part, GFP_KERNEL);
/linux-master/drivers/net/phy/
H A Dsfp.c462 { .vendor = _v, .part = _p, .modes = _m, .fixup = _f, }
558 sfp_match(q->part, id->base.vendor_pn, ps))
2245 * do the final programming with the final module part number,
/linux-master/drivers/net/ethernet/sfc/siena/
H A Dsiena.c857 struct efx_mcdi_mtd_partition *part,
881 part->nvram_type = type;
882 part->common.dev_type_name = "Siena NVRAM manager";
883 part->common.type_name = info->name;
885 part->common.mtd.type = MTD_NORFLASH;
886 part->common.mtd.flags = MTD_CAP_NORFLASH;
887 part->common.mtd.size = size;
888 part->common.mtd.erasesize = erase_size;
856 siena_mtd_probe_partition(struct efx_nic *efx, struct efx_mcdi_mtd_partition *part, unsigned int type) argument
H A Dnet_driver.h176 #define EFX_TX_BUF_SKB 2 /* buffer is last part of skb */
223 * @completed_timestamp_major: Top part of the most recent tx timestamp.
224 * @completed_timestamp_minor: Low part of the most recent tx timestamp.
488 * @sync_timestamp_major: Major part of the last ptp sync event
489 * @sync_timestamp_minor: Minor part of the last ptp sync event
1260 * @mtd_erase: Erase part of an MTD partition
1265 * @ptp_write_host_time: Send host time to MC as part of sync protocol
1416 void (*mtd_rename)(struct efx_mtd_partition *part);
/linux-master/drivers/net/ethernet/sfc/
H A Dnet_driver.h156 #define EFX_TX_BUF_SKB 2 /* buffer is last part of skb */
205 * @completed_timestamp_major: Top part of the most recent tx timestamp.
206 * @completed_timestamp_minor: Low part of the most recent tx timestamp.
480 * @sync_timestamp_major: Major part of the last ptp sync event
481 * @sync_timestamp_minor: Minor part of the last ptp sync event
1311 * @mtd_erase: Erase part of an MTD partition
1316 * @ptp_write_host_time: Send host time to MC as part of sync protocol
1465 void (*mtd_rename)(struct efx_mtd_partition *part);

Completed in 545 milliseconds

12345678910