svn commit: r349102 - stable/12/sys/opencrypto

Marius Strobl marius at FreeBSD.org
Sun Jun 16 10:46:03 UTC 2019


Author: marius
Date: Sun Jun 16 10:46:02 2019
New Revision: 349102
URL: https://svnweb.freebsd.org/changeset/base/349102

Log:
  MFC: r343979
  
  As struct cryptop is wrapped in #ifdef _KERNEL, userland doesn't
  need to drag in <sys/_task.h> either.

Modified:
  stable/12/sys/opencrypto/cryptodev.h
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/opencrypto/cryptodev.h
==============================================================================
--- stable/12/sys/opencrypto/cryptodev.h	Sun Jun 16 10:43:18 2019	(r349101)
+++ stable/12/sys/opencrypto/cryptodev.h	Sun Jun 16 10:46:02 2019	(r349102)
@@ -63,10 +63,10 @@
 #define _CRYPTO_CRYPTO_H_
 
 #include <sys/ioccom.h>
-#include <sys/_task.h>
 
 #ifdef _KERNEL
 #include <opencrypto/_cryptodev.h>
+#include <sys/_task.h>
 #endif
 
 /* Some initial values */


More information about the svn-src-stable mailing list