Re: [PATCH 01/15] qla2xxx: Combine Active command arrays.

2017-06-09 Thread Madhani, Himanshu
Hi Bart, > On Jun 7, 2017, at 3:45 PM, Bart Van Assche > wrote: > > On Wed, 2017-06-07 at 14:43 -0700, Himanshu Madhani wrote: >> +enum { >> +TYPE_SRB, >> +TYPE_TGT_CMD, >> +}; >> + >> typedef struct srb { >> +/* >> + * Do not move cmd_type field,

Re: [PATCH 01/15] qla2xxx: Combine Active command arrays.

2017-06-07 Thread Bart Van Assche
On Wed, 2017-06-07 at 14:43 -0700, Himanshu Madhani wrote: > +enum { > + TYPE_SRB, > + TYPE_TGT_CMD, > +}; > + > typedef struct srb { > + /* > + * Do not move cmd_type field, it needs to > + * line up with qla_tgt_cmd->cmd_type > + */ > + uint8_t cmd_type; > +

[PATCH 01/15] qla2xxx: Combine Active command arrays.

2017-06-07 Thread Himanshu Madhani
From: Quinn Tran Merge active/outstanding cmd arrays from target side and initiator side together in prepration for Target Multi Queue support. Signed-off-by: Quinn Tran Signed-off-by: Himanshu Madhani ---