Module Name:    src
Committed By:   riastradh
Date:           Sun Dec 19 11:11:19 UTC 2021

Modified Files:
        src/sys/external/bsd/drm2/include/linux: lockdep.h

Log Message:
Stub might_lock_nested. Not in the LOCKDEP case...

Not sure we have anything for nested locks.

Author: Maya Rashish <m...@netbsd.org>
Committer: Taylor R Campbell <riastr...@netbsd.org>


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/external/bsd/drm2/include/linux/lockdep.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/external/bsd/drm2/include/linux/lockdep.h
diff -u src/sys/external/bsd/drm2/include/linux/lockdep.h:1.5 src/sys/external/bsd/drm2/include/linux/lockdep.h:1.6
--- src/sys/external/bsd/drm2/include/linux/lockdep.h:1.5	Sun Dec 19 11:05:05 2021
+++ src/sys/external/bsd/drm2/include/linux/lockdep.h	Sun Dec 19 11:11:19 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: lockdep.h,v 1.5 2021/12/19 11:05:05 riastradh Exp $	*/
+/*	$NetBSD: lockdep.h,v 1.6 2021/12/19 11:11:19 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -57,6 +57,7 @@ struct spinlock;
 #define	lockdep_assert_held_once(m)	do {} while (0)
 #define	lockdep_is_held(m)		1
 #define	might_lock(m)			do {} while (0)
+#define	might_lock_nested(m,n)		do {} while (0)
 #endif
 
 #define	__lockdep_kmutex(m)						      \

Reply via email to