History log of /freebsd/sys/dev/mthca/mthca_cmd.c (Results 1 – 5 of 5)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: release/14.0.0, release/13.2.0, release/12.4.0
# 5ae3710a 25-Jul-2022 Dimitry Andric <dim@FreeBSD.org>

Fix unused variable warning in mlx5_ib_devx.c

With clang 15, the following -Werror warning is produced:

sys/dev/mthca/mthca_cmd.c:662:23: error: variable 'tc' set but not used [-Werror,-Wunused

Fix unused variable warning in mlx5_ib_devx.c

With clang 15, the following -Werror warning is produced:

sys/dev/mthca/mthca_cmd.c:662:23: error: variable 'tc' set but not used [-Werror,-Wunused-but-set-variable]
int ts __unused = 0, tc = 0;
^

The 'ts' and 'tc' variables are eventually used only in mthca_dbg()
macros, if CONFIG_INFINIBAND_MTHCA_DEBUG is defined. Ensure 'ts' and
'tc' are only declared and used when CONFIG_INFINIBAND_MTHCA_DEBUG is
defined.

MFC after: 3 days

show more ...


Revision tags: release/13.1.0
# 71a2364f 08-Apr-2022 John Baldwin <jhb@FreeBSD.org>

mthca: Mark a variable used only in debug traces as unused.


Revision tags: release/12.3.0, release/13.0.0
# 29ed5385 11-Feb-2021 Mark Johnston <markj@FreeBSD.org>

mlx4, mthca: Silence warnings about no-op alignment operations

Since commit 8fa6abb6f4f64f ("Expose clang's alignment builtins and use
them for roundup2/rounddown2"), clang emits warnings for severa

mlx4, mthca: Silence warnings about no-op alignment operations

Since commit 8fa6abb6f4f64f ("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

show more ...


Revision tags: release/12.2.0
# 3cb02df9 02-Sep-2020 Mateusz Guzik <mjg@FreeBSD.org>

mthca: clean up empty lines in .c and .h files


Revision tags: release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0
# 33ec1ccb 13-Feb-2018 Hans Petter Selasky <hselasky@FreeBSD.org>

Import the mthca kernel side infiniband driver from Linux 4.9 and fix
compilation under FreeBSD. The mthca driver was temporarily removed as
part of the Linux 4.9 RoCE/infinband upgrade.

Top commit

Import the mthca kernel side infiniband driver from Linux 4.9 and fix
compilation under FreeBSD. The mthca driver was temporarily removed as
part of the Linux 4.9 RoCE/infinband upgrade.

Top commit in Linux source tree:
69973b830859bc6529a7a0468ba0d80ee5117826

Sponsored by: Mellanox Technologies

show more ...