committer filter by committer.
@path/to/ filter by path in repository.
committer@path/to/ filter by committer AND path in repository.
abdef0123 filter by commit's SHA hash.
rNNN filter by SVN revision.
rNNN-rMMM filter by SVN revisions range (inclusive).
Multiple filters can be specified separated by spaces or comas in which case they'll be combined using OR operator.
bf855d1b | imp | July 24, 2022, 10:53 p.m. | stand: Use c99 structure initialization for fwohci device
Use c99 structure init for devsw. Sponsored by: Netflixcgit |
|
4c460aaf | imp | July 24, 2022, 10:53 p.m. | stand: Use c99 structure initialization for userboot block device
Use c99 structure init for devsw. Sponsored by: Netflixcgit |
|
1e3d1c86 | imp | July 24, 2022, 10:53 p.m. | stand: Use c99 structure initialization for uboot block device
Use c99 structure init for devsw. Sponsored by: Netflixcgit |
|
e72a01f1 | imp | July 24, 2022, 10:53 p.m. | stand: Use c99 structure initialization for ofw's block device
Use c99 structure init for devsw. Sponsored by: Netflixcgit |
|
fc5d0d51 | imp | July 24, 2022, 10:53 p.m. | stand: Use c99 structure initialization for kboot's hostdisk device
Use c99 structure init for devsw. Sponsored by: Netflixcgit |
|
143452f7 | imp | July 24, 2022, 10:53 p.m. | stand: Use c99 structure initialization for md device
Use c99 structure init for devsw. Sponsored by: Netflixcgit |
|
08585e77 | imp | July 24, 2022, 10:53 p.m. | tools/boot: Fix universe.sh's ZFS exclusion test
MK_LOADER_ZFS is the current spelling of enabling or disabling ZFS builds. Use it instead of MK_ZFS. Sponsored by: Netflix Reviewed by: tsoome Differential Revision: https://reviews.freebsd.org/D35896cgit |
|
5ae3710a | dim | July 24, 2022, 10:40 p.m. | 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 dayscgit |
|
3a0b2432 | dim | July 24, 2022, 10:40 p.m. | Fix unused variable warning in mlx5_ib_devx.c
With clang 15, the following -Werror warning is produced: sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c:1926:6: error: variable 'num_alloc_xa_entries' set but not used [-Werror,-Wunused-but-set-variable] int num_alloc_xa_entries = 0; ^ The 'num_alloc_xa_entries' variable appears to have been a debugging aid that has never been used for anything, so remove it. MFC after: 3 dayscgit |
|
6332ad86 | dim | July 24, 2022, 10:40 p.m. | Fix unused variable warning in mlx5_fs_tree.c
With clang 15, the following -Werror warning is produced: sys/dev/mlx5/mlx5_core/mlx5_fs_tree.c:1408:15: error: variable 'candidate_group_num' set but not used [-Werror,-Wunused-but-set-variable] unsigned int candidate_group_num = 0; ^ The 'candidate_group_num' variable appears to have been a debugging aid that has never been used for anything, so remove it. MFC after: 3 dayscgit |
|
eadef926 | dim | July 24, 2022, 10:40 p.m. | Adjust linux_vdso_{cpu,tsc}_selector_idx() definitions to avoid clang 15 warnings
With clang 15, the following -Werror warnings are produced: sys/x86/linux/linux_vdso_selector_x86.c:44:28: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] linux_vdso_tsc_selector_idx() ^ void sys/x86/linux/linux_vdso_selector_x86.c:62:28: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] linux_vdso_cpu_selector_idx() ^ void This is because linux_vdso_tsc_selector_idx() and linux_vdso_cpu_selector_idx are declared with (void) argument lists, but defined with empty argument lists. Make the definitions match the declarations. MFC after: 3 dayscgit |
|
e90d1b57 | dim | July 24, 2022, 10:40 p.m. | Adjust linux_get_char_devices() definition to avoid clang 15 warning
With clang 15, the following -Werror warning is produced: sys/compat/linux/linux_util.c:243:23: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] linux_get_char_devices() ^ void This is because linux_get_char_devices() is declared with a (void) argument list, but defined with an empty argument list. Make the definition match the declaration. MFC after: 3 dayscgit |
|
90529847 | dim | July 24, 2022, 10:40 p.m. | Adjust authnone_create() definition to avoid clang 15 warning
With clang 15, the following -Werror warning is produced: sys/rpc/auth_none.c:106:16: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] authnone_create() ^ void This is because authnone_create() is declared with a (void) argument list, but defined with an empty argument list. Make the definition match the declaration. MFC after: 3 dayscgit |
|
87d18efe | dim | July 24, 2022, 10:40 p.m. | Adjust svc_vc_null() definition to avoid clang 15 warning
With clang 15, the following -Werror warning is produced: sys/rpc/svc_vc.c:1078:12: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] svc_vc_null() ^ void This is because svc_vc_null() is declared with a (void) argument list, but defined with an empty argument list. Make the definition match the declaration. MFC after: 3 dayscgit |
|
e87d90a9 | dim | July 24, 2022, 10:40 p.m. | Adjust local_rpcb() definition to avoid clang 15 warning
With clang 15, the following -Werror warning is produced: sys/rpc/rpcb_clnt.c:439:11: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] local_rpcb() ^ void This is because local_rpcb() is declared with a (void) argument list, but defined with an empty argument list. Make the definition match the declaration. MFC after: 3 dayscgit |