mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-16 08:47:44 +07:00
[SCSI] libfc: introduce __fc_fill_fc_hdr that accepts fc_hdr as an argument
fc_fill_fc_hdr() expects fc_frame as an argument. Introduce __fc_fill_fc_hdr to accept fc_frame_header as an argument. Signed-off-by: Bhanu Prakash Gollapudi <bprakash@broadcom.com> Signed-off-by: Robert Love <robert.w.love@intel.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
parent
72fa396bf5
commit
059f04d4aa
@ -46,6 +46,22 @@ struct fc_ct_req {
|
|||||||
} payload;
|
} payload;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static inline void __fc_fill_fc_hdr(struct fc_frame_header *fh,
|
||||||
|
enum fc_rctl r_ctl,
|
||||||
|
u32 did, u32 sid, enum fc_fh_type type,
|
||||||
|
u32 f_ctl, u32 parm_offset)
|
||||||
|
{
|
||||||
|
WARN_ON(r_ctl == 0);
|
||||||
|
fh->fh_r_ctl = r_ctl;
|
||||||
|
hton24(fh->fh_d_id, did);
|
||||||
|
hton24(fh->fh_s_id, sid);
|
||||||
|
fh->fh_type = type;
|
||||||
|
hton24(fh->fh_f_ctl, f_ctl);
|
||||||
|
fh->fh_cs_ctl = 0;
|
||||||
|
fh->fh_df_ctl = 0;
|
||||||
|
fh->fh_parm_offset = htonl(parm_offset);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* fill FC header fields in specified fc_frame
|
* fill FC header fields in specified fc_frame
|
||||||
*/
|
*/
|
||||||
@ -56,15 +72,7 @@ static inline void fc_fill_fc_hdr(struct fc_frame *fp, enum fc_rctl r_ctl,
|
|||||||
struct fc_frame_header *fh;
|
struct fc_frame_header *fh;
|
||||||
|
|
||||||
fh = fc_frame_header_get(fp);
|
fh = fc_frame_header_get(fp);
|
||||||
WARN_ON(r_ctl == 0);
|
__fc_fill_fc_hdr(fh, r_ctl, did, sid, type, f_ctl, parm_offset);
|
||||||
fh->fh_r_ctl = r_ctl;
|
|
||||||
hton24(fh->fh_d_id, did);
|
|
||||||
hton24(fh->fh_s_id, sid);
|
|
||||||
fh->fh_type = type;
|
|
||||||
hton24(fh->fh_f_ctl, f_ctl);
|
|
||||||
fh->fh_cs_ctl = 0;
|
|
||||||
fh->fh_df_ctl = 0;
|
|
||||||
fh->fh_parm_offset = htonl(parm_offset);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user