Tagged Questions

2
votes
0answers
213 views

Does QueryDosDevice and IOCTL_STORAGE_GET_DEVICE_NUM treat LUNs as separate devices?

Can someone confirm whether QueryDosDevice() and IOCTL_STORAGE_GET_DEVICE_NUMBER considers LUNs on the same physical USB storage device as a single device, or is each LUN considered as a separate ...
2
votes
1answer
114 views

Is there a definitieve resource that documents navigation of the linux /proc and /sys filesystems?

We use the /proc and /sys file systems in Linux to discover various types of system configuration information. Typically, we spelunk around through the different files and directories until we find ...
1
vote
1answer
106 views

Windows repeatedly sends SCSI READ CAPACITY requests

I'm developing a USB-based mass storage device. Control is via SCSI commands. One of the LUNs of this device is "hidden", all commands (except INQUIRY and REQUEST SENSE) return COMMAND FAILED (1). ...
0
votes
1answer
44 views

Who creates the “/dev/sdaX” node in the Linux filesystem? [closed]

I have doubts, who creates the node sd (SCSI Disk) under /dev? I thought it was a kernel with usb driver in fact, but I have not found any documentation about this. I just found that it may be to ...
0
votes
1answer
318 views

send SCSI commands using C#

I'm controlling my self-designed USB device using SCSI interface with C by opening a file handle, ioctl and using sg_io_hdr_t structure. I have to design a GUI, and i should do that with C#. I am not ...