This patchset is the userspace portion of the knfsd client name tracking overhaul. See this patch series for an explanation: nfsd: overhaul the client name tracking code (RFC) The main changes from the last set are: - the daemon has been renamed from clstated to nfsdcld, per Steve D's suggestion - the client names are no longer tracked on a per-server-address basis. Chuck Lever pointed out that doing so would break the UCS migration model. This version just keeps a single clients table in the main database (which also significantly simplifies the code). - other bugfixes and cleanups The daemon listens for upcalls on the rpc_pipefs pipe using libevent, and handles the requests. The data is stored using a sqlite database. The main reason for this is that it takes care of most of the fussy details and atomicity concerns of tracking the information on stable storage. Surprisingly, there is some controversy over this, but I believe it's the right design decision. I'm willing to change that however if there are legitimate technical concerns. In that event, I'd appreciate constructive suggestions about what should replace it. For now, the daemon is only suitable for single-host configurations. My plan is to later extend this to be suitable for clustered configurations as well. The code is still a little rough, so be gentle. It also lacks things like a manpage. I plan to add all that before doing a "formal" patch submission, but I wanted to get some early review of the overall design before to spend a lot of time knocking off the rough edges. Jeff Layton (7): autoconf: fix up libevent autoconf test nfsdcld: add client tracking daemon stub nfsdcld: add autoconf goop for sqlite nfsdcld: add routines for a sqlite backend database nfsdcld: add remove functionality nfsdcld: add check/update functionality nfsdcld: add function to remove unreclaimed client records aclocal/libevent.m4 | 3 +- aclocal/libsqlite3.m4 | 33 ++++ configure.ac | 23 +++ utils/Makefile.am | 4 + utils/idmapd/Makefile.am | 2 +- utils/nfsdcld/Makefile.am | 14 ++ utils/nfsdcld/nfsdcld.c | 332 ++++++++++++++++++++++++++++++++++++++ utils/nfsdcld/sqlite.c | 388 +++++++++++++++++++++++++++++++++++++++++++++ utils/nfsdcld/sqlite.h | 30 ++++ 9 files changed, 827 insertions(+), 2 deletions(-) create mode 100644 aclocal/libsqlite3.m4 create mode 100644 utils/nfsdcld/Makefile.am create mode 100644 utils/nfsdcld/nfsdcld.c create mode 100644 utils/nfsdcld/sqlite.c create mode 100644 utils/nfsdcld/sqlite.h -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html