diff options
author | Tiago Natel de Moura <t.nateldemoura@f5.com> | 2020-09-16 17:52:53 +0100 |
---|---|---|
committer | Tiago Natel de Moura <t.nateldemoura@f5.com> | 2020-09-16 17:52:53 +0100 |
commit | 77ecb6ab49257dd662aa9c461fed3dc1d74e5092 (patch) | |
tree | 8f403da84ff4bc88631a9333374c645ed31262ca /src | |
parent | d5973fb557c6eca95da671f80637955b5eca00d3 (diff) | |
download | unit-77ecb6ab49257dd662aa9c461fed3dc1d74e5092.tar.gz unit-77ecb6ab49257dd662aa9c461fed3dc1d74e5092.tar.bz2 |
Isolation: remove redundant macro.
Diffstat (limited to 'src')
-rw-r--r-- | src/nxt_clone.h | 3 | ||||
-rw-r--r-- | src/nxt_isolation.c | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/nxt_clone.h b/src/nxt_clone.h index e89fd82d..c2066ce6 100644 --- a/src/nxt_clone.h +++ b/src/nxt_clone.h @@ -42,9 +42,6 @@ pid_t nxt_clone(nxt_int_t flags); #if (NXT_HAVE_CLONE_NEWUSER) -#define NXT_CLONE_MNT(flags) \ - ((flags & CLONE_NEWNS) == CLONE_NEWNS) - NXT_EXPORT nxt_int_t nxt_clone_credential_map(nxt_task_t *task, pid_t pid, nxt_credential_t *creds, nxt_clone_t *clone); NXT_EXPORT nxt_int_t nxt_clone_vldt_credential_uidmap(nxt_task_t *task, diff --git a/src/nxt_isolation.c b/src/nxt_isolation.c index a497b729..0ff63e50 100644 --- a/src/nxt_isolation.c +++ b/src/nxt_isolation.c @@ -707,7 +707,7 @@ nxt_isolation_change_root(nxt_task_t *task, nxt_process_t *process) nxt_debug(task, "change root: %s", rootfs); - if (NXT_CLONE_MNT(process->isolation.clone.flags)) { + if (nxt_is_clone_flag_set(process->isolation.clone.flags, NEWNS)) { ret = nxt_isolation_pivot_root(task, rootfs); } else { |