dm: Add a comment on race window on unload

There is a minor race window on unload vs device creation
that can cause panic.
53a07f3ae7

taken-from: DragonFlyBSD
This commit is contained in:
tkusumi 2019-12-02 15:17:43 +00:00
parent 784b1c1585
commit 6e7d723b30
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: device-mapper.c,v 1.40 2018/10/06 14:59:11 mlelstv Exp $ */
/* $NetBSD: device-mapper.c,v 1.41 2019/12/02 15:17:43 tkusumi Exp $ */
/*
* Copyright (c) 2010 The NetBSD Foundation, Inc.
@ -197,6 +197,7 @@ dm_modcmd(modcmd_t cmd, void *arg)
*/
if (dm_dev_counter > 0)
return EBUSY;
/* race window here */
error = dmdestroy();
if (error)