| Submitter | Rich Dubielzig |
|---|---|
| Date | Feb. 25, 2013, 6:33 p.m. |
| Message ID | <1361817184-21799-1-git-send-email-rich.dubielzig@windriver.com> |
| Download | mbox | patch |
| Permalink | /patch/45053/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.2.3.bb b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.2.3.bb index 84c4464..8999bc8 100644 --- a/meta/recipes-connectivity/nfs-utils/nfs-utils_1.2.3.bb +++ b/meta/recipes-connectivity/nfs-utils/nfs-utils_1.2.3.bb @@ -58,4 +58,7 @@ do_install_append () { rm -f ${D}${sbindir}/rpcdebug rm -f ${D}${sbindir}/rpcgen rm -f ${D}${sbindir}/locktest + + # needed to allow NFSD to end its grace period + install -d ${D}/var/lib/nfs/v4recovery }
When the /var/lib/nfs/v4recovery directory is not present, NFSD cannot record the upcall state and cannot end the 90-second grace period on startup. This is true even when NFS4 is not being served according to nfsstat. More details and discussion here: https://lkml.org/lkml/2012/6/11/206 Signed-off-by: Rich Dubielzig <rich.dubielzig@windriver.com> --- .../nfs-utils/nfs-utils_1.2.3.bb | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)