From 86aefb5de25496ce8894bef73bec6e5d13fd3f47 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Wed, 29 Aug 2018 10:16:22 +0200 Subject: rootless: unexport GetUserNSForPid Signed-off-by: Giuseppe Scrivano Closes: #1371 Approved by: rhatdan --- pkg/rootless/rootless_linux.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkg/rootless/rootless_linux.go') diff --git a/pkg/rootless/rootless_linux.go b/pkg/rootless/rootless_linux.go index e218dede0..9a8534922 100644 --- a/pkg/rootless/rootless_linux.go +++ b/pkg/rootless/rootless_linux.go @@ -92,7 +92,7 @@ func JoinNS(pid uint) (bool, int, error) { return false, -1, nil } - userNS, err := GetUserNSForPid(pid) + userNS, err := getUserNSForPid(pid) if err != nil { return false, -1, err } @@ -238,7 +238,7 @@ func getParentUserNs(fd uintptr) (uintptr, error) { return (uintptr)(unsafe.Pointer(ret)), nil } -// GetUserNSForPid returns an open FD for the first direct child user namespace that created the process +// getUserNSForPid returns an open FD for the first direct child user namespace that created the process // Each container creates a new user namespace where the runtime runs. The current process in the container // might have created new user namespaces that are child of the initial namespace we created. // This function finds the initial namespace created for the container that is a child of the current namespace. @@ -250,7 +250,7 @@ func getParentUserNs(fd uintptr) (uintptr, error) { // b // / // NS READ USING THE PID -> c -func GetUserNSForPid(pid uint) (*os.File, error) { +func getUserNSForPid(pid uint) (*os.File, error) { currentNS, err := readUserNs("/proc/self/ns/user") if err != nil { return nil, err -- cgit v1.2.3-54-g00ecf