LinuxKPI: Add context member to ww_mutex and bump FreeBSD version.

This patch is part of https://reviews.freebsd.org/D19565.

Reviewed by:	hps
Approved by:	imp (mentor), hps
This commit is contained in:
Johannes Lundberg 2019-05-14 23:21:20 +00:00
parent 02927c768a
commit 395be823fd
2 changed files with 2 additions and 1 deletions

View File

@ -45,6 +45,7 @@ struct ww_acquire_ctx {
struct ww_mutex {
struct mutex base;
struct cv condvar;
struct ww_acquire_ctx *ctx;
};
#define DEFINE_WW_CLASS(name) \

View File

@ -60,7 +60,7 @@
* in the range 5 to 9.
*/
#undef __FreeBSD_version
#define __FreeBSD_version 1300025 /* Master, propagated to newvers */
#define __FreeBSD_version 1300026 /* Master, propagated to newvers */
/*
* __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,