megaraid_sas : add endianness conversions for all ones
Add noop conversions for all ones to make sparse happy. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Sumit Saxena <sumit.saxena@avagotech.com> Reviewed-by: Hannes Reinecke <hare@suse.de> Reviewed-by: Tomas Henzl <thenzl@redhat.com> Signed-off-by: James Bottomley <JBottomley@Odin.com>
This commit is contained in:

committed by
James Bottomley

parent
9ab9ed38f6
commit
c6f5bf814f
@@ -415,7 +415,7 @@ megasas_alloc_cmds_fusion(struct megasas_instance *instance)
|
||||
|
||||
reply_desc = fusion->reply_frames_desc;
|
||||
for (i = 0; i < fusion->reply_q_depth * count; i++, reply_desc++)
|
||||
reply_desc->Words = ULLONG_MAX;
|
||||
reply_desc->Words = cpu_to_le64(ULLONG_MAX);
|
||||
|
||||
io_frames_sz = fusion->io_frames_alloc_sz;
|
||||
|
||||
@@ -1997,7 +1997,8 @@ complete_cmd_fusion(struct megasas_instance *instance, u32 MSIxIndex)
|
||||
|
||||
num_completed = 0;
|
||||
|
||||
while ((d_val.u.low != UINT_MAX) && (d_val.u.high != UINT_MAX)) {
|
||||
while (d_val.u.low != cpu_to_le32(UINT_MAX) &&
|
||||
d_val.u.high != cpu_to_le32(UINT_MAX)) {
|
||||
smid = le16_to_cpu(reply_desc->SMID);
|
||||
|
||||
cmd_fusion = fusion->cmd_list[smid - 1];
|
||||
@@ -2061,7 +2062,7 @@ complete_cmd_fusion(struct megasas_instance *instance, u32 MSIxIndex)
|
||||
fusion->reply_q_depth)
|
||||
fusion->last_reply_idx[MSIxIndex] = 0;
|
||||
|
||||
desc->Words = ULLONG_MAX;
|
||||
desc->Words = cpu_to_le64(ULLONG_MAX);
|
||||
num_completed++;
|
||||
threshold_reply_count++;
|
||||
|
||||
@@ -2488,7 +2489,7 @@ void megasas_reset_reply_desc(struct megasas_instance *instance)
|
||||
fusion->last_reply_idx[i] = 0;
|
||||
reply_desc = fusion->reply_frames_desc;
|
||||
for (i = 0 ; i < fusion->reply_q_depth * count; i++, reply_desc++)
|
||||
reply_desc->Words = ULLONG_MAX;
|
||||
reply_desc->Words = cpu_to_le64(ULLONG_MAX);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user