Home
last modified time | relevance | path

Searched refs:part (Results 1 – 200 of 707) sorted by relevance

1234

/linux-4.1.27/drivers/mtd/
Drfd_ftl.c92 static int build_block_map(struct partition *part, int block_no) in build_block_map() argument
94 struct block *block = &part->blocks[block_no]; in build_block_map()
97 block->offset = part->block_size * block_no; in build_block_map()
99 if (le16_to_cpu(part->header_cache[0]) != RFD_MAGIC) { in build_block_map()
106 for (i=0; i<part->data_sectors_per_block; i++) { in build_block_map()
109 entry = le16_to_cpu(part->header_cache[HEADER_MAP_OFFSET + i]); in build_block_map()
122 if (entry >= part->sector_count) { in build_block_map()
126 part->mbd.mtd->name, block_no, i, entry); in build_block_map()
130 if (part->sector_map[entry] != -1) { in build_block_map()
133 part->mbd.mtd->name, entry); in build_block_map()
[all …]
Dftl.c157 static int scan_header(partition_t *part) in scan_header() argument
163 part->header.FormattedSize = 0; in scan_header()
164 max_offset = (0x100000<part->mbd.mtd->size)?0x100000:part->mbd.mtd->size; in scan_header()
168 offset += part->mbd.mtd->erasesize ? : 0x2000) { in scan_header()
170 err = mtd_read(part->mbd.mtd, offset, sizeof(header), &ret, in scan_header()
189 if ((1 << header.EraseUnitSize) != part->mbd.mtd->erasesize) { in scan_header()
191 1 << header.EraseUnitSize,part->mbd.mtd->erasesize); in scan_header()
194 part->header = header; in scan_header()
198 static int build_maps(partition_t *part) in build_maps() argument
208 part->DataUnits = le16_to_cpu(part->header.NumEraseUnits) - in build_maps()
[all …]
Dmtdpart.c64 struct mtd_part *part = PART(mtd); in part_read() local
68 stats = part->master->ecc_stats; in part_read()
69 res = part->master->_read(part->master, from + part->offset, len, in part_read()
73 part->master->ecc_stats.failed - stats.failed; in part_read()
76 part->master->ecc_stats.corrected - stats.corrected; in part_read()
83 struct mtd_part *part = PART(mtd); in part_point() local
85 return part->master->_point(part->master, from + part->offset, len, in part_point()
91 struct mtd_part *part = PART(mtd); in part_unpoint() local
93 return part->master->_unpoint(part->master, from + part->offset, len); in part_unpoint()
101 struct mtd_part *part = PART(mtd); in part_get_unmapped_area() local
[all …]
Dcmdlinepart.c314 struct cmdline_mtd_partition *part; in parse_cmdline_partitions() local
328 for (part = partitions; part; part = part->next) { in parse_cmdline_partitions()
329 if ((!mtd_id) || (!strcmp(part->mtd_id, mtd_id))) in parse_cmdline_partitions()
333 if (!part) in parse_cmdline_partitions()
336 for (i = 0, offset = 0; i < part->num_parts; i++) { in parse_cmdline_partitions()
337 if (part->parts[i].offset == OFFSET_CONTINUOUS) in parse_cmdline_partitions()
338 part->parts[i].offset = offset; in parse_cmdline_partitions()
340 offset = part->parts[i].offset; in parse_cmdline_partitions()
342 if (part->parts[i].size == SIZE_REMAINING) in parse_cmdline_partitions()
343 part->parts[i].size = master->size - offset; in parse_cmdline_partitions()
[all …]
Dofpart.c120 } *part; in parse_ofoldpart_partitions() local
130 part = of_get_property(dp, "partitions", &plen); in parse_ofoldpart_partitions()
131 if (!part) in parse_ofoldpart_partitions()
137 nr_parts = plen / sizeof(part[0]); in parse_ofoldpart_partitions()
146 (*pparts)[i].offset = be32_to_cpu(part->offset); in parse_ofoldpart_partitions()
147 (*pparts)[i].size = be32_to_cpu(part->len) & ~1; in parse_ofoldpart_partitions()
149 if (be32_to_cpu(part->len) & 1) in parse_ofoldpart_partitions()
162 part++; in parse_ofoldpart_partitions()
Dbcm47xxpart.c56 static void bcm47xxpart_add_part(struct mtd_partition *part, const char *name, in bcm47xxpart_add_part() argument
59 part->name = name; in bcm47xxpart_add_part()
60 part->offset = offset; in bcm47xxpart_add_part()
61 part->mask_flags = mask_flags; in bcm47xxpart_add_part()
/linux-4.1.27/drivers/misc/sgi-xp/
Dxpc_main.c177 struct xpc_partition *part = (struct xpc_partition *)data; in xpc_timeout_partition_disengage() local
179 DBUG_ON(time_is_after_jiffies(part->disengage_timeout)); in xpc_timeout_partition_disengage()
181 (void)xpc_partition_disengaged(part); in xpc_timeout_partition_disengage()
183 DBUG_ON(part->disengage_timeout != 0); in xpc_timeout_partition_disengage()
184 DBUG_ON(xpc_arch_ops.partition_engaged(XPC_PARTID(part))); in xpc_timeout_partition_disengage()
227 struct xpc_partition *part; in xpc_check_remote_hb() local
239 part = &xpc_partitions[partid]; in xpc_check_remote_hb()
241 if (part->act_state == XPC_P_AS_INACTIVE || in xpc_check_remote_hb()
242 part->act_state == XPC_P_AS_DEACTIVATING) { in xpc_check_remote_hb()
246 ret = xpc_arch_ops.get_remote_heartbeat(part); in xpc_check_remote_hb()
[all …]
Dxpc_partition.c270 xpc_partition_disengaged(struct xpc_partition *part) in xpc_partition_disengaged() argument
272 short partid = XPC_PARTID(part); in xpc_partition_disengaged()
276 if (part->disengage_timeout) { in xpc_partition_disengaged()
278 if (time_is_after_jiffies(part->disengage_timeout)) { in xpc_partition_disengaged()
294 part->disengage_timeout = 0; in xpc_partition_disengaged()
298 del_singleshot_timer_sync(&part->disengage_timer); in xpc_partition_disengaged()
300 DBUG_ON(part->act_state != XPC_P_AS_DEACTIVATING && in xpc_partition_disengaged()
301 part->act_state != XPC_P_AS_INACTIVE); in xpc_partition_disengaged()
302 if (part->act_state != XPC_P_AS_INACTIVE) in xpc_partition_disengaged()
303 xpc_wakeup_channel_mgr(part); in xpc_partition_disengaged()
[all …]
Dxpc_uv.c373 struct xpc_partition *part; in xpc_process_activate_IRQ_rcvd_uv() local
380 part = &xpc_partitions[partid]; in xpc_process_activate_IRQ_rcvd_uv()
382 if (part->sn.uv.act_state_req == 0) in xpc_process_activate_IRQ_rcvd_uv()
388 act_state_req = part->sn.uv.act_state_req; in xpc_process_activate_IRQ_rcvd_uv()
389 part->sn.uv.act_state_req = 0; in xpc_process_activate_IRQ_rcvd_uv()
393 if (part->act_state == XPC_P_AS_INACTIVE) in xpc_process_activate_IRQ_rcvd_uv()
394 xpc_activate_partition(part); in xpc_process_activate_IRQ_rcvd_uv()
395 else if (part->act_state == XPC_P_AS_DEACTIVATING) in xpc_process_activate_IRQ_rcvd_uv()
396 XPC_DEACTIVATE_PARTITION(part, xpReactivating); in xpc_process_activate_IRQ_rcvd_uv()
399 if (part->act_state == XPC_P_AS_INACTIVE) in xpc_process_activate_IRQ_rcvd_uv()
[all …]
Dxpc_channel.c82 struct xpc_partition *part = &xpc_partitions[ch->partid]; in xpc_process_disconnect() local
101 if (part->act_state == XPC_P_AS_DEACTIVATING) { in xpc_process_disconnect()
157 atomic_dec(&part->nchannels_active); in xpc_process_disconnect()
168 if (part->act_state != XPC_P_AS_DEACTIVATING) { in xpc_process_disconnect()
170 spin_lock(&part->chctl_lock); in xpc_process_disconnect()
171 part->chctl.flags[ch->number] |= in xpc_process_disconnect()
173 spin_unlock(&part->chctl_lock); in xpc_process_disconnect()
183 xpc_process_openclose_chctl_flags(struct xpc_partition *part, int ch_number, in xpc_process_openclose_chctl_flags() argument
188 &part->remote_openclose_args[ch_number]; in xpc_process_openclose_chctl_flags()
189 struct xpc_channel *ch = &part->channels[ch_number]; in xpc_process_openclose_chctl_flags()
[all …]
Dxpc_sn2.c268 xpc_check_for_sent_chctl_flags_sn2(struct xpc_partition *part) in xpc_check_for_sent_chctl_flags_sn2() argument
273 chctl.all_flags = xpc_receive_IRQ_amo_sn2(part->sn.sn2. in xpc_check_for_sent_chctl_flags_sn2()
278 spin_lock_irqsave(&part->chctl_lock, irq_flags); in xpc_check_for_sent_chctl_flags_sn2()
279 part->chctl.all_flags |= chctl.all_flags; in xpc_check_for_sent_chctl_flags_sn2()
280 spin_unlock_irqrestore(&part->chctl_lock, irq_flags); in xpc_check_for_sent_chctl_flags_sn2()
283 "0x%llx\n", XPC_PARTID(part), chctl.all_flags); in xpc_check_for_sent_chctl_flags_sn2()
285 xpc_wakeup_channel_mgr(part); in xpc_check_for_sent_chctl_flags_sn2()
308 struct xpc_partition *part = &xpc_partitions[partid]; in xpc_handle_notify_IRQ_sn2() local
312 if (xpc_part_ref(part)) { in xpc_handle_notify_IRQ_sn2()
313 xpc_check_for_sent_chctl_flags_sn2(part); in xpc_handle_notify_IRQ_sn2()
[all …]
Dxpc.h937 xpc_wakeup_channel_mgr(struct xpc_partition *part) in xpc_wakeup_channel_mgr() argument
939 if (atomic_inc_return(&part->channel_mgr_requests) == 1) in xpc_wakeup_channel_mgr()
940 wake_up(&part->channel_mgr_wq); in xpc_wakeup_channel_mgr()
971 xpc_part_deref(struct xpc_partition *part) in xpc_part_deref() argument
973 s32 refs = atomic_dec_return(&part->references); in xpc_part_deref()
976 if (refs == 0 && part->setup_state == XPC_P_SS_WTEARDOWN) in xpc_part_deref()
977 wake_up(&part->teardown_wq); in xpc_part_deref()
981 xpc_part_ref(struct xpc_partition *part) in xpc_part_ref() argument
985 atomic_inc(&part->references); in xpc_part_ref()
986 setup = (part->setup_state == XPC_P_SS_SETUP); in xpc_part_ref()
[all …]
/linux-4.1.27/drivers/acpi/acpica/
Dutmath.c68 struct uint64_struct part; member
112 ACPI_DIV_64_BY_32(0, dividend_ovl.part.hi, divisor, in acpi_ut_short_divide()
113 quotient.part.hi, remainder32); in acpi_ut_short_divide()
114 ACPI_DIV_64_BY_32(remainder32, dividend_ovl.part.lo, divisor, in acpi_ut_short_divide()
115 quotient.part.lo, remainder32); in acpi_ut_short_divide()
169 if (divisor.part.hi == 0) { in acpi_ut_divide()
174 remainder.part.hi = 0; in acpi_ut_divide()
180 ACPI_DIV_64_BY_32(0, dividend.part.hi, divisor.part.lo, in acpi_ut_divide()
181 quotient.part.hi, partial1); in acpi_ut_divide()
182 ACPI_DIV_64_BY_32(partial1, dividend.part.lo, divisor.part.lo, in acpi_ut_divide()
[all …]
/linux-4.1.27/drivers/net/ethernet/sfc/
Dmtd.c42 struct efx_mtd_partition *part = to_efx_mtd_partition(mtd); in efx_mtd_sync() local
49 part->name, part->dev_type_name, rc); in efx_mtd_sync()
52 static void efx_mtd_remove_partition(struct efx_mtd_partition *part) in efx_mtd_remove_partition() argument
57 rc = mtd_device_unregister(&part->mtd); in efx_mtd_remove_partition()
63 list_del(&part->node); in efx_mtd_remove_partition()
69 struct efx_mtd_partition *part; in efx_mtd_add() local
73 part = (struct efx_mtd_partition *)((char *)parts + in efx_mtd_add()
76 part->mtd.writesize = 1; in efx_mtd_add()
78 part->mtd.owner = THIS_MODULE; in efx_mtd_add()
79 part->mtd.priv = efx; in efx_mtd_add()
[all …]
Dmcdi.c1785 struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd); in efx_mcdi_mtd_read() local
1794 rc = efx_mcdi_nvram_read(efx, part->nvram_type, offset, in efx_mcdi_mtd_read()
1808 struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd); in efx_mcdi_mtd_erase() local
1812 size_t chunk = part->common.mtd.erasesize; in efx_mcdi_mtd_erase()
1815 if (!part->updating) { in efx_mcdi_mtd_erase()
1816 rc = efx_mcdi_nvram_update_start(efx, part->nvram_type); in efx_mcdi_mtd_erase()
1819 part->updating = true; in efx_mcdi_mtd_erase()
1826 rc = efx_mcdi_nvram_erase(efx, part->nvram_type, offset, in efx_mcdi_mtd_erase()
1839 struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd); in efx_mcdi_mtd_write() local
1846 if (!part->updating) { in efx_mcdi_mtd_write()
[all …]
Dfalcon.c725 falcon_spi_slow_wait(struct falcon_mtd_partition *part, bool uninterruptible) in falcon_spi_slow_wait() argument
727 const struct falcon_spi_device *spi = part->spi; in falcon_spi_slow_wait()
728 struct efx_nic *efx = part->common.mtd.priv; in falcon_spi_slow_wait()
747 part->common.name, part->common.dev_type_name); in falcon_spi_slow_wait()
789 falcon_spi_erase(struct falcon_mtd_partition *part, loff_t start, size_t len) in falcon_spi_erase() argument
791 const struct falcon_spi_device *spi = part->spi; in falcon_spi_erase()
792 struct efx_nic *efx = part->common.mtd.priv; in falcon_spi_erase()
814 rc = falcon_spi_slow_wait(part, false); in falcon_spi_erase()
836 static void falcon_mtd_rename(struct efx_mtd_partition *part) in falcon_mtd_rename() argument
838 struct efx_nic *efx = part->mtd.priv; in falcon_mtd_rename()
[all …]
Dsiena.c803 struct efx_mcdi_mtd_partition *part, in siena_mtd_probe_partition() argument
826 part->nvram_type = type; in siena_mtd_probe_partition()
827 part->common.dev_type_name = "Siena NVRAM manager"; in siena_mtd_probe_partition()
828 part->common.type_name = info->name; in siena_mtd_probe_partition()
830 part->common.mtd.type = MTD_NORFLASH; in siena_mtd_probe_partition()
831 part->common.mtd.flags = MTD_CAP_NORFLASH; in siena_mtd_probe_partition()
832 part->common.mtd.size = size; in siena_mtd_probe_partition()
833 part->common.mtd.erasesize = erase_size; in siena_mtd_probe_partition()
/linux-4.1.27/include/linux/
Dgenhd.h22 #define part_to_dev(part) (&((part)->__dev)) argument
160 struct hd_struct __rcu *part[]; member
205 static inline struct gendisk *part_to_disk(struct hd_struct *part) in part_to_disk() argument
207 if (likely(part)) { in part_to_disk()
208 if (part->partno) in part_to_disk()
209 return dev_to_disk(part_to_dev(part)->parent); in part_to_disk()
211 return dev_to_disk(part_to_dev(part)); in part_to_disk()
258 static inline dev_t part_devt(struct hd_struct *part) in part_devt() argument
260 return part_to_dev(part)->devt; in part_devt()
265 static inline void disk_put_part(struct hd_struct *part) in disk_put_part() argument
[all …]
Dpstore.h64 unsigned int part, int count, bool compressed,
68 unsigned int part, const char *buf, bool compressed,
/linux-4.1.27/arch/arm/mach-omap2/
Dcminst44xx.c76 static u32 omap4_cminst_read_inst_reg(u8 part, u16 inst, u16 idx);
87 static u32 _clkctrl_idlest(u8 part, u16 inst, u16 clkctrl_offs) in _clkctrl_idlest() argument
89 u32 v = omap4_cminst_read_inst_reg(part, inst, clkctrl_offs); in _clkctrl_idlest()
104 static bool _is_module_ready(u8 part, u16 inst, u16 clkctrl_offs) in _is_module_ready() argument
108 v = _clkctrl_idlest(part, inst, clkctrl_offs); in _is_module_ready()
115 static u32 omap4_cminst_read_inst_reg(u8 part, u16 inst, u16 idx) in omap4_cminst_read_inst_reg() argument
117 BUG_ON(part >= OMAP4_MAX_PRCM_PARTITIONS || in omap4_cminst_read_inst_reg()
118 part == OMAP4430_INVALID_PRCM_PARTITION || in omap4_cminst_read_inst_reg()
119 !_cm_bases[part]); in omap4_cminst_read_inst_reg()
120 return readl_relaxed(_cm_bases[part] + inst + idx); in omap4_cminst_read_inst_reg()
[all …]
Dprminst44xx.c59 u32 omap4_prminst_read_inst_reg(u8 part, s16 inst, u16 idx) in omap4_prminst_read_inst_reg() argument
61 BUG_ON(part >= OMAP4_MAX_PRCM_PARTITIONS || in omap4_prminst_read_inst_reg()
62 part == OMAP4430_INVALID_PRCM_PARTITION || in omap4_prminst_read_inst_reg()
63 !_prm_bases[part]); in omap4_prminst_read_inst_reg()
64 return readl_relaxed(_prm_bases[part] + inst + idx); in omap4_prminst_read_inst_reg()
68 void omap4_prminst_write_inst_reg(u32 val, u8 part, s16 inst, u16 idx) in omap4_prminst_write_inst_reg() argument
70 BUG_ON(part >= OMAP4_MAX_PRCM_PARTITIONS || in omap4_prminst_write_inst_reg()
71 part == OMAP4430_INVALID_PRCM_PARTITION || in omap4_prminst_write_inst_reg()
72 !_prm_bases[part]); in omap4_prminst_write_inst_reg()
73 writel_relaxed(val, _prm_bases[part] + inst + idx); in omap4_prminst_write_inst_reg()
[all …]
Dprm.h143 bool (*was_any_context_lost_old)(u8 part, s16 inst, u16 idx);
144 void (*clear_context_loss_flags_old)(u8 part, s16 inst, u16 idx);
146 int (*assert_hardreset)(u8 shift, u8 part, s16 prm_mod, u16 offset);
147 int (*deassert_hardreset)(u8 shift, u8 st_shift, u8 part, s16 prm_mod,
149 int (*is_hardreset_asserted)(u8 shift, u8 part, s16 prm_mod,
160 int omap_prm_assert_hardreset(u8 shift, u8 part, s16 prm_mod, u16 offset);
161 int omap_prm_deassert_hardreset(u8 shift, u8 st_shift, u8 part, s16 prm_mod,
163 int omap_prm_is_hardreset_asserted(u8 shift, u8 part, s16 prm_mod, u16 offset);
165 extern bool prm_was_any_context_lost_old(u8 part, s16 inst, u16 idx);
166 extern void prm_clear_context_loss_flags_old(u8 part, s16 inst, u16 idx);
Dcm.h55 int (*wait_module_ready)(u8 part, s16 prcm_mod, u16 idlest_reg,
57 int (*wait_module_idle)(u8 part, s16 prcm_mod, u16 idlest_reg,
59 void (*module_enable)(u8 mode, u8 part, u16 inst, u16 clkctrl_offs);
60 void (*module_disable)(u8 part, u16 inst, u16 clkctrl_offs);
65 int omap_cm_wait_module_ready(u8 part, s16 prcm_mod, u16 idlest_reg,
67 int omap_cm_wait_module_idle(u8 part, s16 prcm_mod, u16 idlest_reg,
69 int omap_cm_module_enable(u8 mode, u8 part, u16 inst, u16 clkctrl_offs);
70 int omap_cm_module_disable(u8 part, u16 inst, u16 clkctrl_offs);
Dprminst44xx.h23 extern u32 omap4_prminst_read_inst_reg(u8 part, s16 inst, u16 idx);
24 extern void omap4_prminst_write_inst_reg(u32 val, u8 part, s16 inst, u16 idx);
25 extern u32 omap4_prminst_rmw_inst_reg_bits(u32 mask, u32 bits, u8 part,
30 extern int omap4_prminst_is_hardreset_asserted(u8 shift, u8 part, s16 inst,
32 extern int omap4_prminst_assert_hardreset(u8 shift, u8 part, s16 inst,
34 int omap4_prminst_deassert_hardreset(u8 shift, u8 st_shift, u8 part,
Dcm_common.c94 int omap_cm_wait_module_ready(u8 part, s16 prcm_mod, u16 idlest_reg, in omap_cm_wait_module_ready() argument
103 return cm_ll_data->wait_module_ready(part, prcm_mod, idlest_reg, in omap_cm_wait_module_ready()
120 int omap_cm_wait_module_idle(u8 part, s16 prcm_mod, u16 idlest_reg, in omap_cm_wait_module_idle() argument
129 return cm_ll_data->wait_module_idle(part, prcm_mod, idlest_reg, in omap_cm_wait_module_idle()
144 int omap_cm_module_enable(u8 mode, u8 part, u16 inst, u16 clkctrl_offs) in omap_cm_module_enable() argument
152 cm_ll_data->module_enable(mode, part, inst, clkctrl_offs); in omap_cm_module_enable()
166 int omap_cm_module_disable(u8 part, u16 inst, u16 clkctrl_offs) in omap_cm_module_disable() argument
174 cm_ll_data->module_disable(part, inst, clkctrl_offs); in omap_cm_module_disable()
Dprm_common.c408 bool prm_was_any_context_lost_old(u8 part, s16 inst, u16 idx) in prm_was_any_context_lost_old() argument
413 ret = prm_ll_data->was_any_context_lost_old(part, inst, idx); in prm_was_any_context_lost_old()
432 void prm_clear_context_loss_flags_old(u8 part, s16 inst, u16 idx) in prm_clear_context_loss_flags_old() argument
435 prm_ll_data->clear_context_loss_flags_old(part, inst, idx); in prm_clear_context_loss_flags_old()
450 int omap_prm_assert_hardreset(u8 shift, u8 part, s16 prm_mod, u16 offset) in omap_prm_assert_hardreset() argument
458 return prm_ll_data->assert_hardreset(shift, part, prm_mod, offset); in omap_prm_assert_hardreset()
472 int omap_prm_deassert_hardreset(u8 shift, u8 st_shift, u8 part, s16 prm_mod, in omap_prm_deassert_hardreset() argument
481 return prm_ll_data->deassert_hardreset(shift, st_shift, part, prm_mod, in omap_prm_deassert_hardreset()
494 int omap_prm_is_hardreset_asserted(u8 shift, u8 part, s16 prm_mod, u16 offset) in omap_prm_is_hardreset_asserted() argument
502 return prm_ll_data->is_hardreset_asserted(shift, part, prm_mod, offset); in omap_prm_is_hardreset_asserted()
Dcm33xx.c218 static int am33xx_cm_wait_module_ready(u8 part, s16 inst, u16 clkctrl_offs, in am33xx_cm_wait_module_ready() argument
241 static int am33xx_cm_wait_module_idle(u8 part, s16 inst, u16 clkctrl_offs, in am33xx_cm_wait_module_idle() argument
265 static void am33xx_cm_module_enable(u8 mode, u8 part, u16 inst, in am33xx_cm_module_enable() argument
284 static void am33xx_cm_module_disable(u8 part, u16 inst, u16 clkctrl_offs) in am33xx_cm_module_disable() argument
Dprm2xxx_3xxx.h103 int omap2_prm_is_hardreset_asserted(u8 shift, u8 part, s16 prm_mod, u16 offset);
104 int omap2_prm_assert_hardreset(u8 shift, u8 part, s16 prm_mod,
106 int omap2_prm_deassert_hardreset(u8 rst_shift, u8 st_shift, u8 part,
Dprm2xxx_3xxx.c36 int omap2_prm_is_hardreset_asserted(u8 shift, u8 part, s16 prm_mod, u16 offset) in omap2_prm_is_hardreset_asserted() argument
56 int omap2_prm_assert_hardreset(u8 shift, u8 part, s16 prm_mod, u16 offset) in omap2_prm_assert_hardreset() argument
85 int omap2_prm_deassert_hardreset(u8 rst_shift, u8 st_shift, u8 part, in omap2_prm_deassert_hardreset() argument
Dprm33xx.c67 static int am33xx_prm_is_hardreset_asserted(u8 shift, u8 part, s16 inst, in am33xx_prm_is_hardreset_asserted() argument
93 static int am33xx_prm_assert_hardreset(u8 shift, u8 part, s16 inst, in am33xx_prm_assert_hardreset() argument
122 static int am33xx_prm_deassert_hardreset(u8 shift, u8 st_shift, u8 part, in am33xx_prm_deassert_hardreset() argument
Dprm44xx.c396 static bool omap44xx_prm_was_any_context_lost_old(u8 part, s16 inst, u16 idx) in omap44xx_prm_was_any_context_lost_old() argument
398 return (omap4_prminst_read_inst_reg(part, inst, idx)) ? 1 : 0; in omap44xx_prm_was_any_context_lost_old()
411 static void omap44xx_prm_clear_context_loss_flags_old(u8 part, s16 inst, in omap44xx_prm_clear_context_loss_flags_old() argument
414 omap4_prminst_write_inst_reg(0xffffffff, part, inst, idx); in omap44xx_prm_clear_context_loss_flags_old()
Dcm2xxx.h57 int omap2xxx_cm_wait_module_ready(u8 part, s16 prcm_mod, u16 idlest_id,
Dboard-flash.h33 static inline void board_flash_init(struct flash_partitions part[], in board_flash_init() argument
/linux-4.1.27/lib/
Dflex_array.c168 struct flex_array_part *part = fa->parts[part_nr]; in __fa_get_part() local
169 if (!part) { in __fa_get_part()
170 part = kmalloc(sizeof(struct flex_array_part), flags); in __fa_get_part()
171 if (!part) in __fa_get_part()
174 memset(part, FLEX_ARRAY_FREE, in __fa_get_part()
176 fa->parts[part_nr] = part; in __fa_get_part()
178 return part; in __fa_get_part()
202 struct flex_array_part *part; in flex_array_put() local
210 part = (struct flex_array_part *)&fa->parts[0]; in flex_array_put()
213 part = __fa_get_part(fa, part_nr, flags); in flex_array_put()
[all …]
Dlist_sort.c108 struct list_head *part[MAX_LIST_LENGTH_BITS+1]; /* sorted partial lists in list_sort() local
117 memset(part, 0, sizeof(part)); in list_sort()
127 for (lev = 0; part[lev]; lev++) { in list_sort()
128 cur = merge(priv, cmp, part[lev], cur); in list_sort()
129 part[lev] = NULL; in list_sort()
132 if (unlikely(lev >= ARRAY_SIZE(part)-1)) { in list_sort()
138 part[lev] = cur; in list_sort()
142 if (part[lev]) in list_sort()
143 list = merge(priv, cmp, part[lev], list); in list_sort()
145 merge_and_restore_back_links(priv, cmp, head, part[max_lev], list); in list_sort()
/linux-4.1.27/block/partitions/
Dmac.c15 extern void note_bootable_part(dev_t dev, int part, int goodness);
40 struct mac_partition *part; in mac_partition() local
56 part = (struct mac_partition *) (data + secsize%512); in mac_partition()
57 if (be16_to_cpu(part->signature) != MAC_PARTITION_MAGIC) { in mac_partition()
61 blocks_in_map = be32_to_cpu(part->map_count); in mac_partition()
77 part = (struct mac_partition *) (data + pos%512); in mac_partition()
78 if (be16_to_cpu(part->signature) != MAC_PARTITION_MAGIC) in mac_partition()
81 be32_to_cpu(part->start_block) * (secsize/512), in mac_partition()
82 be32_to_cpu(part->block_count) * (secsize/512)); in mac_partition()
84 if (!strncasecmp(part->type, "Linux_RAID", 10)) in mac_partition()
[all …]
Datari.c51 if (!VALID_PARTITION(&rs->part[0], hd_size) && in atari_partition()
52 !VALID_PARTITION(&rs->part[1], hd_size) && in atari_partition()
53 !VALID_PARTITION(&rs->part[2], hd_size) && in atari_partition()
54 !VALID_PARTITION(&rs->part[3], hd_size)) { in atari_partition()
64 pi = &rs->part[0]; in atari_partition()
66 for (slot = 1; pi < &rs->part[4] && slot < state->limit; slot++, pi++) { in atari_partition()
95 if (!(xrs->part[0].flg & 1)) { in atari_partition()
102 partsect + be32_to_cpu(xrs->part[0].st), in atari_partition()
103 be32_to_cpu(xrs->part[0].siz)); in atari_partition()
105 if (!(xrs->part[1].flg & 1)) { in atari_partition()
[all …]
Dacorn.c71 struct riscix_part part[8]; member
92 int part; in riscix_partition() local
97 for (part = 0; part < 8; part++) { in riscix_partition()
98 if (rr->part[part].one && in riscix_partition()
99 memcmp(rr->part[part].name, "All\0", 4)) { in riscix_partition()
101 le32_to_cpu(rr->part[part].start), in riscix_partition()
102 le32_to_cpu(rr->part[part].length)); in riscix_partition()
104 strlcat(state->pp_buf, rr->part[part].name, PAGE_SIZE); in riscix_partition()
Damiga.c34 int start_sect, nr_sects, blk, part, res = 0; in amiga_partition() local
83 for (part = 1; blk>0 && part<=16; part++, put_dev_sector(sect)) { in amiga_partition()
Dldm.c642 struct vblk_part *part; in ldm_create_data_partitions() local
658 part = &vb->vblk.part; in ldm_create_data_partitions()
660 if (part->disk_id != disk->obj_id) in ldm_create_data_partitions()
664 part->start, part->size); in ldm_create_data_partitions()
1000 struct vblk_part *part; in ldm_parse_prt3() local
1049 part = &vb->vblk.part; in ldm_parse_prt3()
1050 part->start = get_unaligned_be64(buffer + 0x24 + r_name); in ldm_parse_prt3()
1051 part->volume_offset = get_unaligned_be64(buffer + 0x2C + r_name); in ldm_parse_prt3()
1052 part->size = ldm_get_vnum(buffer + 0x34 + r_name); in ldm_parse_prt3()
1053 part->parent_id = ldm_get_vnum(buffer + 0x34 + r_size); in ldm_parse_prt3()
[all …]
Defi.c156 static inline int pmbr_part_valid(gpt_mbr_record *part) in pmbr_part_valid() argument
158 if (part->os_type != EFI_PMBR_OSTYPE_EFI_GPT) in pmbr_part_valid()
162 if (le32_to_cpu(part->starting_lba) != GPT_PRIMARY_PARTITION_TABLE_LBA) in pmbr_part_valid()
191 int i, part = 0, ret = 0; /* invalid by default */ in is_pmbr_valid() local
199 part = i; in is_pmbr_valid()
231 sz = le32_to_cpu(mbr->partition_record[part].size_in_lba); in is_pmbr_valid()
Datari.h30 struct partition_info part[4]; member
/linux-4.1.27/arch/powerpc/kernel/
Dnvram_64.c191 int nvram_write_os_partition(struct nvram_os_partition *part, in nvram_write_os_partition() argument
200 if (part->index == -1) in nvram_write_os_partition()
203 if (length > part->size) in nvram_write_os_partition()
204 length = part->size; in nvram_write_os_partition()
209 tmp_index = part->index; in nvram_write_os_partition()
231 int nvram_read_partition(struct nvram_os_partition *part, char *buff, in nvram_read_partition() argument
239 if (part->index == -1) in nvram_read_partition()
242 if (length > part->size) in nvram_read_partition()
243 length = part->size; in nvram_read_partition()
245 tmp_index = part->index; in nvram_read_partition()
[all …]
Dptrace32.c127 u32 part; in compat_arch_ptrace() local
135 part = 1; /* want the 2nd half of the register (right-most). */ in compat_arch_ptrace()
137 part = 0; /* want the 1st half of the register (left-most). */ in compat_arch_ptrace()
157 reg32bits = ((u32*)&tmp)[part]; in compat_arch_ptrace()
/linux-4.1.27/drivers/net/wireless/ti/wlcore/
Dio.c71 struct wlcore_partition_set *part = &wl->curr_part; in wlcore_translate_addr() local
83 if ((addr >= part->mem.start) && in wlcore_translate_addr()
84 (addr < part->mem.start + part->mem.size)) in wlcore_translate_addr()
85 return addr - part->mem.start; in wlcore_translate_addr()
86 else if ((addr >= part->reg.start) && in wlcore_translate_addr()
87 (addr < part->reg.start + part->reg.size)) in wlcore_translate_addr()
88 return addr - part->reg.start + part->mem.size; in wlcore_translate_addr()
89 else if ((addr >= part->mem2.start) && in wlcore_translate_addr()
90 (addr < part->mem2.start + part->mem2.size)) in wlcore_translate_addr()
91 return addr - part->mem2.start + part->mem.size + in wlcore_translate_addr()
[all …]
Ddebugfs.c1049 struct wlcore_partition_set part, old_part; in dev_mem_read() local
1067 memset(&part, 0, sizeof(part)); in dev_mem_read()
1068 part.mem.start = *ppos; in dev_mem_read()
1069 part.mem.size = bytes; in dev_mem_read()
1090 ret = wlcore_set_partition(wl, &part); in dev_mem_read()
1130 struct wlcore_partition_set part, old_part; in dev_mem_write() local
1148 memset(&part, 0, sizeof(part)); in dev_mem_write()
1149 part.mem.start = *ppos; in dev_mem_write()
1150 part.mem.size = bytes; in dev_mem_write()
1177 ret = wlcore_set_partition(wl, &part); in dev_mem_write()
/linux-4.1.27/block/
Dgenhd.c62 struct hd_struct *part = NULL; in disk_get_part() local
72 part = rcu_dereference(ptbl->part[partno]); in disk_get_part()
73 if (part) in disk_get_part()
74 get_device(part_to_dev(part)); in disk_get_part()
79 return part; in disk_get_part()
103 piter->part = NULL; in disk_part_iter_init()
133 disk_put_part(piter->part); in disk_part_iter_next()
134 piter->part = NULL; in disk_part_iter_next()
155 struct hd_struct *part; in disk_part_iter_next() local
157 part = rcu_dereference(ptbl->part[piter->idx]); in disk_part_iter_next()
[all …]
Dioctl.c16 struct hd_struct *part, *lpart; in blkpg_ioctl() local
53 while ((part = disk_part_iter_next(&piter))) { in blkpg_ioctl()
54 if (!(start + length <= part->start_sect || in blkpg_ioctl()
55 start >= part->start_sect + part->nr_sects)) { in blkpg_ioctl()
64 part = add_partition(disk, partno, start, length, in blkpg_ioctl()
67 return PTR_ERR_OR_ZERO(part); in blkpg_ioctl()
69 part = disk_get_part(disk, partno); in blkpg_ioctl()
70 if (!part) in blkpg_ioctl()
73 bdevp = bdget(part_devt(part)); in blkpg_ioctl()
74 disk_put_part(part); in blkpg_ioctl()
[all …]
Dpartition-generic.c228 struct hd_struct *part = container_of(head, struct hd_struct, rcu_head); in delete_partition_rcu_cb() local
230 part->start_sect = 0; in delete_partition_rcu_cb()
231 part->nr_sects = 0; in delete_partition_rcu_cb()
232 part_stat_set_all(part, 0); in delete_partition_rcu_cb()
233 put_device(part_to_dev(part)); in delete_partition_rcu_cb()
236 void __delete_partition(struct hd_struct *part) in __delete_partition() argument
238 call_rcu(&part->rcu_head, delete_partition_rcu_cb); in __delete_partition()
244 struct hd_struct *part; in delete_partition() local
249 part = ptbl->part[partno]; in delete_partition()
250 if (!part) in delete_partition()
[all …]
Dblk-core.c113 rq->part = NULL; in blk_rq_init()
1324 static void part_round_stats_single(int cpu, struct hd_struct *part, in part_round_stats_single() argument
1329 if (now == part->stamp) in part_round_stats_single()
1332 inflight = part_in_flight(part); in part_round_stats_single()
1334 __part_stat_add(cpu, part, time_in_queue, in part_round_stats_single()
1335 inflight * (now - part->stamp)); in part_round_stats_single()
1336 __part_stat_add(cpu, part, io_ticks, (now - part->stamp)); in part_round_stats_single()
1338 part->stamp = now; in part_round_stats_single()
1357 void part_round_stats(int cpu, struct hd_struct *part) in part_round_stats() argument
1361 if (part->partno) in part_round_stats()
[all …]
Dblk-merge.c445 struct hd_struct *part; in blk_account_io_merge() local
449 part = req->part; in blk_account_io_merge()
451 part_round_stats(cpu, part); in blk_account_io_merge()
452 part_dec_in_flight(part, rq_data_dir(req)); in blk_account_io_merge()
454 hd_struct_put(part); in blk_account_io_merge()
Dbio.c1708 struct hd_struct *part) in generic_start_io_acct() argument
1712 part_round_stats(cpu, part); in generic_start_io_acct()
1713 part_stat_inc(cpu, part, ios[rw]); in generic_start_io_acct()
1714 part_stat_add(cpu, part, sectors[rw], sectors); in generic_start_io_acct()
1715 part_inc_in_flight(part, rw); in generic_start_io_acct()
1721 void generic_end_io_acct(int rw, struct hd_struct *part, in generic_end_io_acct() argument
1727 part_stat_add(cpu, part, ticks[rw], duration); in generic_end_io_acct()
1728 part_round_stats(cpu, part); in generic_end_io_acct()
1729 part_dec_in_flight(part, rw); in generic_end_io_acct()
/linux-4.1.27/sound/soc/intel/atom/sst/
Dsst_ipc.c137 while (header.p.header_high.part.busy) { in sst_post_message_mrfld()
157 if (header.p.header_high.part.busy) { in sst_post_message_mrfld()
173 if (msg->mrfld_header.p.header_high.part.large) in sst_post_message_mrfld()
199 isr.part.busy_interrupt = 1; in intel_sst_clear_intr_mrfld()
205 clear_ipc.p.header_high.part.busy = 0; in intel_sst_clear_intr_mrfld()
206 clear_ipc.p.header_high.part.done = 1; in intel_sst_clear_intr_mrfld()
210 imr.part.busy_interrupt = 0; in intel_sst_clear_intr_mrfld()
330 drv_id = msg_high.part.drv_id; in sst_process_reply_mrfld()
340 if (msg_high.part.result && drv_id && !msg_high.part.large) { in sst_process_reply_mrfld()
343 sst_wake_up_block(sst_drv_ctx, msg_high.part.result, in sst_process_reply_mrfld()
[all …]
Dsst_pvt.c259 msg->mrfld_header.p.header_high.part.res_rqd = !sync; in sst_prepare_and_post_msg()
263 msg->mrfld_header.p.header_high.part.res_rqd); in sst_prepare_and_post_msg()
317 header->p.header_high.part.msg_id = msg; in sst_fill_header_mrfld()
318 header->p.header_high.part.task_id = task_id; in sst_fill_header_mrfld()
319 header->p.header_high.part.large = large; in sst_fill_header_mrfld()
320 header->p.header_high.part.drv_id = drv_id; in sst_fill_header_mrfld()
321 header->p.header_high.part.done = 0; in sst_fill_header_mrfld()
322 header->p.header_high.part.busy = 1; in sst_fill_header_mrfld()
323 header->p.header_high.part.res_rqd = 1; in sst_fill_header_mrfld()
Dsst.h86 } part; member
97 } part; member
113 } part; member
133 } part; member
142 } part; member
151 } part; member
Dsst.c65 if (isr.part.done_interrupt) { in intel_sst_interrupt_mrfld()
70 header.p.header_high.part.done = 0; in intel_sst_interrupt_mrfld()
74 isr.part.done_interrupt = 1; in intel_sst_interrupt_mrfld()
83 if (isr.part.busy_interrupt) { in intel_sst_interrupt_mrfld()
87 imr.part.busy_interrupt = 1; in intel_sst_interrupt_mrfld()
92 if (sst_create_ipc_msg(&msg, header.p.header_high.part.large)) { in intel_sst_interrupt_mrfld()
97 if (header.p.header_high.part.large) { in intel_sst_interrupt_mrfld()
111 sst_is_process_reply(header.p.header_high.part.msg_id); in intel_sst_interrupt_mrfld()
/linux-4.1.27/drivers/firmware/efi/
Defi-pstore.c41 unsigned int part, int count) in generic_id() argument
43 return ((u64) timestamp * 100 + part) * 1000 + count; in generic_id()
53 unsigned int part; in efi_pstore_read_func() local
63 cb_data->type, &part, &cnt, &time, &data_type) == 5) { in efi_pstore_read_func()
64 *cb_data->id = generic_id(time, part, cnt); in efi_pstore_read_func()
73 cb_data->type, &part, &cnt, &time) == 4) { in efi_pstore_read_func()
74 *cb_data->id = generic_id(time, part, cnt); in efi_pstore_read_func()
80 cb_data->type, &part, &time) == 3) { in efi_pstore_read_func()
86 *cb_data->id = generic_id(time, part, 0); in efi_pstore_read_func()
240 unsigned int part, int count, bool compressed, size_t size, in efi_pstore_write() argument
[all …]
/linux-4.1.27/arch/metag/mm/
Dcache.c204 int part, offset; in metag_phys_data_cache_flush() local
219 part = metag_in32(SYSC_DCPART0 + in metag_phys_data_cache_flush()
224 part >>= SYSC_xCPARTG_AND_S in metag_phys_data_cache_flush()
228 offset = (part & SYSC_xCPARTL_OR_BITS) in metag_phys_data_cache_flush()
233 part = (part & SYSC_xCPARTL_AND_BITS) in metag_phys_data_cache_flush()
235 loops = ((part + 1) << (set_shift - 4)); in metag_phys_data_cache_flush()
350 int part, offset; in metag_phys_code_cache_flush() local
362 part = metag_in32(SYSC_ICPART0 + in metag_phys_code_cache_flush()
367 part >>= SYSC_xCPARTG_AND_S-SYSC_xCPARTL_AND_S; in metag_phys_code_cache_flush()
370 offset = (part & SYSC_xCPARTL_OR_BITS) in metag_phys_code_cache_flush()
[all …]
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/dmaobj/
Dnv50.c94 u32 user, part, comp, kind; in nv50_dmaobj_ctor() local
107 args->v0.priv, args->v0.part, args->v0.comp, in nv50_dmaobj_ctor()
110 part = args->v0.part; in nv50_dmaobj_ctor()
117 part = NV50_DMA_V0_PART_256; in nv50_dmaobj_ctor()
122 part = NV50_DMA_V0_PART_VM; in nv50_dmaobj_ctor()
129 if (user > 2 || part > 2 || comp > 3 || kind > 0x7f) in nv50_dmaobj_ctor()
132 priv->flags5 = (part << 16); in nv50_dmaobj_ctor()
/linux-4.1.27/drivers/macintosh/
Dnvram.c84 int part, offset; in nvram_ioctl() local
85 if (copy_from_user(&part, (void __user*)arg, sizeof(part)) != 0) in nvram_ioctl()
87 if (part < pmac_nvram_OF || part > pmac_nvram_NR) in nvram_ioctl()
89 offset = pmac_get_partition(part); in nvram_ioctl()
Dsmu.c1014 const struct smu_sdbp_header *part; in __smu_get_sdb_partition() local
1031 part = of_get_property(smu->of_node, pname, size); in __smu_get_sdb_partition()
1032 if (part == NULL) { in __smu_get_sdb_partition()
1034 part = smu_create_sdb_partition(id); in __smu_get_sdb_partition()
1035 if (part != NULL && size) in __smu_get_sdb_partition()
1036 *size = part->len << 2; in __smu_get_sdb_partition()
1039 return part; in __smu_get_sdb_partition()
1122 const struct smu_sdbp_header *part; in smu_write() local
1123 part = __smu_get_sdb_partition(hdr.cmd, NULL, 1); in smu_write()
1124 if (part == NULL) in smu_write()
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/net/
Dsh_eth.txt7 - compatible: "renesas,gether-r8a7740" if the device is a part of R8A7740 SoC.
8 "renesas,ether-r8a7778" if the device is a part of R8A7778 SoC.
9 "renesas,ether-r8a7779" if the device is a part of R8A7779 SoC.
10 "renesas,ether-r8a7790" if the device is a part of R8A7790 SoC.
11 "renesas,ether-r8a7791" if the device is a part of R8A7791 SoC.
12 "renesas,ether-r8a7793" if the device is a part of R8A7793 SoC.
13 "renesas,ether-r8a7794" if the device is a part of R8A7794 SoC.
14 "renesas,ether-r7s72100" if the device is a part of R7S72100 SoC.
/linux-4.1.27/drivers/char/
Dgeneric_nvram.c100 int part, offset; in nvram_ioctl() local
104 if (copy_from_user(&part, (void __user*)arg, sizeof(part)) != 0) in nvram_ioctl()
106 if (part < pmac_nvram_OF || part > pmac_nvram_NR) in nvram_ioctl()
108 offset = pmac_get_partition(part); in nvram_ioctl()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
Dnv44.c94 u32 part = (cnt > max) ? max : cnt; in nv44_vm_map_sg() local
95 nv44_vm_fill(pgt, priv->null, list, pte, part); in nv44_vm_map_sg()
96 pte += part; in nv44_vm_map_sg()
97 list += part; in nv44_vm_map_sg()
98 cnt -= part; in nv44_vm_map_sg()
122 u32 part = (cnt > max) ? max : cnt; in nv44_vm_unmap() local
123 nv44_vm_fill(pgt, priv->null, NULL, pte, part); in nv44_vm_unmap()
124 pte += part; in nv44_vm_unmap()
125 cnt -= part; in nv44_vm_unmap()
/linux-4.1.27/init/
Ddo_mounts.c89 struct hd_struct *part = dev_to_part(dev); in match_dev_by_uuid() local
91 if (!part->info) in match_dev_by_uuid()
94 if (strncasecmp(cmp->uuid, part->info->uuid, cmp->len)) in match_dev_by_uuid()
122 struct hd_struct *part; in devt_from_partuuid() local
162 part = disk_get_part(disk, dev_to_part(dev)->partno + offset); in devt_from_partuuid()
163 if (part) { in devt_from_partuuid()
164 res = part_devt(part); in devt_from_partuuid()
165 put_device(part_to_dev(part)); in devt_from_partuuid()
215 int part; in name_to_dev_t() local
272 part = simple_strtoul(p, NULL, 10); in name_to_dev_t()
[all …]
/linux-4.1.27/arch/x86/platform/uv/
Dbios_uv.c91 union partition_info_u part; in uv_bios_get_sn_info() local
98 part.val = v0; in uv_bios_get_sn_info()
100 *uvtype = part.hub_version; in uv_bios_get_sn_info()
102 *partid = part.partition_id; in uv_bios_get_sn_info()
104 *coher = part.coherence_id; in uv_bios_get_sn_info()
106 *region = part.region_size; in uv_bios_get_sn_info()
/linux-4.1.27/net/rds/
Dtransport.c116 unsigned int part; in rds_trans_stats_info_copy() local
128 part = trans->stats_info_copy(iter, avail); in rds_trans_stats_info_copy()
129 avail -= min(avail, part); in rds_trans_stats_info_copy()
130 total += part; in rds_trans_stats_info_copy()
/linux-4.1.27/fs/hfs/
Dpart_tbl.c82 (HFS_SB(sb)->part < 0 || HFS_SB(sb)->part == i)) { in hfs_part_find()
98 (HFS_SB(sb)->part < 0 || HFS_SB(sb)->part == i)) { in hfs_part_find()
Dsuper.c148 if (sbi->part >= 0) in hfs_show_options()
149 seq_printf(seq, ",part=%u", sbi->part); in hfs_show_options()
242 hsb->part = -1; in parse_options()
299 if (match_int(&args[0], &hsb->part)) { in parse_options()
/linux-4.1.27/arch/cris/arch-v32/drivers/
Daxisflashmap.c315 int part; in init_axis_flash() local
571 for (part = 0; part < pidx; part++) { in init_axis_flash()
572 if (part == ram_rootfs_partition) { in init_axis_flash()
583 (void *)partition[part].offset, in init_axis_flash()
584 partition[part].size, in init_axis_flash()
585 partition[part].name); in init_axis_flash()
596 err = mtd_device_register(main_mtd, &partition[part], in init_axis_flash()
600 "partition %d\n", part); in init_axis_flash()
/linux-4.1.27/Documentation/misc-devices/
Dad525x_dpot.txt9 the specific part in use.
16 many depends on the actual part you have, as will the range of allowed values.
23 and may vary greatly on a part-by-part basis. For exact interpretation of
24 this field, please consult the datasheet for your part. This is presented
/linux-4.1.27/Documentation/devicetree/bindings/net/can/
Drcar_can.txt5 - compatible: "renesas,can-r8a7778" if CAN controller is a part of R8A7778 SoC.
6 "renesas,can-r8a7779" if CAN controller is a part of R8A7779 SoC.
7 "renesas,can-r8a7790" if CAN controller is a part of R8A7790 SoC.
8 "renesas,can-r8a7791" if CAN controller is a part of R8A7791 SoC.
/linux-4.1.27/fs/hfsplus/
Dpart_tbl.c81 (sbi->part < 0 || sbi->part == i)) { in hfs_parse_old_pmap()
102 (sbi->part < 0 || sbi->part == i)) { in hfs_parse_new_pmap()
Doptions.c58 opts->part = -1; in hfsplus_fill_defaults()
156 if (match_int(&args[0], &sbi->part)) { in hfsplus_parse_options()
227 if (sbi->part >= 0) in hfsplus_show_options()
228 seq_printf(seq, ",part=%u", sbi->part); in hfsplus_show_options()
DKconfig29 which are part of the NFSv4 standard.
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/linux/
Dlinux-cpu.c110 struct cfs_cpu_partition *part = &cptab->ctb_parts[i]; in cfs_cpt_table_free() local
112 if (part->cpt_nodemask != NULL) { in cfs_cpt_table_free()
113 LIBCFS_FREE(part->cpt_nodemask, in cfs_cpt_table_free()
114 sizeof(*part->cpt_nodemask)); in cfs_cpt_table_free()
117 if (part->cpt_cpumask != NULL) in cfs_cpt_table_free()
118 LIBCFS_FREE(part->cpt_cpumask, cpumask_size()); in cfs_cpt_table_free()
166 struct cfs_cpu_partition *part = &cptab->ctb_parts[i]; in cfs_cpt_table_alloc() local
168 LIBCFS_ALLOC(part->cpt_cpumask, cpumask_size()); in cfs_cpt_table_alloc()
169 LIBCFS_ALLOC(part->cpt_nodemask, sizeof(*part->cpt_nodemask)); in cfs_cpt_table_alloc()
170 if (part->cpt_cpumask == NULL || part->cpt_nodemask == NULL) in cfs_cpt_table_alloc()
[all …]
/linux-4.1.27/arch/powerpc/include/asm/
Dnvram.h85 extern int __init nvram_init_os_partition(struct nvram_os_partition *part);
91 extern int nvram_read_partition(struct nvram_os_partition *part, char *buff,
96 extern int nvram_write_os_partition(struct nvram_os_partition *part,
/linux-4.1.27/drivers/rtc/
Drtc-abx80x.c195 unsigned int part = id->driver_data; in abx80x_probe() local
236 if (part == ABX80X) { in abx80x_probe()
245 part = i; in abx80x_probe()
248 if (partnumber != abx80x_caps[part].pn) { in abx80x_probe()
250 partnumber, abx80x_caps[part].pn); in abx80x_probe()
254 if (np && abx80x_caps[part].has_tc) in abx80x_probe()
/linux-4.1.27/arch/alpha/lib/
Dev6-divide.S175 nop # E : as part of the cmovne
181 nop # E : as part of the cmovne
186 nop # E : as part of the cmovne
236 nop # E : as part of the cmov
253 nop # E : U L L U : as part of the cmov
256 nop # E : as part of the cmov
/linux-4.1.27/tools/usb/usbip/libsrc/
Dvhci_driver.c167 int part; in read_record() local
198 for (part = 0; part < 3; part++) { in read_record()
199 end = strchr(start, delim[part]); in read_record()
200 if (end == NULL || (end - start) > max_len[part]) { in read_record()
/linux-4.1.27/fs/pstore/
Dplatform.c277 unsigned int part = 1; in pstore_dump() local
305 oopscount, part); in pstore_dump()
325 part); in pstore_dump()
337 ret = psinfo->write(PSTORE_TYPE_DMESG, reason, &id, part, in pstore_dump()
343 part++; in pstore_dump()
399 u64 *id, unsigned int part, int count, in pstore_write_compat() argument
403 return psi->write_buf(type, reason, id, part, psinfo->buf, compressed, in pstore_write_compat()
/linux-4.1.27/Documentation/devicetree/bindings/memory-controllers/ti/
Demif.txt17 - device-handle : phandle to a "lpddr2" node representing the memory part
25 instance has a memory part attached to it. If there is a memory
26 part attached to CS1, it should be the same type as the one on CS0,
27 so there is no need to give the details of this memory part.
/linux-4.1.27/include/linux/mmc/
Dcard.h310 struct mmc_part part[MMC_NUM_PHY_PARTITION]; /* physical partitions */ member
321 card->part[card->nr_parts].size = size; in mmc_part_add()
322 card->part[card->nr_parts].part_cfg = part_cfg; in mmc_part_add()
323 sprintf(card->part[card->nr_parts].name, name, idx); in mmc_part_add()
324 card->part[card->nr_parts].force_ro = ro; in mmc_part_add()
325 card->part[card->nr_parts].area_type = area_type; in mmc_part_add()
/linux-4.1.27/drivers/vhost/
Dvringh.c230 size_t part, len = sizeof(struct vring_desc); in slow_copy() local
236 part = len; in slow_copy()
239 if (!rcheck(vrh, addr, &part, range, getrange)) in slow_copy()
242 err = copy(dst, src, part); in slow_copy()
246 dst += part; in slow_copy()
247 src += part; in slow_copy()
248 len -= part; in slow_copy()
420 u16 part = vrh->vring.num - off; in __vringh_complete() local
421 err = putused(&used_ring->ring[off], used, part); in __vringh_complete()
423 err = putused(&used_ring->ring[0], used + part, in __vringh_complete()
[all …]
/linux-4.1.27/Documentation/hwmon/
Dsch562719 The SMSC SCH5627 hardware monitoring part also contains an integrated
24 The hardware monitoring part of the SMSC SCH5627 is accessed by talking
Dabituguru35 * Abit uGuru revision 3 (Hardware Monitor part, reading only)
54 Louis Kruger has managed to reverse engineer the sensor part of the uGuru.
Dabituguru5 * Abit uGuru revision 1 & 2 (Hardware Monitor part only)
86 Sandberg <ollebull@gmail.com> has managed to reverse engineer the sensor part
Dmenf21bmc25 This driver is part of the MFD driver named "menf21bmc" and does
/linux-4.1.27/net/lapb/
DKconfig9 the lower) part of the X.25 protocol. It offers a reliable
12 Layer, the higher part of X.25, but others are possible as well).
/linux-4.1.27/net/rxrpc/
DKconfig12 the transport part, not the presentation part: (un)marshalling is
Dar-input.c455 struct sk_buff *part; in rxrpc_process_jumbo_packet() local
466 part = skb_clone(jumbo, GFP_ATOMIC); in rxrpc_process_jumbo_packet()
467 if (!part) { in rxrpc_process_jumbo_packet()
472 rxrpc_new_skb(part); in rxrpc_process_jumbo_packet()
474 pskb_trim(part, RXRPC_JUMBO_DATALEN); in rxrpc_process_jumbo_packet()
491 rxrpc_fast_process_packet(call, part); in rxrpc_process_jumbo_packet()
492 part = NULL; in rxrpc_process_jumbo_packet()
502 rxrpc_free_skb(part); in rxrpc_process_jumbo_packet()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
Dramgf100.c112 u32 part = nv_rd32(pfb, 0x022438), i; in gf100_ram_train() local
119 for (i = 0; (magic & 0x80000000) && i < part; addr += 0x1000, i++) { in gf100_ram_train()
520 int ret, part; in gf100_ram_create_() local
534 for (part = 0; part < parts; part++) { in gf100_ram_create_()
535 if (!(pmask & (1 << part))) { in gf100_ram_create_()
536 u32 psize = nv_rd32(pfb, 0x11020c + (part * 0x1000)); in gf100_ram_create_()
543 nv_debug(pfb, "%d: mem_amount 0x%08x\n", part, psize); in gf100_ram_create_()
/linux-4.1.27/Documentation/devicetree/bindings/lpddr2/
Dlpddr2.txt7 "ti,jedec-lpddr2-s2" should be listed if the memory part is LPDDR2-S2 type
9 "ti,jedec-lpddr2-s4" should be listed if the memory part is LPDDR2-S4 type
11 "ti,jedec-lpddr2-nvm" should be listed if the memory part is LPDDR2-NVM type
/linux-4.1.27/drivers/phy/
DKconfig69 that is part of STMicroelectronics STiH407 SoC.
79 that is part of STMicroelectronics STiH41x SoC series.
92 Enable this to add support for the PHY part present in the control
108 Enable this to support the transceiver that is part of SOC. This
120 Enable this to support the PIPE3 PHY that is part of TI SOCs. This
182 Enable this to support the transceiver that is part of Allwinner
194 Enable this to support the transceiver that is part of Allwinner
306 Enable this to support the USB transceiver that is part of
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/
Dgt215.c124 u32 part = (addr / mmio[2]) & 7; in gt215_devinit_mmio() local
127 if (part >= hweight8((priv->r001540 >> 16) & 0xff)) in gt215_devinit_mmio()
/linux-4.1.27/arch/arm/lib/
Ddiv64.S62 @ Align divisor with upper part of dividend.
117 @ The top part of remainder became zero. If carry is set
119 @ Otherwise, if lower part is also null then we are done.
124 @ We still have remainer bits in the low part. Bring them up.
/linux-4.1.27/Documentation/block/
Dcmdline-partition.txt14 <partdef> := <size>[@<offset>](part-name)
26 (part-name)
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-devices-platform-docg38 which can cover any part of it, block aligned, called DPS.
23 which can cover any part of it, block aligned, called DPS.
Dsysfs-kernel-vmcoreinfo12 space as part of ELF note in /proc/vmcore file. This note
Devm18 in the initramfs, which has already been measured as part
/linux-4.1.27/Documentation/video4linux/
DREADME.davinci-vpbe49 is implemented for this as well as configure_venc() (part of the next patch)
52 encoders is not present, and would be a part of the next patch series.
69 support for external encoders and displays forms a part of the next
93 - Add support for fbdev drivers.- Ready and part of subsequent patches.
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/
Dstmpe.txt22 - st,fraction-z: Length of the fractional part in z (fraction-z ([0..7]) = Count of
23 the fractional part) recommended is 7
/linux-4.1.27/Documentation/devicetree/bindings/clock/
Dsilabs,si570.txt19 - factory-fout: Factory set default frequency. This frequency is part specific.
20 The correct frequency for the part used has to be provided in
Dmaxim,max77686.txt3 This is a part of device tree bindings of MAX77686 multi-function device.
Dmaxim,max77802.txt3 This is a part of device tree bindings of MAX77802 multi-function device.
/linux-4.1.27/security/tomoyo/
DKconfig50 immediately after loading the fixed part of policy which will allow
52 variant part of policy and verifying (e.g. running GPG check) and
53 loading the variant part of policy. Since you can start using
/linux-4.1.27/drivers/sn/
Dioc3.c280 unsigned char data[64],part[32]; in read_nic() local
292 part[j++] = data[i+11]; in read_nic()
295 part[j++] = data[i+32]; in read_nic()
296 part[j] = 0; in read_nic()
298 if(!strncmp(part, "060-0035-", 9)) in read_nic()
300 if(!strncmp(part, "060-0038-", 9)) in read_nic()
302 strcpy(idd->nic_part, part); in read_nic()
/linux-4.1.27/scripts/
DMakefile.build120 $(if $(part-of-module), \
125 $(real-objs-m) : part-of-module := y
126 $(real-objs-m:.o=.i) : part-of-module := y
127 $(real-objs-m:.o=.s) : part-of-module := y
128 $(real-objs-m:.o=.lst): part-of-module := y
/linux-4.1.27/firmware/keyspan/
Dusa19qi.HEX95 image as part of a Linux or other Open Source operating system kernel
101 part, requires the inclusion of this statement."
Dusa19.HEX95 image as part of a Linux or other Open Source operating system kernel
101 part, requires the inclusion of this statement."
Dmpr.HEX94 image as part of a Linux or other Open Source operating system kernel
100 part, requires the inclusion of this statement."
Dusa28xa.HEX135 image as part of a Linux or other Open Source operating system kernel
141 part, requires the inclusion of this statement."
Dusa28xb.HEX136 image as part of a Linux or other Open Source operating system kernel
142 part, requires the inclusion of this statement."
Dusa19w.HEX135 image as part of a Linux or other Open Source operating system kernel
141 part, requires the inclusion of this statement."
Dusa28x.HEX135 image as part of a Linux or other Open Source operating system kernel
141 part, requires the inclusion of this statement."
Dusa19qw.HEX136 image as part of a Linux or other Open Source operating system kernel
142 part, requires the inclusion of this statement."
Dusa18x.HEX135 image as part of a Linux or other Open Source operating system kernel
141 part, requires the inclusion of this statement."
Dusa28.HEX142 image as part of a Linux or other Open Source operating system kernel
148 part, requires the inclusion of this statement."
Dusa49w.HEX139 image as part of a Linux or other Open Source operating system kernel
145 part, requires the inclusion of this statement."
Dusa49wlc.HEX140 image as part of a Linux or other Open Source operating system kernel
146 part, requires the inclusion of this statement."
/linux-4.1.27/Documentation/devicetree/bindings/phy/
Drcar-gen2-phy.txt7 - compatible: "renesas,usb-phy-r8a7790" if the device is a part of R8A7790 SoC.
8 "renesas,usb-phy-r8a7791" if the device is a part of R8A7791 SoC.
/linux-4.1.27/drivers/mmc/card/
Dblock.c99 struct list_head part; member
251 list_for_each_entry(part_md, &md->part, part) in power_ro_lock_store()
2133 INIT_LIST_HEAD(&md->part); in mmc_blk_alloc_req()
2247 list_add(&part_md->part, &md->part); in mmc_blk_alloc_part()
2271 if (card->part[idx].size) { in mmc_blk_alloc_parts()
2273 card->part[idx].part_cfg, in mmc_blk_alloc_parts()
2274 card->part[idx].size >> 9, in mmc_blk_alloc_parts()
2275 card->part[idx].force_ro, in mmc_blk_alloc_parts()
2276 card->part[idx].name, in mmc_blk_alloc_parts()
2277 card->part[idx].area_type); in mmc_blk_alloc_parts()
[all …]
/linux-4.1.27/Documentation/s390/
Dzfcpdump.txt18 The kernel part of zfcpdump is implemented as a debugfs file under "zcore/mem",
24 CONFIG_CRASH_DUMP has to be set. When reading from "zcore/mem", the part of
26 hardware interface. The second part is just copied from the non overwritten real
/linux-4.1.27/Documentation/i2c/busses/
Di2c-ali153523 within the part have moved and some have been redefined slightly.
30 The SMB controller is part of the M7101 device, which is an ACPI-compliant
Di2c-i8014 * Intel 82801AA and 82801AB (ICH and ICH0 - part of the
6 * Intel 82801BA (ICH2 - part of the '815E' chipset)
60 ICH3 (82801CA/CAM) and later devices (PCH) are Intel chips that are a part of
/linux-4.1.27/Documentation/early-userspace/
Dbuffer-format.txt61 c_maj 8 bytes Major part of file device number
62 c_min 8 bytes Minor part of file device number
63 c_rmaj 8 bytes Major part of device node reference
64 c_rmin 8 bytes Minor part of device node reference
/linux-4.1.27/arch/sparc/
DKbuild2 # core part of the sparc kernel
/linux-4.1.27/Documentation/dvb/
Dreadme.txt14 are available as part of the old driver package for Linux 2.4
36 CI module as part from TwinHan cards and Clones.
Dtechnisat.txt27 2a) Main module part:
36 2b) Frontend / Tuner / Demodulator module part:
/linux-4.1.27/drivers/staging/gs_fpgaboot/
Dgs_fpgaboot.h51 char part[MAX_STR]; member
Dgs_fpgaboot.c129 pr_info("part: %s\n", fimage->part); in gs_print_header()
145 readinfo_bitstream(bitdata, fimage->part, &offset); in gs_read_bitstream()
/linux-4.1.27/net/mac80211/
DKconfig221 is taking part in a mesh network).
234 is taking part in a mesh network).
247 is taking part in a mesh network).
259 synchronization debugging messages (when mac80211 is taking part in a
270 channel switch debugging messages (when mac80211 is taking part in a
281 powersave debugging messages (when mac80211 is taking part in a
/linux-4.1.27/drivers/isdn/hisax/
Dhscx.h41 extern void inithscxisac(struct IsdnCardState *cs, int part);
Dhscx.c261 inithscxisac(struct IsdnCardState *cs, int part) in inithscxisac() argument
263 if (part & 1) { in inithscxisac()
269 if (part & 2) { in inithscxisac()
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/
DS3C2412.txt7 The S3C2412 is part of the S3C24XX range of ARM9 System-on-Chip CPUs
8 from Samsung. This part has an ARM926-EJS core, capable of running up
/linux-4.1.27/Documentation/networking/caif/
Dspi_porting.txt15 two parts. The first part (called the interface part) deals with all
17 and SPI frame delivery and transmission. The other part is the CAIF
18 SPI slave device part, which is the module that you have to write if
19 you want to run SPI CAIF on a new hardware. This part takes care of
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dfsl,imx25-pinctrl.txt3 Please refer to fsl,imx-pinctrl.txt in this directory for common binding part
Dmarvell,orion-pinctrl.txt4 part and usage.
15 Note: brackets (x) are not part of the mpp name for marvell,function and given
Dfsl,imx51-pinctrl.txt3 Please refer to fsl,imx-pinctrl.txt in this directory for common binding part
Dfsl,imx6q-pinctrl.txt3 Please refer to fsl,imx-pinctrl.txt in this directory for common binding part
Dfsl,imx53-pinctrl.txt3 Please refer to fsl,imx-pinctrl.txt in this directory for common binding part
Dfsl,imx35-pinctrl.txt3 Please refer to fsl,imx-pinctrl.txt in this directory for common binding part
Dfsl,imx6dl-pinctrl.txt3 Please refer to fsl,imx-pinctrl.txt in this directory for common binding part
Dfsl,imx6sl-pinctrl.txt3 Please refer to fsl,imx-pinctrl.txt in this directory for common binding part
Dfsl,imx6sx-pinctrl.txt3 Please refer to fsl,imx-pinctrl.txt in this directory for common binding part
Dfsl,vf610-pinctrl.txt3 Please refer to fsl,imx-pinctrl.txt in this directory for common binding part
Dmarvell,armada-375-pinctrl.txt4 part and usage.
11 Note: brackets (x) are not part of the mpp name for marvell,function and given
Dmarvell,armada-39x-pinctrl.txt4 part and usage.
12 Note: brackets (x) are not part of the mpp name for marvell,function and given
Dmarvell,armada-xp-pinctrl.txt4 part and usage.
14 Note: brackets (x) are not part of the mpp name for marvell,function and given
Dmarvell,dove-pinctrl.txt4 part and usage.
12 Note: brackets (x) are not part of the mpp name for marvell,function and given
/linux-4.1.27/drivers/isdn/act2000/
DKconfig7 into the card using a utility which is part of the latest
/linux-4.1.27/Documentation/devicetree/bindings/iio/light/
Dcm36651.txt8 - vled-supply: regulator for the IR LED. IR_LED is a part
/linux-4.1.27/sound/parisc/
DKconfig18 provided as part of the Lasi multi-function IC.
/linux-4.1.27/Documentation/sound/alsa/
DControlNames.txt47 Headset Mic (mic part of combined headset jack - 4-pin headphone + mic)
48 Headphone Mic (mic part of either/or - 3-pin headphone or mic)
/linux-4.1.27/Documentation/devicetree/bindings/input/
Dtwl4030-pwrbutton.txt3 This module is part of the TWL4030. For more details about the whole
De3x0-button.txt3 This module is part of the NI Ettus Research USRP E3x0 SDR.
Dti,palmas-pwrbutton.txt3 This module is part of the Palmas family of PMICs. For more details
/linux-4.1.27/arch/blackfin/mach-common/
Darch_checks.c55 # error You are using a part with anomaly 05000448, this issue causes random memory read/write fail…
/linux-4.1.27/Documentation/devicetree/bindings/regulator/
Dpwm-regulator.txt9 Any property defined as part of the core regulator binding defined in
Dtps51632-regulator.txt13 Any property defined as part of the core regulator binding, defined in
Dfixed-regulator.txt15 Any property defined as part of the core regulator
Dgpio-regulator.txt18 Any property defined as part of the core regulator binding defined in
Danatop-regulator.txt17 Any property defined as part of the core regulator
Dtps62360-regulator.txt25 Any property defined as part of the core regulator binding, defined in
/linux-4.1.27/Documentation/devicetree/bindings/spi/
Dbrcm,bcm2835-spi.txt4 SPI0, and the other known as the "Universal SPI Master"; part of the
/linux-4.1.27/Documentation/kbuild/
Dkbuild.txt99 Specify an optional fixed part of the binutils filename.
100 CROSS_COMPILE can be a part of the filename or the full path.
228 All object files for the init (first) part of vmlinux.
233 All object files for the main part of vmlinux.
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/
Dcache_sram.txt4 option of configuring a part of (or full) cache memory
Dcpus.txt28 Snoop ID Port Mapping registers, which are part of the CoreNet
/linux-4.1.27/arch/mips/dec/
Dint-handler.S167 # upper part of IOASIC Address
184 # upper part of IOASIC Address
/linux-4.1.27/Documentation/networking/
Dradiotap-headers.txt41 After the fixed part of the header, the arguments follow for each argument
96 /* buf points to the start of the radiotap header part */
144 /* discard the radiotap header part */
Dfib_trie.txt69 level compression algorithm on part of the trie.
83 level compression. This part follows the original paper pretty closely
137 chop off part of the key in order to find the longest matching prefix.
/linux-4.1.27/Documentation/devicetree/bindings/gpio/
Dgpio-xgene.txt3 This is a gpio controller that is part of the flash controller.
/linux-4.1.27/sound/soc/codecs/
Dwm_adsp.h37 const char *part; member
/linux-4.1.27/Documentation/devicetree/bindings/arm/rockchip/
Dsmp-sram.txt4 Rockchip's smp-capable SoCs use the first part of the sram for the bringup
/linux-4.1.27/arch/arm/boot/dts/
Dsamsung_k3pe0e000b.dtsi2 * Timings and Geometry for Samsung K3PE0E000B memory part
/linux-4.1.27/drivers/block/
Dz2ram.c332 static struct kobject *z2_find(dev_t dev, int *part, void *data) in z2_find() argument
334 *part = 0; in z2_find()
/linux-4.1.27/Documentation/devicetree/bindings/pci/
Dpci.txt6 And for the interrupt mapping part:
/linux-4.1.27/Documentation/cpuidle/
Dgovernor.txt22 More than one governor part is supported for developers to easily experiment
Ddriver.txt11 architecture/platform dependent part of CPU idle states. Driver
/linux-4.1.27/Documentation/scsi/
Dlpfc.txt15 and extended attribute support is now part of the upstream kernel
60 patch is part of the standard 2.6.10 kernel.
/linux-4.1.27/Documentation/devicetree/bindings/arm/exynos/
Dsmp-sysram.txt4 Samsung SMP-capable Exynos SoCs use part of the SYSRAM for the bringup
/linux-4.1.27/Documentation/fmc/
Didentifiers.txt17 paired at run time. EEPROM programming uses tools that are part of this
18 package and SDB (part of the fpga-config-space package).
51 FRU_PART -p "Board Part Number" sample-part
163 /lib/firmware/fdelay-eeprom.bin: part-number: EDA-02267-V3
/linux-4.1.27/fs/autofs4/
DKconfig17 If you are not a part of a fairly large, distributed network or
/linux-4.1.27/Documentation/devicetree/bindings/usb/
Dnvidia,tegra20-ehci.txt3 The device node for a USB controller that is part of a Tegra
/linux-4.1.27/drivers/mtd/spi-nor/
DKconfig17 Changing a small part of the flash's contents is usually faster with
/linux-4.1.27/Documentation/acpi/
Dinitrd_table_override.txt85 iasl and acpixtract are part of Intel's ACPICA project:
92 This tool is also part of the acpica package on SUSE.
/linux-4.1.27/Documentation/filesystems/nfs/
Didmapper.txt68 then passed as an argument to keyctl_instantiate (both are part of keyutils.h).
71 determines the correct function to call by looking at the first part of the
DExporting23 corresponds to part of an NFS filehandle.
45 1/ The dcache must sometimes contain objects that are not part of the
56 any dentry that might not be part of the proper prefix.
/linux-4.1.27/Documentation/vm/
D00-INDEX10 - Outline frontswap, part of the transcendent memory frontend.
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Dl2cc.txt57 - cache-id-part: cache id part number to be used if it is not present
Dpmu.txt4 and hits. The interface to the PMU is part of the ARM ARM. The ARM PMU
/linux-4.1.27/Documentation/filesystems/
Dbefs.txt20 The largest part of the code written by Will Dyson <will_dyson@pobox.com>
71 The BeFS module is not a standard part of the linux kernel, so you must first
/linux-4.1.27/sound/soc/intel/atom/
Dsst-mfld-dsp.h208 } part; member
231 } part; member
/linux-4.1.27/Documentation/arm/nwfpe/
DREADME58 part by the International Computer Science Institute, located at Suite 600,
61 original version of this code was written as part of a project to build
/linux-4.1.27/arch/powerpc/platforms/powermac/
Dsetup.c368 void __init_refok note_bootable_part(dev_t dev, int part, int goodness) in note_bootable_part() argument
381 ROOT_DEV = dev + part; in note_bootable_part()
/linux-4.1.27/arch/m68k/fpsp040/
Dsgetem.S106 | ms mantissa part in d0
107 | ls mantissa part in d1
/linux-4.1.27/Documentation/
Dcoccinelle.txt182 will execute the following part of the SmPL script.
220 will execute the following part of the SmPL script.
264 will execute the following part of the SmPL script.
299 will execute the following part of the SmPL script.
/linux-4.1.27/Documentation/arm/
D00-INDEX12 - Build sourcefiles as part of the Documentation-build for arm
/linux-4.1.27/scripts/coccinelle/misc/
Difcol.cocci4 /// part of the if branch.
/linux-4.1.27/arch/arm/nwfpe/
Dsoftfloat-macros5 This C source fragment is part of the SoftFloat IEC/IEEE Floating-point
8 Written by John R. Hauser. This work was made possible in part by the
12 of this code was written as part of a project to build a fixed-point vector
98 integer part of the result is returned at the location pointed to by
99 `z0Ptr'. The fractional part of the result may be slightly corrupted as
223 and the integer part of the result is returned at the locations pointed to
224 by `z0Ptr' and `z1Ptr'. The fractional part of the result may be slightly

1234