The branch main has been updated by jhb:

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

commit 63d7b7fad2dd2343854c60f0da4ac46ef5b0d8b1
Author:     John Baldwin <[email protected]>
AuthorDate: 2026-05-18 19:47:57 +0000
Commit:     John Baldwin <[email protected]>
CommitDate: 2026-05-18 19:47:57 +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
---
 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;

Reply via email to