Mini Tape Driver And Writefile?

I need a way to debug writefile on a end user system. Writefile doesn’t appear to be handled by the minitape driver but I want to verify that eot (end of tape) is being detected by writefile. I see it on a SCSI trace but the application people are saying that writefile is not returning this error status. Also is writefile handled by the tape class driver?

Any assistance would greatly appreciated.

Thanks!

E-mail Notice:
This message and any attachments are solely for the use of intended recipients. They may contain privileged and/or confidential information, attorney work product or other information protected from disclosure. If you are not the intended recipient, you are hereby notified that you received this email in error, and that any review, dissemination, distribution or copying of this email and any attachment is strictly prohibited. If you receive this email in error please contact the sender and delete the message and any attachments associated therewith from your computer. Your cooperation in this matter is appreciated.

In yor miniclass driver, you can initialize the following routine:

TAPE_STATUS
TapeMiniPreProcessReadWrite(
IN OUT PVOID MinitapeExtension OPTIONAL,
IN OUT PVOID CommandExtension,
IN OUT PVOID CommandParameters,
IN OUT PSCSI_REQUEST_BLOCK Srb,
IN ULONG CallNumber,
IN TAPE_STATUS StatusOfLastCommand,
IN OUT PULONG RetryFlags
);

This routine will be called before each SCSI read ad write operation to the
tape device; it is like a filter so that you can preprocess reads and wrotes
for your specific device.

Jamey

----- Original Message -----
From: “Heck, Steve” <steve.heck>
To: “Windows System Software Devs Interest List”
Sent: Monday, March 07, 2005 10:59 AM
Subject: [ntdev] Mini Tape Driver And Writefile?

>I need a way to debug writefile on a end user system. Writefile doesn’t
>appear to be handled by the minitape driver but I want to verify that eot
>(end of tape) is being detected by writefile. I see it on a SCSI trace but
>the application people are saying that writefile is not returning this
>error status. Also is writefile handled by the tape class driver?
>
> Any assistance would greatly appreciated.
>
> Thanks!
>
> E-mail Notice:
> This message and any attachments are solely for the use of intended
> recipients. They may contain privileged and/or confidential information,
> attorney work product or other information protected from disclosure. If
> you are not the intended recipient, you are hereby notified that you
> received this email in error, and that any review, dissemination,
> distribution or copying of this email and any attachment is strictly
> prohibited. If you receive this email in error please contact the sender
> and delete the message and any attachments associated therewith from your
> computer. Your cooperation in this matter is appreciated.
>
>
>
> —
> Questions? First check the Kernel Driver FAQ at
> http://www.osronline.com/article.cfm?id=256
>
> You are currently subscribed to ntdev as: unknown lmsubst tag argument: ‘’
> To unsubscribe send a blank email to xxxxx@lists.osr.com
></steve.heck>