summaryrefslogtreecommitdiff
path: root/sys/uvm/uvm_swap.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/uvm/uvm_swap.c')
-rw-r--r--sys/uvm/uvm_swap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/uvm/uvm_swap.c b/sys/uvm/uvm_swap.c
index 78e066c3f53..96dba58afcd 100644
--- a/sys/uvm/uvm_swap.c
+++ b/sys/uvm/uvm_swap.c
@@ -1962,7 +1962,7 @@ uvm_swap_io(struct vm_page **pps, int startslot, int npages, int flags)
bp->b_cflags = BC_BUSY | BC_NOCACHE;
#ifdef LOCKDOC_VFS
- lockdoc_log_lock(P_WRITE, &(bp->b_cflags), __FILE__, __LINE__, __func__, "b_cflags", 0);
+ b_cflags_busy(&(bp->b_cflags));
#endif
bp->b_flags = (flags & (B_READ|B_ASYNC));
bp->b_proc = &proc0; /* XXX */
>rillig 2021-11-14tests/lint: demonstrate missing errors for strict bool moderillig 2021-07-04lint: in strict bool mode, continue after error messagerillig 2021-07-02lint: no special check for unary operators in strict bool moderillig 2021-04-05tests/lint: one comment per expected diagnosticrillig 2021-03-23tests/lint: fix outdated commentsrillig 2021-03-21lint: fix reachability computation in if statementsrillig 2021-03-21tests/lint: sync redundant documentation in test for strict bool moderillig 2021-03-20lint: in strict bool mode, check initialization as wellrillig 2021-03-20tests/lint: test initialization in strict bool moderillig 2021-02-27tests/lint: allow 'expect' comments to refer to other linesrillig 2021-02-20lint: do not warn about 'do { ... } while (false)' in strict bool moderillig 2021-02-20lint: add test for 'do { ... } while (false)' in strict bool moderillig 2021-02-20lint: enable heuristics in test for strict bool moderillig 2021-02-20lint: add test for using a bool as array index in strict bool moderillig 2021-01-17lint: add more tests for system headers in strict bool moderillig 2021-01-17lint: add test for macro from system header in strict bool moderillig 2021-01-17lint: in strict bool mode, don't treat bool as arithmetic typerillig 2021-01-17lint: explain failing test case in strict bool moderillig 2021-01-17lint: demonstrate wrong error message in strict bool moderillig 2021-01-16lint: add missing warning for bool() == intrillig 2021-01-16lint: remove redundant calls to before_conversionrillig 2021-01-16lint: add test for missing check in strict bool moderillig 2021-01-16lint: in strict bool mode, integer constants do not have type boolrillig 2021-01-16lint: prepare to make strict bool mode even stricterrillig 2021-01-15lint: add test for bool bit fields as operands of '|'rillig 2021-01-15lint: in strict bool mode, allow bool as operands of the comma operatorrillig 2021-01-15lint: demonstrate wrong message for comma operatorrillig 2021-01-12lint: add new check for strict bool moderillig 2021-01-11lint: extend test for strict _Bool handlingrillig 2021-01-10lint: add enum flags to the test about strict boolean moderillig 2021-01-10lint: add test for treating _Bool as non-scalar typerillig