mlx4, mthca: Silence warnings about no-op alignment operations
Since commit 8fa6abb6f4
("Expose clang's alignment builtins and use
them for roundup2/rounddown2"), clang emits warnings for several
alignment operations in these drivers because the operation is a no-op.
The compiler is arguably being too strict here, but in the meantime
let's silence the warnings by conditionally compiling the alignment
operations.
Reviewed by: arichardson, hselasky
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D28576
This commit is contained in:
parent
c03ccb991d
commit
29ed53850e
@ -43,10 +43,8 @@
|
||||
((256 - sizeof (struct list_head) - 2 * sizeof (int)) / \
|
||||
(sizeof (struct scatterlist)))
|
||||
|
||||
enum {
|
||||
MLX4_ICM_PAGE_SHIFT = 12,
|
||||
MLX4_ICM_PAGE_SIZE = 1 << MLX4_ICM_PAGE_SHIFT,
|
||||
};
|
||||
#define MLX4_ICM_PAGE_SHIFT 12
|
||||
#define MLX4_ICM_PAGE_SIZE (1 << MLX4_ICM_PAGE_SHIFT)
|
||||
|
||||
struct mlx4_icm_chunk {
|
||||
struct list_head list;
|
||||
|
@ -1707,9 +1707,11 @@ int mlx4_QUERY_FW(struct mlx4_dev *dev)
|
||||
* Round up number of system pages needed in case
|
||||
* MLX4_ICM_PAGE_SIZE < PAGE_SIZE.
|
||||
*/
|
||||
#if MLX4_ICM_PAGE_SIZE < PAGE_SIZE
|
||||
fw->fw_pages =
|
||||
ALIGN(fw->fw_pages, PAGE_SIZE / MLX4_ICM_PAGE_SIZE) >>
|
||||
(PAGE_SHIFT - MLX4_ICM_PAGE_SHIFT);
|
||||
#endif
|
||||
|
||||
mlx4_dbg(dev, "Clear int @ %llx, BAR %d\n",
|
||||
(unsigned long long) fw->clr_int_base, fw->clr_int_bar);
|
||||
@ -2546,8 +2548,10 @@ int mlx4_SET_ICM_SIZE(struct mlx4_dev *dev, u64 icm_size, u64 *aux_pages)
|
||||
* Round up number of system pages needed in case
|
||||
* MLX4_ICM_PAGE_SIZE < PAGE_SIZE.
|
||||
*/
|
||||
#if MLX4_ICM_PAGE_SIZE < PAGE_SIZE
|
||||
*aux_pages = ALIGN(*aux_pages, PAGE_SIZE / MLX4_ICM_PAGE_SIZE) >>
|
||||
(PAGE_SHIFT - MLX4_ICM_PAGE_SHIFT);
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -852,9 +852,11 @@ int mthca_QUERY_FW(struct mthca_dev *dev)
|
||||
* Round up number of system pages needed in case
|
||||
* MTHCA_ICM_PAGE_SIZE < PAGE_SIZE.
|
||||
*/
|
||||
#if MTHCA_ICM_PAGE_SIZE < PAGE_SIZE
|
||||
dev->fw.arbel.fw_pages =
|
||||
ALIGN(dev->fw.arbel.fw_pages, PAGE_SIZE / MTHCA_ICM_PAGE_SIZE) >>
|
||||
(PAGE_SHIFT - MTHCA_ICM_PAGE_SHIFT);
|
||||
#endif
|
||||
|
||||
mthca_dbg(dev, "Clear int @ %llx, EQ arm @ %llx, EQ set CI @ %llx\n",
|
||||
(unsigned long long) dev->fw.arbel.clr_int_base,
|
||||
@ -1588,8 +1590,10 @@ int mthca_SET_ICM_SIZE(struct mthca_dev *dev, u64 icm_size, u64 *aux_pages)
|
||||
* Round up number of system pages needed in case
|
||||
* MTHCA_ICM_PAGE_SIZE < PAGE_SIZE.
|
||||
*/
|
||||
#if MTHCA_ICM_PAGE_SIZE < PAGE_SIZE
|
||||
*aux_pages = ALIGN(*aux_pages, PAGE_SIZE / MTHCA_ICM_PAGE_SIZE) >>
|
||||
(PAGE_SHIFT - MTHCA_ICM_PAGE_SHIFT);
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -42,11 +42,9 @@
|
||||
((256 - sizeof (struct list_head) - 2 * sizeof (int)) / \
|
||||
(sizeof (struct scatterlist)))
|
||||
|
||||
enum {
|
||||
MTHCA_ICM_PAGE_SHIFT = 12,
|
||||
MTHCA_ICM_PAGE_SIZE = 1 << MTHCA_ICM_PAGE_SHIFT,
|
||||
MTHCA_DB_REC_PER_PAGE = MTHCA_ICM_PAGE_SIZE / 8
|
||||
};
|
||||
#define MTHCA_ICM_PAGE_SHIFT 12
|
||||
#define MTHCA_ICM_PAGE_SIZE (1 << MTHCA_ICM_PAGE_SHIFT)
|
||||
#define MTHCA_DB_REC_PER_PAGE (MTHCA_ICM_PAGE_SIZE / 8)
|
||||
|
||||
struct mthca_icm_chunk {
|
||||
struct list_head list;
|
||||
|
Loading…
Reference in New Issue
Block a user