Searched refs:mt_count (Results 1 - 11 of 11) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/char/
H A Dtape_std.c279 tape_std_mtfsf(struct tape_device *device, int mt_count) argument
284 request = tape_alloc_request(mt_count + 2, 0);
291 ccw = tape_ccw_repeat(ccw, FORSPACEFILE, mt_count);
303 tape_std_mtfsr(struct tape_device *device, int mt_count) argument
309 request = tape_alloc_request(mt_count + 2, 0);
316 ccw = tape_ccw_repeat(ccw, FORSPACEBLOCK, mt_count);
335 tape_std_mtbsr(struct tape_device *device, int mt_count) argument
341 request = tape_alloc_request(mt_count + 2, 0);
348 ccw = tape_ccw_repeat(ccw, BACKSPACEBLOCK, mt_count);
366 tape_std_mtweof(struct tape_device *device, int mt_count) argument
391 tape_std_mtbsfm(struct tape_device *device, int mt_count) argument
415 tape_std_mtbsf(struct tape_device *device, int mt_count) argument
446 tape_std_mtfsfm(struct tape_device *device, int mt_count) argument
476 tape_std_mtrew(struct tape_device *device, int mt_count) argument
499 tape_std_mtoffl(struct tape_device *device, int mt_count) argument
520 tape_std_mtnop(struct tape_device *device, int mt_count) argument
541 tape_std_mteom(struct tape_device *device, int mt_count) argument
571 tape_std_mtreten(struct tape_device *device, int mt_count) argument
595 tape_std_mterase(struct tape_device *device, int mt_count) argument
619 tape_std_mtunload(struct tape_device *device, int mt_count) argument
629 tape_std_mtcompression(struct tape_device *device, int mt_count) argument
[all...]
H A Dtape_char.c367 if (op.mt_count < 0)
394 rc = tape_mtop(device, op.mt_op, op.mt_count);
397 if (op.mt_count > device->required_tapemarks)
400 device->required_tapemarks -= op.mt_count;
H A Dtape_core.c1257 tape_mtop(struct tape_device *device, int mt_op, int mt_count) argument
1264 DBF_EVENT(6, "TAPE:arg: %x\n", mt_count);
1276 for (; mt_count > 500; mt_count -= 500)
1280 rc = fn(device, mt_count);
1282 rc = fn(device, mt_count);
H A Dtape_34xx.c1068 tape_34xx_mttell(struct tape_device *device, int mt_count) argument
1088 tape_34xx_mtseek(struct tape_device *device, int mt_count) argument
1093 if (mt_count > 0x3fffff) {
1106 bid->block = mt_count;
H A Dtape_3590.c264 static int tape_3590_mttell(struct tape_device *device, int mt_count);
472 tape_3590_mttell(struct tape_device *device, int mt_count) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/miscutils/
H A Dmt.c88 op.mt_count = xatoi_u(argv[2]);
90 op.mt_count = 1; /* One, not zero, right? */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dmtio.h21 int mt_count; /* how many of them */ member in struct:mtop
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/
H A Dosst.c1771 int mt_op, int mt_count)
1778 printk(OSST_DEB_MSG "%s:D: Reached space_over_filemarks_backwards %d %d\n", name, mt_op, mt_count);
1793 (cnt - mt_count) >= 0 &&
1794 (cnt - mt_count) < OS_FM_TAB_MAX &&
1795 (cnt - mt_count) < STp->filemark_cnt &&
1798 last_mark_ppos = ntohl(STp->header_cache->dat_fm_tab.fm_tab_ent[cnt - mt_count]);
1800 if (STp->header_cache == NULL || (cnt - mt_count) < 0 || (cnt - mt_count) >= OS_FM_TAB_MAX)
1809 mt_count, last_mark_ppos);
1832 while (cnt != mt_count) {
1768 osst_space_over_filemarks_backward(struct osst_tape * STp, struct osst_request ** aSRpnt, int mt_op, int mt_count) argument
1867 osst_space_over_filemarks_forward_slow(struct osst_tape * STp, struct osst_request ** aSRpnt, int mt_op, int mt_count) argument
1921 osst_space_over_filemarks_forward_fast(struct osst_tape * STp, struct osst_request ** aSRpnt, int mt_op, int mt_count) argument
[all...]
H A Dst.c3292 (mtc.mt_count & MT_ST_OPTIONS) == 0)) {
3302 mtc.mt_count -= 1;
3306 mtc.mt_count += 1;
3340 mtc.mt_count++;
3373 (mtc.mt_count & MT_ST_OPTIONS) != 0) {
3374 retval = st_set_options(STp, mtc.mt_count);
3380 mtc.mt_count < 0 || mtc.mt_count >= ST_NBR_PARTITIONS) {
3384 if (mtc.mt_count >= STp->nbr_partitions &&
3389 if (mtc.mt_count >
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/ide/
H A Dide-tape.c3286 static int idetape_space_over_filemarks (ide_drive_t *drive,short mt_op,int mt_count) argument
3293 if (mt_count == 0)
3298 mt_count = - mt_count;
3310 if (count == mt_count) {
3346 idetape_create_space_cmd(&pc,mt_count-count,IDETAPE_SPACE_OVER_FILEMARK);
3352 retval = idetape_space_over_filemarks(drive, MTFSF, mt_count-count);
3560 * MTFSF - Space over mt_count filemarks in the positive direction.
3566 * MTBSF - Steps background over mt_count filemarks, tape is
3579 * MTWEOF - Writes mt_count filemark
3617 idetape_mtioctop(ide_drive_t *drive,short mt_op,int mt_count) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dviotape.c716 (((u64)myOp) << 32) | mtc.mt_count, 0);

Completed in 181 milliseconds