target_core_file.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #ifndef TARGET_CORE_FILE_H
  2. #define TARGET_CORE_FILE_H
  3. #define FD_VERSION "4.0"
  4. #define FD_MAX_DEV_NAME 256
  5. #define FD_MAX_DEV_PROT_NAME FD_MAX_DEV_NAME + 16
  6. #define FD_DEVICE_QUEUE_DEPTH 32
  7. #define FD_MAX_DEVICE_QUEUE_DEPTH 128
  8. #define FD_BLOCKSIZE 512
  9. /*
  10. * Limited by the number of iovecs (2048) per vfs_[writev,readv] call
  11. */
  12. #define FD_MAX_BYTES 8388608
  13. #define RRF_EMULATE_CDB 0x01
  14. #define RRF_GOT_LBA 0x02
  15. #define FBDF_HAS_PATH 0x01
  16. #define FBDF_HAS_SIZE 0x02
  17. #define FDBD_HAS_BUFFERED_IO_WCE 0x04
  18. #define FDBD_FORMAT_UNIT_SIZE 2048
  19. struct fd_prot {
  20. unsigned char *prot_buf;
  21. struct scatterlist *prot_sg;
  22. u32 prot_sg_nents;
  23. };
  24. struct fd_dev {
  25. struct se_device dev;
  26. u32 fbd_flags;
  27. unsigned char fd_dev_name[FD_MAX_DEV_NAME];
  28. /* Unique Ramdisk Device ID in Ramdisk HBA */
  29. u32 fd_dev_id;
  30. /* Number of SG tables in sg_table_array */
  31. u32 fd_table_count;
  32. u32 fd_queue_depth;
  33. u32 fd_block_size;
  34. unsigned long long fd_dev_size;
  35. struct file *fd_file;
  36. struct file *fd_prot_file;
  37. /* FILEIO HBA device is connected to */
  38. struct fd_host *fd_host;
  39. } ____cacheline_aligned;
  40. struct fd_host {
  41. u32 fd_host_dev_id_count;
  42. /* Unique FILEIO Host ID */
  43. u32 fd_host_id;
  44. } ____cacheline_aligned;
  45. #endif /* TARGET_CORE_FILE_H */