Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C1567C43381 for ; Fri, 1 Mar 2019 20:24:46 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8ACBC2084D for ; Fri, 1 Mar 2019 20:24:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725905AbfCAUYq (ORCPT ); Fri, 1 Mar 2019 15:24:46 -0500 Received: from mx1.redhat.com ([209.132.183.28]:40028 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725862AbfCAUYq (ORCPT ); Fri, 1 Mar 2019 15:24:46 -0500 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B63DC3087BBB for ; Fri, 1 Mar 2019 20:24:45 +0000 (UTC) Received: from madhat.boston.devel.redhat.com (ovpn-117-179.phx2.redhat.com [10.3.117.179]) by smtp.corp.redhat.com (Postfix) with ESMTP id 83E695C8A1 for ; Fri, 1 Mar 2019 20:24:45 +0000 (UTC) Subject: Re: [PATCH] sm-notify: Added -f flag to nfs.conf parsing To: Linux NFS Mailing list References: <20190215140907.15272-1-steved@redhat.com> From: Steve Dickson Message-ID: <6f377566-4666-4fb5-52da-e552fcd2e91c@RedHat.com> Date: Fri, 1 Mar 2019 15:24:45 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.5.1 MIME-Version: 1.0 In-Reply-To: <20190215140907.15272-1-steved@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.45]); Fri, 01 Mar 2019 20:24:45 +0000 (UTC) Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org On 2/15/19 9:09 AM, Steve Dickson wrote: > Cleaned up the nfs.conf parsing and added the setting > of the force to the nfs.conf parsing > > Signed-off-by: Steve Dickson Committed... steved. > --- > nfs.conf | 1 + > utils/statd/sm-notify.c | 33 +++++++++++++++++++++------------ > 2 files changed, 22 insertions(+), 12 deletions(-) > > diff --git a/nfs.conf b/nfs.conf > index 722b024..f1ebfdb 100644 > --- a/nfs.conf > +++ b/nfs.conf > @@ -65,6 +65,7 @@ > # > [sm-notify] > # debug=0 > +# force=0 > # retry-time=900 > # outgoing-port= > # outgoing-addr= > diff --git a/utils/statd/sm-notify.c b/utils/statd/sm-notify.c > index 29dad38..4b6a3a7 100644 > --- a/utils/statd/sm-notify.c > +++ b/utils/statd/sm-notify.c > @@ -49,6 +49,7 @@ > #define NLM_END_GRACE_FILE "/proc/fs/lockd/nlm_end_grace" > > int lift_grace = 1; > +int force = 0; > > struct nsm_host { > struct nsm_host * next; > @@ -480,19 +481,10 @@ nsm_lift_grace_period(void) > close(fd); > return; > } > - > -int > -main(int argc, char **argv) > +inline static void > +read_nfs_conf(char **argv) > { > - int c, sock, force = 0; > - char * progname; > - char * s; > - > - progname = strrchr(argv[0], '/'); > - if (progname != NULL) > - progname++; > - else > - progname = argv[0]; > + char *s; > > conf_init_file(NFS_CONFFILE); > xlog_from_conffile("sm-notify"); > @@ -500,10 +492,27 @@ main(int argc, char **argv) > opt_srcport = conf_get_str("sm-notify", "outgoing-port"); > opt_srcaddr = conf_get_str("sm-notify", "outgoing-addr"); > lift_grace = conf_get_bool("sm-notify", "lift-grace", lift_grace); > + > s = conf_get_str("statd", "state-directory-path"); > if (s && !nsm_setup_pathnames(argv[0], s)) > exit(1); > opt_update_state = conf_get_bool("sm-notify", "update-state", opt_update_state); > + force = conf_get_bool("sm-notify", "force", force); > +} > + > +int > +main(int argc, char **argv) > +{ > + int c, sock; > + char * progname; > + > + progname = strrchr(argv[0], '/'); > + if (progname != NULL) > + progname++; > + else > + progname = argv[0]; > + > + read_nfs_conf(argv); > > while ((c = getopt(argc, argv, "dm:np:v:P:f")) != -1) { > switch (c) { >