Add a small comment about unloading the kgsappi module.

Reviewed by:    rmacklem
Approved by:    zml (mentor)
MFC after:      2 weeks
This commit is contained in:
Zack Kirsch 2011-07-16 08:05:49 +00:00
parent 68347a92db
commit dcded131e1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=224084

View File

@ -282,7 +282,11 @@ kgssapi_modevent(module_t mod, int type, void *data)
rpc_gss_svc_max_data_length;
break;
case MOD_UNLOAD:
/* Unloading of the kgssapi module isn't supported. */
/*
* Unloading of the kgssapi module is not currently supported.
* If somebody wants this, we would need to keep track of
* currently executing threads and make sure the count is 0.
*/
/* FALLTHROUGH */
default:
error = EOPNOTSUPP;