• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/scsi/aacraid/

Lines Matching refs:fib

181 		struct fib *fibptr) {
211 struct fib * fibptr;
287 struct fib * fibptr;
365 static void get_container_name_callback(void *context, struct fib * fibptr)
412 struct fib * cmd_fibcontext;
462 static int _aac_probe_container2(void * context, struct fib * fibptr)
499 static int _aac_probe_container1(void * context, struct fib * fibptr)
549 struct fib * fibptr;
816 static void io_callback(void *context, struct fib * fibptr);
818 static int aac_read_raw_io(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
822 aac_fib_init(fib);
823 readcmd = (struct aac_raw_io *) fib_data(fib);
834 BUG_ON(fibsize > (fib->dev->max_fib_size - sizeof(struct aac_fibhdr)));
839 fib,
847 static int aac_read_block64(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
851 aac_fib_init(fib);
852 readcmd = (struct aac_read64 *) fib_data(fib);
864 BUG_ON (fibsize > (fib->dev->max_fib_size -
870 fib,
878 static int aac_read_block(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
882 aac_fib_init(fib);
883 readcmd = (struct aac_read *) fib_data(fib);
893 BUG_ON (fibsize > (fib->dev->max_fib_size -
899 fib,
907 static int aac_write_raw_io(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
911 aac_fib_init(fib);
912 writecmd = (struct aac_raw_io *) fib_data(fib);
923 BUG_ON(fibsize > (fib->dev->max_fib_size - sizeof(struct aac_fibhdr)));
928 fib,
936 static int aac_write_block64(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
940 aac_fib_init(fib);
941 writecmd = (struct aac_write64 *) fib_data(fib);
953 BUG_ON (fibsize > (fib->dev->max_fib_size -
959 fib,
967 static int aac_write_block(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
971 aac_fib_init(fib);
972 writecmd = (struct aac_write *) fib_data(fib);
984 BUG_ON (fibsize > (fib->dev->max_fib_size -
990 fib,
998 static struct aac_srb * aac_scsi_common(struct fib * fib, struct scsi_cmnd * cmd)
1004 aac_fib_init(fib);
1021 srbcmd = (struct aac_srb*) fib_data(fib);
1036 static void aac_srb_callback(void *context, struct fib * fibptr);
1038 static int aac_scsi_64(struct fib * fib, struct scsi_cmnd * cmd)
1041 struct aac_srb * srbcmd = aac_scsi_common(fib, cmd);
1054 BUG_ON (fibsize > (fib->dev->max_fib_size -
1060 return aac_fib_send(ScsiPortCommand64, fib,
1066 static int aac_scsi_32(struct fib * fib, struct scsi_cmnd * cmd)
1069 struct aac_srb * srbcmd = aac_scsi_common(fib, cmd);
1082 BUG_ON (fibsize > (fib->dev->max_fib_size -
1088 return aac_fib_send(ScsiPortCommand, fib, fibsize, FsaNormal, 0, 1,
1094 struct fib* fibptr;
1323 static void io_callback(void *context, struct fib * fibptr)
1415 struct fib * cmd_fibcontext;
1503 struct fib * cmd_fibcontext;
1574 static void synchronize_callback(void *context, struct fib *fibptr)
1620 struct fib *cmd_fibcontext;
2121 * @context: the context set in the fib - here it is scsi cmd
2122 * @fibptr: pointer to the fib
2128 static void aac_srb_callback(void *context, struct fib * fibptr)
2163 * First check the fib status
2307 struct fib* cmd_fibcontext;