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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/char/
H A Dtape_std.c272 tape_std_mtfsf(struct tape_device *device, int mt_count) argument
277 request = tape_alloc_request(mt_count + 2, 0);
284 ccw = tape_ccw_repeat(ccw, FORSPACEFILE, mt_count);
296 tape_std_mtfsr(struct tape_device *device, int mt_count) argument
302 request = tape_alloc_request(mt_count + 2, 0);
309 ccw = tape_ccw_repeat(ccw, FORSPACEBLOCK, mt_count);
328 tape_std_mtbsr(struct tape_device *device, int mt_count) argument
334 request = tape_alloc_request(mt_count + 2, 0);
341 ccw = tape_ccw_repeat(ccw, BACKSPACEBLOCK, mt_count);
359 tape_std_mtweof(struct tape_device *device, int mt_count) argument
384 tape_std_mtbsfm(struct tape_device *device, int mt_count) argument
408 tape_std_mtbsf(struct tape_device *device, int mt_count) argument
439 tape_std_mtfsfm(struct tape_device *device, int mt_count) argument
469 tape_std_mtrew(struct tape_device *device, int mt_count) argument
492 tape_std_mtoffl(struct tape_device *device, int mt_count) argument
513 tape_std_mtnop(struct tape_device *device, int mt_count) argument
534 tape_std_mteom(struct tape_device *device, int mt_count) argument
564 tape_std_mtreten(struct tape_device *device, int mt_count) argument
588 tape_std_mterase(struct tape_device *device, int mt_count) argument
612 tape_std_mtunload(struct tape_device *device, int mt_count) argument
622 tape_std_mtcompression(struct tape_device *device, int mt_count) argument
[all...]
H A Dtape_char.c363 if (op.mt_count < 0)
390 rc = tape_mtop(device, op.mt_op, op.mt_count);
393 if (op.mt_count > device->required_tapemarks)
396 device->required_tapemarks -= op.mt_count;
H A Dtape_core.c1247 tape_mtop(struct tape_device *device, int mt_op, int mt_count) argument
1254 DBF_EVENT(6, "TAPE:arg: %x\n", mt_count);
1266 for (; mt_count > 500; mt_count -= 500)
1270 rc = fn(device, mt_count);
1272 rc = fn(device, mt_count);
H A Dtape_34xx.c1048 tape_34xx_mttell(struct tape_device *device, int mt_count) argument
1068 tape_34xx_mtseek(struct tape_device *device, int mt_count) argument
1073 if (mt_count > 0x3fffff) {
1086 bid->block = mt_count;
H A Dtape_3590.c267 static int tape_3590_mttell(struct tape_device *device, int mt_count);
475 tape_3590_mttell(struct tape_device *device, int mt_count) argument
/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/ide/
H A Dide-tape.c1064 int mt_count)
1073 ide_debug_log(IDE_DBG_FUNC, "mt_op: %d, mt_count: %d", mt_op, mt_count);
1075 if (mt_count == 0)
1080 mt_count = -mt_count;
1094 idetape_create_space_cmd(&pc, mt_count - count,
1102 mt_count - count);
1254 static int idetape_mtioctop(ide_drive_t *drive, short mt_op, int mt_count) argument
1261 ide_debug_log(IDE_DBG_FUNC, "MTIOCTOP ioctl: mt_op: %d, mt_count
1063 idetape_space_over_filemarks(ide_drive_t *drive, short mt_op, int mt_count) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dmtio.h21 int mt_count; /* how many of them */ member in struct:mtop
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A Dosst.c1850 int mt_op, int mt_count)
1857 printk(OSST_DEB_MSG "%s:D: Reached space_over_filemarks_backwards %d %d\n", name, mt_op, mt_count);
1872 (cnt - mt_count) >= 0 &&
1873 (cnt - mt_count) < OS_FM_TAB_MAX &&
1874 (cnt - mt_count) < STp->filemark_cnt &&
1877 last_mark_ppos = ntohl(STp->header_cache->dat_fm_tab.fm_tab_ent[cnt - mt_count]);
1879 if (STp->header_cache == NULL || (cnt - mt_count) < 0 || (cnt - mt_count) >= OS_FM_TAB_MAX)
1888 mt_count, last_mark_ppos);
1911 while (cnt != mt_count) {
1847 osst_space_over_filemarks_backward(struct osst_tape * STp, struct osst_request ** aSRpnt, int mt_op, int mt_count) argument
1946 osst_space_over_filemarks_forward_slow(struct osst_tape * STp, struct osst_request ** aSRpnt, int mt_op, int mt_count) argument
2000 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.c3376 (mtc.mt_count & MT_ST_OPTIONS) == 0)) {
3386 mtc.mt_count -= 1;
3390 mtc.mt_count += 1;
3424 mtc.mt_count++;
3457 (mtc.mt_count & MT_ST_OPTIONS) != 0) {
3458 retval = st_set_options(STp, mtc.mt_count);
3464 mtc.mt_count < 0 || mtc.mt_count >= ST_NBR_PARTITIONS) {
3468 if (mtc.mt_count >= STp->nbr_partitions &&
3473 if (mtc.mt_count >
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A Dviotape.c628 (((u64)myOp) << 32) | mtc.mt_count, 0);

Completed in 132 milliseconds