Home
last modified time | relevance | path

Searched refs:start_sec (Results 1 – 9 of 9) sorted by relevance

/Linux-v5.4/drivers/scsi/
Dgdth_proc.c495 ha->hdr[i].start_sec = 0; in gdth_show_info()
503 ha->hdr[k].start_sec = phg->entry[j].start_sec; in gdth_show_info()
520 (u32)(ha->hdr[i].size/2048), ha->hdr[i].start_sec); in gdth_show_info()
Dscsi_debug.c2632 static int prot_verify_read(struct scsi_cmnd *SCpnt, sector_t start_sec, in prot_verify_read() argument
2642 sector = start_sec + i; in prot_verify_read()
2655 dif_copy_prot(SCpnt, start_sec, sectors, true); in prot_verify_read()
2815 static int prot_verify_write(struct scsi_cmnd *SCpnt, sector_t start_sec, in prot_verify_write() argument
2821 sector_t sector = start_sec; in prot_verify_write()
2875 dif_copy_prot(SCpnt, start_sec, sectors, false); in prot_verify_write()
4152 int heads_by_sects, start_sec, end_sec; in sdebug_build_parts() local
4176 start_sec = starts[k]; in sdebug_build_parts()
4180 pp->cyl = start_sec / heads_by_sects; in sdebug_build_parts()
4181 pp->head = (start_sec - (pp->cyl * heads_by_sects)) in sdebug_build_parts()
[all …]
Dgdth.h641 u32 start_sec; /* start sector */ member
858 u32 start_sec; /* start sector */ member
/Linux-v5.4/mm/
Dmemory_hotplug.c291 unsigned long nr, start_sec, end_sec; in __add_pages() local
310 start_sec = pfn_to_section_nr(pfn); in __add_pages()
312 for (nr = start_sec; nr <= end_sec; nr++) { in __add_pages()
519 unsigned long nr, start_sec, end_sec; in __remove_pages() local
528 start_sec = pfn_to_section_nr(pfn); in __remove_pages()
530 for (nr = start_sec; nr <= end_sec; nr++) { in __remove_pages()
Dsparse.c234 unsigned long nr, start_sec = pfn_to_section_nr(pfn); in subsection_map_init() local
239 for (nr = start_sec; nr <= end_sec; nr++) { in subsection_map_init()
/Linux-v5.4/drivers/net/ethernet/microchip/
Dlan743x_ptp.c427 u32 start_sec = 0, start_nsec = 0; in lan743x_ptp_perout() local
474 start_sec = perout->start.sec; in lan743x_ptp_perout()
475 start_sec += perout->start.nsec / 1000000000; in lan743x_ptp_perout()
532 start_sec); in lan743x_ptp_perout()
/Linux-v5.4/drivers/net/ethernet/sfc/
Dptp.c902 u32 start_sec; in efx_ptp_process_times() local
962 start_sec = ptp->timeset[last_good].host_start >> MC_NANOSECOND_BITS; in efx_ptp_process_times()
964 if (start_sec != last_sec && in efx_ptp_process_times()
965 ((start_sec + 1) & MC_SECOND_MASK) != last_sec) { in efx_ptp_process_times()
970 delta.tv_sec = (last_sec - start_sec) & 1; in efx_ptp_process_times()
/Linux-v5.4/drivers/staging/rts5208/
Drtsx_scsi.c840 u32 start_sec; in read_write() local
883 start_sec = ((u32)srb->cmnd[2] << 24) | in read_write()
888 start_sec = ((u32)(srb->cmnd[1] & 0x1F) << 16) | in read_write()
896 start_sec = ((u32)srb->cmnd[4] << 24) | in read_write()
909 if ((start_sec > get_card_size(chip, lun)) || in read_write()
910 ((start_sec + sec_cnt) > get_card_size(chip, lun))) { in read_write()
940 retval = card_rw(srb, chip, start_sec, sec_cnt); in read_write()
Dms.c2543 u32 start_sec, u16 sec_cnt, u8 cmd) argument
2551 data[3] = (u8)(start_sec >> 24);
2552 data[4] = (u8)(start_sec >> 16);
2553 data[5] = (u8)(start_sec >> 8);
2554 data[6] = (u8)start_sec;