Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Jun 2026 16:28:31 +0000
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: cafe7b072632 - stable/15 - ctld: Mark a few more isns_* methods in the conf class private
Message-ID:  <6a3ab42f.272ff.6d994964@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/15 has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=cafe7b07263220b3eadc29914c0d238f7de7a865

commit cafe7b07263220b3eadc29914c0d238f7de7a865
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2026-05-18 19:47:57 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2026-06-23 16:17:31 +0000

    ctld: Mark a few more isns_* methods in the conf class private
    
    These are only invoked from other methods in the conf class.
    
    Sponsored by:   Chelsio Communications
    Differential Revision:  https://reviews.freebsd.org/D56531
    
    (cherry picked from commit 63d7b7fad2dd2343854c60f0da4ac46ef5b0d8b1)
---
 usr.sbin/ctld/ctld.hh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/usr.sbin/ctld/ctld.hh b/usr.sbin/ctld/ctld.hh
index 45590ada4111..d3b08dc12603 100644
--- a/usr.sbin/ctld/ctld.hh
+++ b/usr.sbin/ctld/ctld.hh
@@ -508,9 +508,6 @@ struct conf {
 	void set_timeout(int timeout);
 
 	bool add_isns(const char *addr);
-	void isns_register_targets(struct isns *isns, struct conf *oldconf);
-	void isns_deregister_targets(struct isns *isns);
-	void isns_schedule_update();
 	void isns_update();
 
 	int apply(struct conf *oldconf);
@@ -523,6 +520,9 @@ private:
 	struct isns_req isns_check_request(const char *hostname);
 	struct isns_req isns_deregister_request(const char *hostname);
 	void isns_check(struct isns *isns);
+	void isns_deregister_targets(struct isns *isns);
+	void isns_register_targets(struct isns *isns, struct conf *oldconf);
+	void isns_schedule_update();
 
 	std::string			conf_pidfile_path;
 	std::unordered_map<std::string, std::unique_ptr<lun>> conf_luns;


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a3ab42f.272ff.6d994964>