/* * If the tape isn't terminated yet, do it now. And since we then * are at the end of the tape there wouldn't be anything to read * anyways. So we return immediately.
*/ if(device->required_tapemarks) { return tape_std_terminate_write(device);
}
/* Find out block size to use */ if (device->char_data.block_size != 0) { if (count < device->char_data.block_size) {
DBF_EVENT(3, "TCHAR:read smaller than block " "size was requested\n"); return -EINVAL;
}
block_size = device->char_data.block_size;
} else {
block_size = count;
}
rc = tapechar_check_idalbuffer(device, block_size); if (rc) return rc;
DBF_EVENT(6, "TCHAR:nbytes: %lx\n", block_size); /* Let the discipline build the ccw chain. */
request = device->discipline->read_block(device, block_size); if (IS_ERR(request)) return PTR_ERR(request); /* Execute it. */
rc = tape_do_io(device, request); if (rc == 0) {
rc = block_size - request->rescnt;
DBF_EVENT(6, "TCHAR:rbytes: %x\n", rc); /* Copy data from idal buffer to user space. */ if (idal_buffer_to_user(device->char_data.idal_buf,
data, rc) != 0)
rc = -EFAULT;
}
tape_free_request(request); return rc;
}
/* * Tape device write function
*/ static ssize_t
tapechar_write(struct file *filp, constchar __user *data, size_t count, loff_t *ppos)
{ struct tape_device *device; struct tape_request *request;
size_t block_size;
size_t written; int nblocks; int i, rc;
DBF_EVENT(6, "TCHAR:write\n");
device = (struct tape_device *) filp->private_data; /* Find out block size and number of blocks */ if (device->char_data.block_size != 0) { if (count < device->char_data.block_size) {
DBF_EVENT(3, "TCHAR:write smaller than block " "size was requested\n"); return -EINVAL;
}
block_size = device->char_data.block_size;
nblocks = count / block_size;
} else {
block_size = count;
nblocks = 1;
}
rc = tapechar_check_idalbuffer(device, block_size); if (rc) return rc;
DBF_EVENT(6,"TCHAR:nbytes: %lx\n", block_size);
DBF_EVENT(6, "TCHAR:nblocks: %x\n", nblocks); /* Let the discipline build the ccw chain. */
request = device->discipline->write_block(device, block_size); if (IS_ERR(request)) return PTR_ERR(request);
rc = 0;
written = 0; for (i = 0; i < nblocks; i++) { /* Copy data from user space to idal buffer. */ if (idal_buffer_from_user(device->char_data.idal_buf,
data, block_size)) {
rc = -EFAULT; break;
}
rc = tape_do_io(device, request); if (rc) break;
DBF_EVENT(6, "TCHAR:wbytes: %lx\n",
block_size - request->rescnt);
written += block_size - request->rescnt; if (request->rescnt != 0) break;
data += block_size;
}
tape_free_request(request); if (rc == -ENOSPC) { /* * Ok, the device has no more space. It has NOT written * the block.
*/ if (device->discipline->process_eov)
device->discipline->process_eov(device); if (written > 0)
rc = 0;
}
/* * After doing a write we always need two tapemarks to correctly * terminate the tape (one to terminate the file, the second to * flag the end of recorded data. * Since process_eov positions the tape in front of the written * tapemark it doesn't hurt to write two marks again.
*/ if (!rc)
device->required_tapemarks = 2;
return rc ? rc : written;
}
/* * Character frontend tape device open function.
*/ staticint
tapechar_open (struct inode *inode, struct file *filp)
{ struct tape_device *device; int minor, rc;
/* * If this is the rewinding tape minor then rewind. In that case we * write all required tapemarks. Otherwise only one to terminate the * file.
*/ if ((iminor(inode) & 1) != 0) { if (device->required_tapemarks)
tape_std_terminate_write(device);
tape_mtop(device, MTREW, 1);
} else { if (device->required_tapemarks > 1) { if (tape_mtop(device, MTWEOF, 1) == 0)
device->required_tapemarks--;
}
}
/* * Tape device io controls.
*/ staticint
__tapechar_ioctl(struct tape_device *device, unsignedint no, void __user *data)
{ int rc;
if (no == MTIOCTOP) { struct mtop op;
if (copy_from_user(&op, data, sizeof(op)) != 0) return -EFAULT; if (op.mt_count < 0) return -EINVAL;
/* * Operations that change tape position should write final * tapemarks.
*/ switch (op.mt_op) { case MTFSF: case MTBSF: case MTFSR: case MTBSR: case MTREW: case MTOFFL: case MTEOM: case MTRETEN: case MTBSFM: case MTFSFM: case MTSEEK: if (device->required_tapemarks)
tape_std_terminate_write(device);
}
rc = tape_mtop(device, op.mt_op, op.mt_count);
if (op.mt_op == MTWEOF && rc == 0) { if (op.mt_count > device->required_tapemarks)
device->required_tapemarks = 0; else
device->required_tapemarks -= op.mt_count;
} return rc;
} if (no == MTIOCPOS) { /* MTIOCPOS: query the tape position. */ struct mtpos pos;
rc = tape_mtop(device, MTTELL, 1); if (rc < 0) return rc;
pos.mt_blkno = rc; return put_user_mtpos(data, &pos);
} if (no == MTIOCGET) { /* MTIOCGET: query the tape drive status. */ struct mtget get;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.