diff options
author | David Hardeman <david@hardeman.nu> | 2015-01-21 17:10:07 -0500 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2015-01-23 14:19:09 -0500 |
commit | 55197c98d57470ed2947153faf4a20a9fe483061 (patch) | |
tree | 59c3ebc54afa926799037d6bc7af5728da560831 /utils/gssd/gssd.h | |
parent | ad3ae8bc94df244870277638bd03b5141cc5d503 (diff) | |
download | nfs-utils-55197c98d57470ed2947153faf4a20a9fe483061.tar.gz nfs-utils-55197c98d57470ed2947153faf4a20a9fe483061.tar.xz nfs-utils-55197c98d57470ed2947153faf4a20a9fe483061.zip |
gssd - change dnotify to inotify
This is just the first step, replacing dnotify with an inotify
implementation that is not much better (still does a complete
rescan of the whole rpc_pipefs tree on each change).
Signed-off-by: David Hardeman <david@hardeman.nu>
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'utils/gssd/gssd.h')
-rw-r--r-- | utils/gssd/gssd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/gssd/gssd.h b/utils/gssd/gssd.h index 7792035..c6937c5 100644 --- a/utils/gssd/gssd.h +++ b/utils/gssd/gssd.h @@ -64,7 +64,7 @@ extern char *preferred_realm; struct clnt_info { TAILQ_ENTRY(clnt_info) list; - int dir_fd; + int wd; bool scanned; char *name; char *relpath; |