diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2013-04-15 15:32:20 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2013-04-15 15:32:20 +0000 |
commit | fe915cc6dc03f86ee7339daa4ac45c90980b5481 (patch) | |
tree | 8fb04d8fb16c2c63fcefd0cfd0a04d80c0af3ad8 /sys/conf | |
parent | f85d6054d53f84d310202c4342c2f64d0107d0a5 (diff) |
Add an f_mntfromspec member to struct statfs, which specifies the name of
the special provided when the mount was requested. This may be the same as
the special that was actually used for the mount (e.g. in the case of a
device node) or it may be different (e.g. in the case of a DUID).
Whilst here, change f_ctime to a 64 bit type and remove the pointless
f_spare members.
Compatibility goo courtesy of guenther@
ok krw@ millert@
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/GENERIC | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/conf/GENERIC b/sys/conf/GENERIC index 56c43e64832..1033715c84f 100644 --- a/sys/conf/GENERIC +++ b/sys/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.195 2013/03/14 11:18:37 mpi Exp $ +# $OpenBSD: GENERIC,v 1.196 2013/04/15 15:32:19 jsing Exp $ # # Machine-independent option; used by all architectures for their # GENERIC kernel @@ -30,6 +30,7 @@ option UVM_SWAP_ENCRYPT# support encryption of pages going to swap option COMPAT_43 # Kernel compatibility with 4.3BSD option COMPAT_O51 # Kernel compatibility with OpenBSD 5.1 +option COMPAT_O53 # Kernel compatibility with OpenBSD 5.3 option LKM # loadable kernel modules |