File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
tools/testing/selftests/mm Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -161,8 +161,8 @@ warn_32bit_failure:
161
161
endif
162
162
endif
163
163
164
- # cow_EXTRA_LIBS may get set in local_config.mk, or it may be left empty.
165
- $(OUTPUT ) /cow : LDLIBS += $(COW_EXTRA_LIBS )
164
+ # IOURING_EXTRA_LIBS may get set in local_config.mk, or it may be left empty.
165
+ $(OUTPUT ) /cow : LDLIBS += $(IOURING_EXTRA_LIBS )
166
166
167
167
$(OUTPUT ) /mlock-random-test $(OUTPUT ) /memfd_secret : LDLIBS += -lcap
168
168
@@ -175,11 +175,11 @@ local_config.mk local_config.h: check_config.sh
175
175
176
176
EXTRA_CLEAN += local_config.mk local_config.h
177
177
178
- ifeq ($(COW_EXTRA_LIBS ) ,)
178
+ ifeq ($(IOURING_EXTRA_LIBS ) ,)
179
179
all : warn_missing_liburing
180
180
181
181
warn_missing_liburing :
182
182
@echo ; \
183
- echo " Warning: missing liburing support. Some COW tests will be skipped." ; \
183
+ echo " Warning: missing liburing support. Some tests will be skipped." ; \
184
184
echo
185
185
endif
Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ $CC -c $tmpfile_c -o $tmpfile_o >/dev/null 2>&1
21
21
22
22
if [ -f $tmpfile_o ]; then
23
23
echo " #define LOCAL_CONFIG_HAVE_LIBURING 1" > $OUTPUT_H_FILE
24
- echo " COW_EXTRA_LIBS = -luring" > $OUTPUT_MKFILE
24
+ echo " IOURING_EXTRA_LIBS = -luring" > $OUTPUT_MKFILE
25
25
else
26
26
echo " // No liburing support found" > $OUTPUT_H_FILE
27
27
echo " # No liburing support found, so:" > $OUTPUT_MKFILE
28
- echo " COW_EXTRA_LIBS = " >> $OUTPUT_MKFILE
28
+ echo " IOURING_EXTRA_LIBS = " >> $OUTPUT_MKFILE
29
29
fi
30
30
31
31
rm ${tmpname} .*
You can’t perform that action at this time.
0 commit comments