diff options
author | Neil Brown <neilb@suse.de> | 2007-02-12 12:25:03 +1100 |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2007-02-12 12:25:03 +1100 |
commit | e91ff0175602cc56f223f1d92de6511099fa40d1 (patch) | |
tree | 7d98e93a037f2986572659fa8d2ea2287317cd83 /support/include | |
parent | f981e46adaab5da3d105b5adf735e9ce9c19a1d5 (diff) | |
download | nfs-utils-e91ff0175602cc56f223f1d92de6511099fa40d1.tar.gz nfs-utils-e91ff0175602cc56f223f1d92de6511099fa40d1.tar.xz nfs-utils-e91ff0175602cc56f223f1d92de6511099fa40d1.zip |
Use UUIDs to identify filesystems if kernel supports it.
This introduces a new dependancy on libblkid.
If a filesystem being exported has a UUID that libblkid
can extract, then that is passed to the kernel for use
in identifying the filesystem in filehandles.
This means that 'fsid=' is no longer needed to work around the
problem of device numbers changing.
fsid= is still needed for fielsystems that have no device,
and can now be given 16byute uuid instead of just a 32bit one.
Diffstat (limited to 'support/include')
-rw-r--r-- | support/include/nfslib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/include/nfslib.h b/support/include/nfslib.h index aba37c2..13a89da 100644 --- a/support/include/nfslib.h +++ b/support/include/nfslib.h @@ -80,6 +80,7 @@ struct exportent { int e_nsqgids; int e_fsid; char * e_mountpoint; + char * e_uuid; }; struct rmtabent { |