mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
IB/hfi1: fix sdma_descq_cnt parameter parsing
The boolean tests should have been or-ed. Reported-by: David Binderman <dcb314@hotmail.com> Reviewed-by: Jubin John <jubin.john@intel.com> Signed-off-by: Mike Marciniszyn <mike.marciniszyn@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
e1df0068a2
commit
aeef010a0f
@ -737,7 +737,7 @@ u16 sdma_get_descq_cnt(void)
|
||||
*/
|
||||
if (!is_power_of_2(count))
|
||||
return SDMA_DESCQ_CNT;
|
||||
if (count < 64 && count > 32768)
|
||||
if (count < 64 || count > 32768)
|
||||
return SDMA_DESCQ_CNT;
|
||||
return count;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user