Details
-
Improvement
-
Resolution: Fixed
-
Trivial
-
None
-
9223372036854775807
Description
Several macros whose ends are commented to identify the macro being defined, have the wrong macro named in the comment. For example,
AC_DEFUN([LIBCFS_RHASHTABLE_WALK_INIT_3ARG], [
LB_CHECK_COMPILE([if 'rhashtable_walk_init' has 3 args],
rhashtable_walk_init, [
#include <linux/gfp.h>
#include <linux/rhashtable.h>
],[
rhashtable_walk_init(NULL, NULL, GFP_KERNEL);
],[
AC_DEFINE(HAVE_3ARG_RHASHTABLE_WALK_INIT, 1,
[rhashtable_walk_init() has 3 args])
])
]) # LIBCFS_RHASHTABLE_REPLACE
These are presumably copy-and-paste errors.