Re: [PATCH v2 21/39] megaraid_sas: big endian support changes

2017-02-09 Thread Martin K. Petersen
> "Kashyap" == Kashyap Desai writes: Kashyap, Kashyap> We will fix this patch and resend. Only fixing this patch and Kashyap> resend works fine with complete series (there is no hunk Kashyap> failure observe), so just going to push one particular patch Kashyap>

RE: [PATCH v2 21/39] megaraid_sas: big endian support changes

2017-02-09 Thread Kashyap Desai
> +static inline void set_num_sge(struct RAID_CONTEXT_G35 rctx_g35, > +u16 sge_count) > +{ > + rctx_g35.u.bytes[0] = (u8)(sge_count & NUM_SGE_MASK_LOWER); > + rctx_g35.u.bytes[1] |= (u8)((sge_count >> NUM_SGE_SHIFT_UPPER) > +

[PATCH v2 21/39] megaraid_sas: big endian support changes

2017-02-08 Thread Shivasharan S
Fix endiannes fixes for Ventura specific. Signed-off-by: Shivasharan S Signed-off-by: Kashyap Desai Reviewed-by: Hannes Reinecke Reviewed-by: Tomas Henzl ---