From: Akihiro MOTOKI Date: Thu, 8 Jan 2015 21:01:33 +0000 (+0900) Subject: Complete getrlimit.2 and pid_namespaces.7 X-Git-Tag: LDP-3.76-final~12 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;ds=sidebyside;h=0314cfed84face656229b2977eba451890ddbb56;p=linuxjm%2FLDP_man-pages.git Complete getrlimit.2 and pid_namespaces.7 --- diff --git a/draft/man2/getrlimit.2 b/draft/man2/getrlimit.2 index c8d16004..c8a9c8f5 100644 --- a/draft/man2/getrlimit.2 +++ b/draft/man2/getrlimit.2 @@ -348,9 +348,8 @@ Linux 2.6.24 以降では、 プロセスのリソース上限は \fI/proc/[pid] 古いシステムでは、 \fBsetrlimit\fP() と同様の目的を持つ関数 \fBvlimit\fP() が提供されていた。 後方互換性のため、glibc でも \fBvlimit\fP() を提供している。 全ての新しいアプリケーションでは、 \fBsetrlimit\fP() を使用すべきである。 .SS "C ライブラリとカーネル ABI の違い" -Since version 2.13, the glibc \fBgetrlimit\fP() and \fBsetrlimit\fP() wrapper -functions no longer invoke the corresponding system calls, but instead -employ \fBprlimit\fP(), for the reasons described in BUGS. +バージョン 2.13 以降では、 glibc の \fBgetrlimit\fP() と \fBsetrlimit\fP() +のラッパー関数はもはや対応するシステムコールを呼び出さず、 代わりに「バグ」の節で説明されている理由から \fBprlimit\fP() を利用している。 .SH バグ 以前の Linux カーネルでは、プロセスがソフトまたはハード \fBRLIMIT_CPU\fP リミットに達した場合に送られる \fBSIGXCPU\fP と \fBSIGKILL\fP シグナルが、本来送られるべき時点の 1 (CPU) 秒後に送られてしまう。 これはカーネル 2.6.8 で修正された。 @@ -385,39 +384,31 @@ CPU 時間を消費し続けている限り、 ハードリミットに達する .\" 2.4.22 より前のカーネルでは、 \fIrlim\->rlim_cur\fP が \fIrlim\->rlim_max\fP より大きかった場合、 \fBsetrlimit\fP() での \fBEINVAL\fP エラーを検出できない。 -.SS "Representation of \(dqlarge\(dq resource limit values on 32\-bit platforms" +.SS "32 ビットプラットフォームにおける「大きな」リソース上限値の表現" .\" https://bugzilla.kernel.org/show_bug.cgi?id=5042 .\" http://sources.redhat.com/bugzilla/show_bug.cgi?id=12201 -The glibc \fBgetrlimit\fP() and \fBsetrlimit\fP() wrapper functions use a 64\-bit -\fIrlim_t\fP data type, even on 32\-bit platforms. However, the \fIrlim_t\fP data -type used in the \fBgetrlimit\fP() and \fBsetrlimit\fP() system calls is a -(32\-bit) \fIunsigned long\fP. Furthermore, in Linux versions before 2.6.36, -the kernel represents resource limits on 32\-bit platforms as \fIunsigned -long\fP. However, a 32\-bit data type is not wide enough. The most pertinent -limit here is \fBRLIMIT_FSIZE\fP, which specifies the maximum size to which a -file can grow: to be useful, this limit must be represented using a type -that is as wide as the type used to represent file offsets\(emthat is, as -wide as a 64\-bit \fBoff_t\fP (assuming a program compiled with -\fI_FILE_OFFSET_BITS=64\fP). - -To work around this kernel limitation, if a program tried to set a resource -limit to a value larger than can be represented in a 32\-bit \fIunsigned -long\fP, then the glibc \fBsetrlimit\fP() wrapper function silently converted -the limit value to \fBRLIM_INFINITY\fP. In other words, the requested resource -limit setting was silently ignored. - -This problem was addressed in Linux 2.6.36 with two principal changes: +glibc の \fBgetrlimit\fP() と \fBsetrlimit\fP() ラッパー関数は、32 ビットプラットフォームであっても 64 ビットの +\fIrlim_t\fP データ型を使用する。 しかし、 \fBgetrlimit\fP() と \fBsetrlimit\fP() システムコールで使用される +\fIrlim_t\fP データ型は (32 ビットの) \fIunsigned long\fP である。 さらに、 2.6.36 より前の Linux では、 +カーネルは 32 ビットプラットフォームではリソース上限を \fIunsigned long\fP として表現している。 しかしながら、 32 +ビットデータ型は十分な大きさではない。 ここで最も関係がある上限値は \fBRLIMIT_FSIZE\fP である。 +この上限はファイルサイズの最大値であり、実用性の面からは、 この上限をファイルオフセットを表現するのに使用されている型、 つまり 64 ビットの +\fBoff_t\fP (\fI_FILE_OFFSET_BITS=64\fP でコンパイルしたプログラムの場合)、 と同じ幅を持つ型、を使って表現すべきである。 + +カーネルのこの制限に対する対策として、 プログラムがリソース上限を 32 ビットの \fIunsigned long\fP +で表現できる値よりも大きな値に設定しようとした際には、 glibc の \fBsetrlimit\fP() ラッパー関数はこの上限値を黙って +\fBRLIM_INFINITY\fP に変換していた。 言い換えると、指定されたリソース上限値は黙って無視されていた。 + +この問題は Linux 2.6.36 での以下の主な変更により解決された。 .IP * 3 -the addition of a new kernel representation of resource limits that uses 64 -bits, even on 32\-bit platforms; +32 ビットプラットフォームであっても 64 ビットを使用するリソース上限の新しいカーネルでの表現方法の追加。 .IP * -the addition of the \fBprlimit\fP() system call, which employs 64\-bit values -for its resource limit arguments. +リソース上限の引き数として 64 ビット値を取る \fBprlimit\fP() システムコールの追加。 .PP .\" https://www.sourceware.org/bugzilla/show_bug.cgi?id=12201 -Since version 2.13, glibc works around the limitations of the \fBgetrlimit\fP() -and \fBsetrlimit\fP() system calls by implementing \fBsetrlimit\fP() and -\fBgetrlimit\fP() as wrapper functions that call \fBprlimit\fP(). +バージョン 2.13 以降の glibc では、 \fBgetrlimit\fP() と \fBsetrlimit\fP() +システムコールの制限に対する回避手段として、 +\fBsetrlimit\fP() と \fBgetrlimit\fP() を \fBprlimit\fP() を呼び出すラッパー関数として実装している。 .SH 例 以下のプログラムに \fBprlimit\fP() の使用例を示す。 .PP diff --git a/draft/man7/pid_namespaces.7 b/draft/man7/pid_namespaces.7 new file mode 100644 index 00000000..1c52b3a3 --- /dev/null +++ b/draft/man7/pid_namespaces.7 @@ -0,0 +1,180 @@ +.\" Copyright (c) 2013 by Michael Kerrisk +.\" and Copyright (c) 2012 by Eric W. Biederman +.\" +.\" %%%LICENSE_START(VERBATIM) +.\" Permission is granted to make and distribute verbatim copies of this +.\" manual provided the copyright notice and this permission notice are +.\" preserved on all copies. +.\" +.\" Permission is granted to copy and distribute modified versions of this +.\" manual under the conditions for verbatim copying, provided that the +.\" entire resulting derived work is distributed under the terms of a +.\" permission notice identical to this one. +.\" +.\" Since the Linux kernel and libraries are constantly changing, this +.\" manual page may be incorrect or out-of-date. The author(s) assume no +.\" responsibility for errors or omissions, or for damages resulting from +.\" the use of the information contained herein. The author(s) may not +.\" have taken the same level of care in the production of this manual, +.\" which is licensed free of charge, as they might when working +.\" professionally. +.\" +.\" Formatted or processed versions of this manual, if unaccompanied by +.\" the source, must acknowledge the copyright and authors of this work. +.\" %%%LICENSE_END +.\" +.\" +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH PID_NAMESPACES 7 2014\-09\-21 Linux "Linux Programmer's Manual" +.SH 名前 +pid_namespaces \- Linux PID 名前空間の概要 +.SH 説明 +名前空間の概要については \fBnamespaces\fP(7) を参照。 + +PID 名前空間はプロセス ID 番号空間を分離する。 これは、異なる PID 名前空間のプロセスは同じ PID を持つことができることを意味する。 +PID 名前空間を使うことで、コンテナー内のプロセス群を中断、再開したり、 コンテナー内のプロセスの PID +を保持したままコンテナーを新しいホストに移行したりするといった機能をコンテナーが提供することが可能になる。 + +新しい PID 名前空間の PID は、 独立したシステムであるかのように、 1 から始まる。 \fBfork\fP(2), \fBvfork\fP(2), +\fBclone\fP(2) を呼び出すと、 その名前空間内で一意な PID でプロセスが生成される。 + +.\" +.\" ============================================================ +.\" +PID 名前空間を使用するには、設定 \fBCONFIG_PID_NS\fP が有効になったカーネルが必要である。 +.SS "名前空間の init プロセス" +新しい名前空間で作成される最初のプロセス (すなわち、\fBCLONE_NEWPID\fP フラグで \fBclone\fP(2) を使って作成されたプロセスや、 +\fBCLONE_NEWPID\fP フラグで \fBunshare\fP(2) を呼び出した後のプロセスによって作成された最初のプロセス) は PID 1 +を持ち、 そのプロセスはその名前空間の "init" プロセスとなる (\fBinit\fP(1) 参照)。 名前空間内でみなしごになった +(親プロセスがいなくなった) 子プロセスは、 \fBinit\fP(1) ではなくこのプロセスが親プロセスになる (ただし、 同じ PID +名前空間内のその子プロセスの先祖が、 \fBprctl\fP(2) の \fBPR_SET_CHILD_SUBREAPER\fP コマンドを使って、 +自分自身をみなしごとなった子孫のプロセスの引き取り手になっている場合はこの限りではなく)。 + +PID 名前空間の "init" プロセスが終了すると、 カーネルはその名前空間の全プロセスを \fBSIGKILL\fP シグナルで終了する。 この動作は、 +PID 名前空間の正しい操作のためには "init" プロセスは不可欠であるという事実を反映したものである。 この場合、 その PID +名前空間へのそれ以降の \fBfork\fP(2) はエラー \fBENOMEM\fP で失敗する。 "init" プロセスが終了している PID +名前空間に新しいプロセスを作成することはできない。 このような状況は、 例えば、 名前空間にいたプロセスに対応する +\fI/proc/[pid]/ns/pid\fP ファイルに対してオープンしたファイルディスクリプタを使って、 "init" +プロセスが終了した後にその名前空間に \fBsetns\fP(2) を行った場合に起こり得る。 \fBunshare\fP(2) +を呼び出した後にも、この状況は起こり得る。 それ以降に \fBfork\fP(2) で作成された最初の子プロセスが終了すると、 それ以降の +\fBfork\fP(2) の呼び出しは \fBNOMEM\fP で失敗する。 + +PID 名前空間の他のメンバーは、 "init" プロセスがシグナルハンドラーを設定したシグナルだけを、 "init" プロセスに送信することができる。 +この制限は特権プロセスに対しても適用される。 この制限により、 PID 名前空間の他のメンバーがうっかり "init" +プロセスを殺してしまうのを防ぐことができる。 + +同様に、 先祖の名前空間のプロセスは、 "init" プロセスがそのシグナルに対するハンドラーを設定している場合にのみ、 \fBkill\fP(2) +で説明されている通常のアクセス許可のチェックを経た上で、 子供の PID 名前空間の "init" プロセスにシグナルを送信できる。 +(ハンドラー内では、 \fIsigaction\fP(2) に説明がある \fIsiginfo_t\fP の \fIsi_pid\fP フィールドは 0 になる。) +\fBSIGKILL\fP と \fBSIGSTOP\fP は例外として扱われ、 これらのシグナルが先祖の PID +名前空間から送信された場合には強制的に配送される。 これらのシグナルはどちらも "init" プロセルが捕捉することはできない。 +そのため、これらのシグナルに関連付けられた通常のアクション (それぞれ、プロセスの終了とプロセスの強制停止) が実行される。 + +.\" +.\" ============================================================ +.\" +Linux 3.4 以降では、 \fBreboot\fP(2) システムコールを呼び出すと、 シグナルがその名前空間の "init" プロセスに送信される。 +詳細は \fBreboot\fP(2) を参照。 +.SS "ネストされた PID 名前空間" +PID 名前空間は入れ子にすることができる。 最初の ("root") PID 名前空間以外の各 PID 名前空間は親を持つ。 PID 名前空間の親は +\fBclone\fP(2) や \fBunshare\fP(2) を使ってその名前空間を作成したプロセスの PID 名前空間である。 したがって、 PID +名前空間は木構造を構成し、 すべての名前空間は親を辿って行くと、最終的には root 名前空間に辿り着く。 + +プロセスは、所属する PID 名前空間の他のプロセスから見える。また、 root PID 名前空間に向かう直径の先祖の各 PID +名前空間のプロセスからも見える。 この場合、「見える」とは、 あるプロセスが、 他のプロセスがプロセス ID +を指定するシステムコールを使う際に操作の対象にできることを意味する。 逆に、子供 PID 名前空間のプロセスから親や先祖の名前空間のプロセスは見えない。 +あるプロセスは自分自身の PID 名前空間とその子孫の名前空間のプロセスだけが見える (例えば、\fBkill\fP(2) でシグナルを送信したり、 +\fBsetpriority\fP(2) で nice 値を設定したり、など)。 + +プロセスは、そのプロセスが見える PID 名前空間の階層の各層においてプロセス ID を一つ持ち、 直接の先祖の名前空間を辿ることで通って root +PID 名前空間に至ることができる。 プロセス ID に対して操作を行うシステムコールは、常に、呼び出し元プロセスの PID 名前空間で見えるプロセス +ID を使って操作を行う。 \fBgetpid\fP(2) の呼び出しでは、 常に、 プロセスが作成された名前空間に関連付けられた PID を返す。 + +.\" +.\" ============================================================ +.\" +PID 名前空間内のプロセスは名前空間の外部に親プロセスを持つことができる。 例えば、その名前空間の初期プロセス (すなわち PID 1 を持つ +\fBinit\fP(1) プロセス) の親プロセスは必然的に別の名前空間に属すことになる。 同様に、 あるプロセスが \fBsetns\fP(2) +を使って子プロセスを PID 名前空間に参加させた場合、 子プロセスは \fBsetns\fP(2) の呼び出し元とは異なる PID 名前空間に属す。 +子プロセスで \fBgetppid\fP(2) を呼び出すと 0 が返される。 +.SS "setns(2) と unshare(2) の動作" +PID 名前空間のファイルディスクリプタを指定して \fBsetns\fP(2) を呼び出したり、 \fBCLONE_NEWPID\fP フラグ付きで +\fBunshare\fP(2) を呼び出したりすると、 その結果作成された子プロセスは呼び出し元とは異なる PID 名前空間に置かれる。 +しかし、これらの呼び出しでは呼び出し元プロセスの PID 名前空間は変更されない。 なぜなら、PID 名前空間を変更してしまうと、 呼び出し元が認識する +(\fBgetpid\fP() が返す) 自分の PID が変わってしまい、 多くのアプリケーションやライブラリが正しく動作しなくなるからである。 + +別の言い方をすると、 あるプロセスがどの PID 名前空間に所属するかは、 そのプロセスが作成されたときに決定され、 それ以降は変更されることはない。 +いろいろあるが、プロセス間の親子関係には、PID 名前空間の親子関係がそのまま反映されるということだ。 +プロセスの親プロセスは、同じ名前空間にいるか、もしくは直接の親 PID 名前空間にいるかのいずれかである。 +.SS "CLONE_NEWPID の他の CLONE_* フラグとの互換性" +\fBCLONE_NEWPID\fP はいくつかの他の \fBCLONE_*\fP フラグと組み合わせることができない。 +.IP * 3 +\fBCLONE_THREAD\fP は、 プロセス内のスレッド間で互いにシグナルを送信できるようにするため、 同じ PID 名前空間に属している必要がある。 +同様に、 プロセス内の全スレッドが \fBproc\fP(5) ファイルシステムで見える必要がある。 +.IP * +\fBCLONE_SIGHAND\fP は、同じ PID 名前空間である必要がある。 さもなければ、 +シグナルが送信された際に、シグナルを送信したプロセスのプロセス ID を意味のある形でエンコードすることができない (\fBsigaction\fP(2) の +\fIsiginfo_t\fP 型の説明を参照)。 複数の PID 名前空間に属するプロセス間で一つのシグナルキューを共有すると、うまく動かなくなる。 +.IP * +\fBCLONE_VM\fP は、全スレッドが同じ PID 名前空間に属している必要がある。 なぜなら、 コアダンプの観点から見ると、 2 +つのプロセスが同じアドレス空間を共有していれば、 これらはスレッドであり、コアダンプが一緒に行われるからである。 コアダンプが書き込まれる際に、 +各スレッドの PID がコアダンプに書き込まれる。 もしプロセス ID のいくつかが親 PID 名前空間に属していたとすると、 プロセス ID +の書き込みは意味を持たなくなってしまう。 +.PP +まとめると、 \fBCLONE_THREAD\fP, \fBCLONE_SIGHAND\fP, \fBCLONE_VM\fP では技術的な要件として PID +名前空間が共有されている点がある。 (さらに \fBclone\fP(2) では \fBCLONE_THREAD\fP か \fBCLONE_SIGHAND\fP +が指定された際には \fBCLONE_VM\fP が指定されている必要がある点にも注意。) したがって、以下のような順序で呼び出しを行うと (エラー +\fBEINVAL\fP で) 失敗する。 + +.nf + unshare(CLONE_NEWPID); + clone(..., CLONE_VM, ...); /* Fails */ + + setns(fd, CLONE_NEWPID); + clone(..., CLONE_VM, ...); /* Fails */ + + clone(..., CLONE_VM, ...); + setns(fd, CLONE_NEWPID); /* Fails */ + + clone(..., CLONE_VM, ...); + unshare(CLONE_NEWPID); /* Fails */ +.fi +.\" +.\" ============================================================ +.\" +.SS "/proc と PID 名前空間" +\fI/proc\fP ファイルシステムは、\fI/proc\fP のマウントを行ったプロセスの PID 名前空間で見えるプロセスだけを表示する。 たとえ、 その +\fI/proc\fP ファイルシステムが他の名前空間のプロセスから参照されたとしても、そうである。 + +新しい PID 名前空間を作成した後、 子プロセスが、自身の root ディレクトリを変更し、新しい procfs インスタンスを \fI/proc\fP +にマウントするのは \fBps\fP(1) などのツールが正しく動作するためにも有用である。 \fBclone\fP(2) の \fIflags\fP 引き数に +\fBCLONE_NEWNS\fP も指定されて新しいマウント名前空間が同時に作成された場合は、 root ディレクトリを変更する必要はない。 新しい +procfs インスタンスを \fI/proc\fP にそのままマウントすることができる。 + +シェルから、コマンドで \fI/proc\fP のマウントを行うには次のようにする。 + + $ mount \-t proc proc /proc + +.\" +.\" ============================================================ +.\" +パス \fI/proc/self\fP に対して \fBreadlink\fP(2) を呼び出すと、 procfs のマウントを行ったプロセスの PID +名前空間におけるプロセス ID が得られる。 これは調査目的でプロセスが他の名前空間で自身の PID を知りたい場合などに役立つ。 +.SS その他 +プロセス ID が UNIX ドメインソケット経由で別の PID 名前空間のプロセスに渡される場合 (\fBunix\fP(7) の +\fBSCM_CREDENTIALS\fP の説明を参照)、 プロセス ID は受信プロセスの PID 名前空間での対応する PID 値に翻訳される。 +.SH 準拠 +名前空間は Linux 独自の機能である。 +.SH 例 +\fBuser_namespaces\fP(7) 参照。 +.SH 関連項目 +\fBclone\fP(2), \fBsetns\fP(2), \fBunshare\fP(2), \fBproc\fP(5), \fBcredentials\fP(7), +\fBcapabilities\fP(7), \fBuser_namespaces\fP(7), \fBswitch_root\fP(8) +.SH この文書について +この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.76 の一部 +である。プロジェクトの説明とバグ報告に関する情報は +http://www.kernel.org/doc/man\-pages/ に書かれている。 diff --git a/po4a/process/po/ja.po b/po4a/process/po/ja.po index 564ecf59..37ea0fe5 100644 --- a/po4a/process/po/ja.po +++ b/po4a/process/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2015-01-06 03:03+0900\n" -"PO-Revision-Date: 2015-01-06 14:37+0900\n" +"PO-Revision-Date: 2015-01-09 05:59+0900\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" @@ -7489,7 +7489,7 @@ msgid "" "Since version 2.13, the glibc B() and B() wrapper " "functions no longer invoke the corresponding system calls, but instead " "employ B(), for the reasons described in BUGS." -msgstr "" +msgstr "バージョン 2.13 以降では、 glibc の B() と B() のラッパー関数はもはや対応するシステムコールを呼び出さず、 代わりに「バグ」の節で説明されている理由から B() を利用している。" #. type: Plain text #: build/C/man2/getrlimit.2:579 @@ -7585,7 +7585,7 @@ msgstr "" #: build/C/man2/getrlimit.2:640 #, no-wrap msgid "Representation of \"large\" resource limit values on 32-bit platforms" -msgstr "" +msgstr "32 ビットプラットフォームにおける「大きな」リソース上限値の表現" #. https://bugzilla.kernel.org/show_bug.cgi?id=5042 #. http://sources.redhat.com/bugzilla/show_bug.cgi?id=12201 @@ -7602,7 +7602,7 @@ msgid "" "can grow: to be useful, this limit must be represented using a type that is " "as wide as the type used to represent file offsets\\(emthat is, as wide as a " "64-bit B (assuming a program compiled with I<_FILE_OFFSET_BITS=64>)." -msgstr "" +msgstr "glibc の B() と B() ラッパー関数は、32 ビットプラットフォームであっても 64 ビットの I データ型を使用する。 しかし、 B() と B() システムコールで使用される I データ型は (32 ビットの) I である。 さらに、 2.6.36 より前の Linux では、 カーネルは 32 ビットプラットフォームではリソース上限を I として表現している。 しかしながら、 32 ビットデータ型は十分な大きさではない。 ここで最も関係がある上限値は B である。 この上限はファイルサイズの最大値であり、実用性の面からは、 この上限をファイルオフセットを表現するのに使用されている型、 つまり 64 ビットの B (I<_FILE_OFFSET_BITS=64> でコンパイルしたプログラムの場合)、 と同じ幅を持つ型、を使って表現すべきである。" #. type: Plain text #: build/C/man2/getrlimit.2:681 @@ -7612,26 +7612,26 @@ msgid "" "long>, then the glibc B() wrapper function silently converted " "the limit value to B. In other words, the requested resource " "limit setting was silently ignored." -msgstr "" +msgstr "カーネルのこの制限に対する対策として、 プログラムがリソース上限を 32 ビットの I で表現できる値よりも大きな値に設定しようとした際には、 glibc の B() ラッパー関数はこの上限値を黙って B に変換していた。 言い換えると、指定されたリソース上限値は黙って無視されていた。" #. type: Plain text #: build/C/man2/getrlimit.2:683 msgid "This problem was addressed in Linux 2.6.36 with two principal changes:" -msgstr "" +msgstr "この問題は Linux 2.6.36 での以下の主な変更により解決された。" #. type: Plain text #: build/C/man2/getrlimit.2:686 msgid "" "the addition of a new kernel representation of resource limits that uses 64 " "bits, even on 32-bit platforms;" -msgstr "" +msgstr "32 ビットプラットフォームであっても 64 ビットを使用するリソース上限の新しいカーネルでの表現方法の追加。" #. type: Plain text #: build/C/man2/getrlimit.2:690 msgid "" "the addition of the B() system call, which employs 64-bit values " "for its resource limit arguments." -msgstr "" +msgstr "リソース上限の引き数として 64 ビット値を取る B() システムコールの追加。" #. https://www.sourceware.org/bugzilla/show_bug.cgi?id=12201 #. type: Plain text @@ -7642,6 +7642,8 @@ msgid "" "B() and B() as wrapper functions that call " "B()." msgstr "" +"バージョン 2.13 以降の glibc では、 B() と B() システムコールの制限に対する回避手段として、\n" +"B() と B() を B() を呼び出すラッパー関数として実装している。" #. type: Plain text #: build/C/man2/getrlimit.2:706 @@ -9788,7 +9790,7 @@ msgstr "pid_namespaces - Linux PID 名前空間の概要" #. type: Plain text #: build/C/man7/pid_namespaces.7:33 build/C/man7/user_namespaces.7:33 msgid "For an overview of namespaces, see B(7)." -msgstr "" +msgstr "名前空間の概要については B(7) を参照。" #. type: Plain text #: build/C/man7/pid_namespaces.7:40 @@ -9798,7 +9800,7 @@ msgid "" "containers to provide functionality such as suspending/resuming the set of " "processes in the container and migrating the container to a new host while " "the processes inside the container maintain the same PIDs." -msgstr "" +msgstr "PID 名前空間はプロセス ID 番号空間を分離する。 これは、異なる PID 名前空間のプロセスは同じ PID を持つことができることを意味する。 PID 名前空間を使うことで、コンテナー内のプロセス群を中断、再開したり、 コンテナー内のプロセスの PID を保持したままコンテナーを新しいホストに移行したりするといった機能をコンテナーが提供することが可能になる。" #. type: Plain text #: build/C/man7/pid_namespaces.7:48 @@ -9806,7 +9808,7 @@ msgid "" "PIDs in a new PID namespace start at 1, somewhat like a standalone system, " "and calls to B(2), B(2), or B(2) will produce processes " "with PIDs that are unique within the namespace." -msgstr "" +msgstr "新しい PID 名前空間の PID は、 独立したシステムであるかのように、 1 から始まる。 B(2), B(2), B(2) を呼び出すと、 その名前空間内で一意な PID でプロセスが生成される。" # #. ============================================================ @@ -9823,7 +9825,7 @@ msgstr "" #: build/C/man7/pid_namespaces.7:55 #, no-wrap msgid "The namespace init process" -msgstr "" +msgstr "名前空間の init プロセス" #. type: Plain text #: build/C/man7/pid_namespaces.7:75 @@ -9837,7 +9839,7 @@ msgid "" "ancestors of the child in the same PID namespace employed the B(2) " "B command to mark itself as the reaper of orphaned " "descendant processes)." -msgstr "" +msgstr "新しい名前空間で作成される最初のプロセス (すなわち、B フラグで B(2) を使って作成されたプロセスや、 B フラグで B(2) を呼び出した後のプロセスによって作成された最初のプロセス) は PID 1 を持ち、 そのプロセスはその名前空間の \"init\" プロセスとなる (B(1) 参照)。 名前空間内でみなしごになった (親プロセスがいなくなった) 子プロセスは、 B(1) ではなくこのプロセスが親プロセスになる (ただし、 同じ PID 名前空間内のその子プロセスの先祖が、 B(2) の B コマンドを使って、 自分自身をみなしごとなった子孫のプロセスの引き取り手になっている場合はこの限りではなく)。" #. type: Plain text #: build/C/man7/pid_namespaces.7:102 @@ -9855,7 +9857,7 @@ msgid "" "scenario can occur after a call to B(2): if the first child " "subsequently created by a B(2) terminates, then subsequent calls to " "B(2) will fail with B." -msgstr "" +msgstr "PID 名前空間の \"init\" プロセスが終了すると、 カーネルはその名前空間の全プロセスを B シグナルで終了する。 この動作は、 PID 名前空間の正しい操作のためには \"init\" プロセスは不可欠であるという事実を反映したものである。 この場合、 その PID 名前空間へのそれ以降の B(2) はエラー B で失敗する。 \"init\" プロセスが終了している PID 名前空間に新しいプロセスを作成することはできない。 このような状況は、 例えば、 名前空間にいたプロセスに対応する I ファイルに対してオープンしたファイルディスクリプタを使って、 \"init\" プロセスが終了した後にその名前空間に B(2) を行った場合に起こり得る。 B(2) を呼び出した後にも、この状況は起こり得る。 それ以降に B(2) で作成された最初の子プロセスが終了すると、 それ以降の B(2) の呼び出しは B で失敗する。" #. type: Plain text #: build/C/man7/pid_namespaces.7:108 @@ -9864,7 +9866,7 @@ msgid "" "can be sent to the \"init\" process by other members of the PID namespace. " "This restriction applies even to privileged processes, and prevents other " "members of the PID namespace from accidentally killing the \"init\" process." -msgstr "" +msgstr "PID 名前空間の他のメンバーは、 \"init\" プロセスがシグナルハンドラーを設定したシグナルだけを、 \"init\" プロセスに送信することができる。 この制限は特権プロセスに対しても適用される。 この制限により、 PID 名前空間の他のメンバーがうっかり \"init\" プロセスを殺してしまうのを防ぐことができる。" #. type: Plain text #: build/C/man7/pid_namespaces.7:128 @@ -9879,7 +9881,7 @@ msgid "" "these signals can be caught by the \"init\" process, and so will result in " "the usual actions associated with those signals (respectively, terminating " "and stopping the process)." -msgstr "" +msgstr "同様に、 先祖の名前空間のプロセスは、 \"init\" プロセスがそのシグナルに対するハンドラーを設定している場合にのみ、 B(2) で説明されている通常のアクセス許可のチェックを経た上で、 子供の PID 名前空間の \"init\" プロセスにシグナルを送信できる。 (ハンドラー内では、 I(2) に説明がある I の I フィールドは 0 になる。) B と B は例外として扱われ、 これらのシグナルが先祖の PID 名前空間から送信された場合には強制的に配送される。 これらのシグナルはどちらも \"init\" プロセルが捕捉することはできない。 そのため、これらのシグナルに関連付けられた通常のアクション (それぞれ、プロセスの終了とプロセスの強制停止) が実行される。" # #. ============================================================ @@ -9888,13 +9890,13 @@ msgstr "" msgid "" "Starting with Linux 3.4, the B(2) system call causes a signal to be " "sent to the namespace \"init\" process. See B(2) for more details." -msgstr "" +msgstr "Linux 3.4 以降では、 B(2) システムコールを呼び出すと、 シグナルがその名前空間の \"init\" プロセスに送信される。 詳細は B(2) を参照。" #. type: SS #: build/C/man7/pid_namespaces.7:138 #, no-wrap msgid "Nesting PID namespaces" -msgstr "" +msgstr "ネストされた PID 名前空間" #. type: Plain text #: build/C/man7/pid_namespaces.7:149 @@ -9904,7 +9906,7 @@ msgid "" "PID namespace of the process that created the namespace using B(2) " "or B(2). PID namespaces thus form a tree, with all namespaces " "ultimately tracing their ancestry to the root namespace." -msgstr "" +msgstr "PID 名前空間は入れ子にすることができる。 最初の (\"root\") PID 名前空間以外の各 PID 名前空間は親を持つ。 PID 名前空間の親は B(2) や B(2) を使ってその名前空間を作成したプロセスの PID 名前空間である。 したがって、 PID 名前空間は木構造を構成し、 すべての名前空間は親を辿って行くと、最終的には root 名前空間に辿り着く。" #. type: Plain text #: build/C/man7/pid_namespaces.7:164 @@ -9918,7 +9920,7 @@ msgid "" "succinctly: a process can see (e.g., send signals with B(2), set nice " "values with B(2), etc.) only processes contained in its own PID " "namespace and in descendants of that namespace." -msgstr "" +msgstr "プロセスは、所属する PID 名前空間の他のプロセスから見える。また、 root PID 名前空間に向かう直径の先祖の各 PID 名前空間のプロセスからも見える。 この場合、「見える」とは、 あるプロセスが、 他のプロセスがプロセス ID を指定するシステムコールを使う際に操作の対象にできることを意味する。 逆に、子供 PID 名前空間のプロセスから親や先祖の名前空間のプロセスは見えない。 あるプロセスは自分自身の PID 名前空間とその子孫の名前空間のプロセスだけが見える (例えば、B(2) でシグナルを送信したり、 B(2) で nice 値を設定したり、など)。" #. type: Plain text #: build/C/man7/pid_namespaces.7:176 @@ -9929,7 +9931,7 @@ msgid "" "process IDs always operate using the process ID that is visible in the PID " "namespace of the caller. A call to B(2) always returns the PID " "associated with the namespace in which the process was created." -msgstr "" +msgstr "プロセスは、そのプロセスが見える PID 名前空間の階層の各層においてプロセス ID を一つ持ち、 直接の先祖の名前空間を辿ることで通って root PID 名前空間に至ることができる。 プロセス ID に対して操作を行うシステムコールは、常に、呼び出し元プロセスの PID 名前空間で見えるプロセス ID を使って操作を行う。 B(2) の呼び出しでは、 常に、 プロセスが作成された名前空間に関連付けられた PID を返す。" # #. ============================================================ @@ -9943,13 +9945,13 @@ msgid "" "B(2) to cause its children to join a PID namespace are in a " "different PID namespace from the caller of B(2). Calls to " "B(2) for such processes return 0." -msgstr "" +msgstr "PID 名前空間内のプロセスは名前空間の外部に親プロセスを持つことができる。 例えば、その名前空間の初期プロセス (すなわち PID 1 を持つ B(1) プロセス) の親プロセスは必然的に別の名前空間に属すことになる。 同様に、 あるプロセスが B(2) を使って子プロセスを PID 名前空間に参加させた場合、 子プロセスは B(2) の呼び出し元とは異なる PID 名前空間に属す。 子プロセスで B(2) を呼び出すと 0 が返される。" #. type: SS #: build/C/man7/pid_namespaces.7:194 #, no-wrap msgid "setns(2) and unshare(2) semantics" -msgstr "" +msgstr "setns(2) と unshare(2) の動作" #. type: Plain text #: build/C/man7/pid_namespaces.7:210 @@ -9961,7 +9963,7 @@ msgid "" "calling process, because doing so would change the caller's idea of its own " "PID (as reported by B()), which would break many applications and " "libraries." -msgstr "" +msgstr "PID 名前空間のファイルディスクリプタを指定して B(2) を呼び出したり、 B フラグ付きで B(2) を呼び出したりすると、 その結果作成された子プロセスは呼び出し元とは異なる PID 名前空間に置かれる。 しかし、これらの呼び出しでは呼び出し元プロセスの PID 名前空間は変更されない。 なぜなら、PID 名前空間を変更してしまうと、 呼び出し元が認識する (B() が返す) 自分の PID が変わってしまい、 多くのアプリケーションやライブラリが正しく動作しなくなるからである。" #. type: Plain text #: build/C/man7/pid_namespaces.7:218 @@ -9972,18 +9974,18 @@ msgid "" "processes mirrors the parental relationship between PID namespaces: the " "parent of a process is either in the same namespace or resides in the " "immediate parent PID namespace." -msgstr "" +msgstr "別の言い方をすると、 あるプロセスがどの PID 名前空間に所属するかは、 そのプロセスが作成されたときに決定され、 それ以降は変更されることはない。 いろいろあるが、プロセス間の親子関係には、PID 名前空間の親子関係がそのまま反映されるということだ。 プロセスの親プロセスは、同じ名前空間にいるか、もしくは直接の親 PID 名前空間にいるかのいずれかである。" #. type: SS #: build/C/man7/pid_namespaces.7:218 #, no-wrap msgid "Compatibility of CLONE_NEWPID with other CLONE_* flags" -msgstr "" +msgstr "CLONE_NEWPID の他の CLONE_* フラグとの互換性" #. type: Plain text #: build/C/man7/pid_namespaces.7:223 msgid "B can't be combined with some other B flags:" -msgstr "" +msgstr "B はいくつかの他の B フラグと組み合わせることができない。" #. type: Plain text #: build/C/man7/pid_namespaces.7:231 @@ -9992,7 +9994,7 @@ msgid "" "the threads in a process can send signals to each other. Similarly, it must " "be possible to see all of the threads of a processes in the B(5) " "filesystem." -msgstr "" +msgstr "B は、 プロセス内のスレッド間で互いにシグナルを送信できるようにするため、 同じ PID 名前空間に属している必要がある。 同様に、 プロセス内の全スレッドが B(5) ファイルシステムで見える必要がある。" #. type: Plain text #: build/C/man7/pid_namespaces.7:242 @@ -10002,7 +10004,7 @@ msgid "" "when a signal is sent (see the description of the I type in " "B(2)). A signal queue shared by processes in multiple PID " "namespaces will defeat that." -msgstr "" +msgstr "B は、同じ PID 名前空間である必要がある。 さもなければ、 シグナルが送信された際に、シグナルを送信したプロセスのプロセス ID を意味のある形でエンコードすることができない (B(2) の I 型の説明を参照)。 複数の PID 名前空間に属するプロセス間で一つのシグナルキューを共有すると、うまく動かなくなる。" #. type: Plain text #: build/C/man7/pid_namespaces.7:252 @@ -10013,7 +10015,7 @@ msgid "" "When a core dump is written, the PID of each thread is written into the core " "dump. Writing the process IDs could not meaningfully succeed if some of the " "process IDs were in a parent PID namespace." -msgstr "" +msgstr "B は、全スレッドが同じ PID 名前空間に属している必要がある。 なぜなら、 コアダンプの観点から見ると、 2 つのプロセスが同じアドレス空間を共有していれば、 これらはスレッドであり、コアダンプが一緒に行われるからである。 コアダンプが書き込まれる際に、 各スレッドの PID がコアダンプに書き込まれる。 もしプロセス ID のいくつかが親 PID 名前空間に属していたとすると、 プロセス ID の書き込みは意味を持たなくなってしまう。" #. type: Plain text #: build/C/man7/pid_namespaces.7:270 @@ -10023,7 +10025,7 @@ msgid "" "furthermore that in B(2) requires B to be specified if " "B or B is specified.) Thus, call sequences " "such as the following will fail (with the error B):" -msgstr "" +msgstr "まとめると、 B, B, B では技術的な要件として PID 名前空間が共有されている点がある。 (さらに B(2) では B か B が指定された際には B が指定されている必要がある点にも注意。) したがって、以下のような順序で呼び出しを行うと (エラー B で) 失敗する。" #. type: Plain text #: build/C/man7/pid_namespaces.7:274 @@ -10079,7 +10081,7 @@ msgid "" "A I filesystem shows (in the I directories) only processes " "visible in the PID namespace of the process that performed the mount, even " "if the I filesystem is viewed from processes in other namespaces." -msgstr "" +msgstr "I ファイルシステムは、I のマウントを行ったプロセスの PID 名前空間で見えるプロセスだけを表示する。 たとえ、 その I ファイルシステムが他の名前空間のプロセスから参照されたとしても、そうである。" #. type: Plain text #: build/C/man7/pid_namespaces.7:315 @@ -10090,12 +10092,12 @@ msgid "" "simultaneously created by including B in the I argument " "of B(2) or B(2), then it isn't necessary to change the root " "directory: a new procfs instance can be mounted directly over I." -msgstr "" +msgstr "新しい PID 名前空間を作成した後、 子プロセスが、自身の root ディレクトリを変更し、新しい procfs インスタンスを I にマウントするのは B(1) などのツールが正しく動作するためにも有用である。 B(2) の I 引き数に B も指定されて新しいマウント名前空間が同時に作成された場合は、 root ディレクトリを変更する必要はない。 新しい procfs インスタンスを I にそのままマウントすることができる。" #. type: Plain text #: build/C/man7/pid_namespaces.7:319 msgid "From a shell, the command to mount I is:" -msgstr "" +msgstr "シェルから、コマンドで I のマウントを行うには次のようにする。" #. type: Plain text #: build/C/man7/pid_namespaces.7:321 @@ -10113,13 +10115,13 @@ msgid "" "of the process that mounted the procfs). This can be useful for " "introspection purposes, when a process wants to discover its PID in other " "namespaces." -msgstr "" +msgstr "パス I に対して B(2) を呼び出すと、 procfs のマウントを行ったプロセスの PID 名前空間におけるプロセス ID が得られる。 これは調査目的でプロセスが他の名前空間で自身の PID を知りたい場合などに役立つ。" #. type: SS #: build/C/man7/pid_namespaces.7:333 build/C/man7/user_namespaces.7:635 #, no-wrap msgid "Miscellaneous" -msgstr "" +msgstr "その他" #. type: Plain text #: build/C/man7/pid_namespaces.7:341 @@ -10128,7 +10130,7 @@ msgid "" "different PID namespace (see the description of B in " "B(7)), it is translated into the corresponding PID value in the " "receiving process's PID namespace." -msgstr "" +msgstr "プロセス ID が UNIX ドメインソケット経由で別の PID 名前空間のプロセスに渡される場合 (B(7) の B の説明を参照)、 プロセス ID は受信プロセスの PID 名前空間での対応する PID 値に翻訳される。" #. type: Plain text #: build/C/man7/pid_namespaces.7:355 @@ -13250,12 +13252,12 @@ msgid "" "The comments and I function inside the program provide a full " "explanation of the program. The following shell session demonstrates its " "use." -msgstr "" +msgstr "以下のプログラムは、ユーザー名前空間で実験を行えるように設計されている。 他の種類の名前空間も扱える。 このプログラムはコマンドライン引き数で指定された名前空間を作成し、作成した名前空間内でコマンドを実行する。 コメントとプログラム内の I 関数に、プログラムの詳しい説明が書かれている。 以下のシェルセッションに実行例を示す。" #. type: Plain text #: build/C/man7/user_namespaces.7:688 msgid "First, we look at the run-time environment:" -msgstr "" +msgstr "まず最初に、実行環境を確認しておく。" #. type: Plain text #: build/C/man7/user_namespaces.7:697 @@ -13268,9 +13270,9 @@ msgid "" "$ B\n" "1000\n" msgstr "" -"$ B # Need Linux 3.8 or later\n" +"$ B # Linux 3.8 以降が必要\n" "Linux 3.8.0\n" -"$ B # Running as unprivileged user\n" +"$ B # 非特権ユーザーで実行する\n" "1000\n" "$ B\n" "1000\n" @@ -13281,7 +13283,7 @@ msgid "" "Now start a new shell in new user (I<-U>), mount (I<-m>), and PID (I<-p>) " "namespaces, with user ID (I<-M>) and group ID (I<-G>) 1000 mapped to 0 " "inside the user namespace:" -msgstr "" +msgstr "新しいユーザー名前空間 (I<-U>), マウント名前空間 (I<-m>), PID 名前空間 (I<-p>) で新しいシェルを開始する。ユーザー ID (I<-M>) 1000 とグループ ID (I<-G>) 1000 をユーザー名前空間内で 0 にマッピングしている。" #. type: Plain text #: build/C/man7/user_namespaces.7:715 @@ -13294,7 +13296,7 @@ msgstr "$ B<./userns_child_exec -p -m -U -M '0 1000 1' -G '0 1000 1' bash>\n" msgid "" "The shell has PID 1, because it is the first process in the new PID " "namespace:" -msgstr "" +msgstr "シェルは PID 1 を持つ。このシェルは新しい PID 名前空間の最初のプロセスだからである。" #. type: Plain text #: build/C/man7/user_namespaces.7:725 @@ -13311,7 +13313,7 @@ msgstr "" msgid "" "Inside the user namespace, the shell has user and group ID 0, and a full set " "of permitted and effective capabilities:" -msgstr "" +msgstr "ユーザー名前空間内では、シェルのユーザー ID とグループ ID ともに 0 で、すべての許可ケーパビリティと実効ケーパビリティが有効になっている。" #. type: Plain text #: build/C/man7/user_namespaces.7:740 @@ -13339,7 +13341,7 @@ msgid "" "Mounting a new I filesystem and listing all of the processes visible " "in the new PID namespace shows that the shell can't see any processes " "outside the PID namespace:" -msgstr "" +msgstr "I ファイルシステムをマウントし、新しい PID 名前空間で見えるプロセス一覧を表示すると、 シェルからは PID 名前空間外のプロセスが見えないことが分かる。" #. type: Plain text #: build/C/man7/user_namespaces.7:756 @@ -13395,6 +13397,21 @@ msgid "" "#include Elimits.hE\n" "#include Eerrno.hE\n" msgstr "" +" 新しい名前空間でシェルコマンドを実行する子プロセスを作成する。\n" +" ユーザー名前空間を作成する際に UID と GID のマッピングを\n" +" 指定することができる。\n" +"*/\n" +"#define _GNU_SOURCE\n" +"#include Esched.hE\n" +"#include Eunistd.hE\n" +"#include Estdlib.hE\n" +"#include Esys/wait.hE\n" +"#include Esignal.hE\n" +"#include Efcntl.hE\n" +"#include Estdio.hE\n" +"#include Estring.hE\n" +"#include Elimits.hE\n" +"#include Eerrno.hE\n" #. type: Plain text #: build/C/man7/user_namespaces.7:783 @@ -13403,8 +13420,8 @@ msgid "" "/* A simple error-handling function: print an error message based\n" " on the value in \\(aqerrno\\(aq and terminate the calling process */\n" msgstr "" -"/* A simple error-handling function: print an error message based\n" -" on the value in \\(aqerrno\\(aq and terminate the calling process */\n" +"/* 簡単なエラー処理関数: \\\\(aqerrno\\\\(aq の値に基づいて\n" +" エラーメッセージを出力し、呼び出し元プロセスを終了する。 */\n" #. type: Plain text #: build/C/man7/user_namespaces.7:786 @@ -13426,8 +13443,8 @@ msgid "" "};\n" msgstr "" "struct child_args {\n" -" char **argv; /* Command to be executed by child, with args */\n" -" int pipe_fd[2]; /* Pipe used to synchronize parent and child */\n" +" char **argv; /* 子プロセスが実行するコマンドと引き数 */\n" +" int pipe_fd[2]; /* 親プロセスと子プロセスを同期するためのパイプ */\n" "};\n" #. type: Plain text @@ -13656,7 +13673,7 @@ msgstr "" #: build/C/man7/user_namespaces.7:892 #, no-wrap msgid " /* Execute a shell command */\n" -msgstr "" +msgstr " /* シェルコマンドを実行する */\n" #. type: Plain text #: build/C/man7/user_namespaces.7:897 @@ -13682,7 +13699,7 @@ msgstr "#define STACK_SIZE (1024 * 1024)\n" #: build/C/man7/user_namespaces.7:901 #, no-wrap msgid "static char child_stack[STACK_SIZE]; /* Space for child\\(aqs stack */\n" -msgstr "" +msgstr "static char child_stack[STACK_SIZE]; /* 子プロセスのスタック空間 */\n" #. type: Plain text #: build/C/man7/user_namespaces.7:912 @@ -13772,7 +13789,7 @@ msgstr "" #: build/C/man7/user_namespaces.7:942 #, no-wrap msgid " /* -M or -G without -U is nonsensical */\n" -msgstr "" +msgstr " /* -U なしの -M や -G の指定は意味がない */\n" #. type: Plain text #: build/C/man7/user_namespaces.7:947 @@ -13823,7 +13840,7 @@ msgstr "" #: build/C/man7/user_namespaces.7:964 #, no-wrap msgid " /* Create the child in new namespace(s) */\n" -msgstr "" +msgstr " /* 新しい名前空間で子プロセスを作成する */\n" #. type: Plain text #: build/C/man7/user_namespaces.7:969 @@ -13843,7 +13860,7 @@ msgstr "" #: build/C/man7/user_namespaces.7:971 #, no-wrap msgid " /* Parent falls through to here */\n" -msgstr "" +msgstr " /* 親プロセスはここを実行する */\n" #. type: Plain text #: build/C/man7/user_namespaces.7:975 @@ -13861,7 +13878,7 @@ msgstr "" #: build/C/man7/user_namespaces.7:977 #, no-wrap msgid " /* Update the UID and GID maps in the child */\n" -msgstr "" +msgstr " /* 子プロセスの UID と GID のマッピングを更新する */\n" #. type: Plain text #: build/C/man7/user_namespaces.7:996 @@ -13912,6 +13929,8 @@ msgid "" " /* Close the write end of the pipe, to signal to the child that we\n" " have updated the UID and GID maps */\n" msgstr "" +" /* パイプの書き込み端をクローズし、子プロセスに UID と GID の\n" +" マッピングが更新されたことを知らせる */\n" #. type: Plain text #: build/C/man7/user_namespaces.7:1001 @@ -13926,7 +13945,7 @@ msgid "" " if (waitpid(child_pid, NULL, 0) == -1) /* Wait for child */\n" " errExit(\"waitpid\");\n" msgstr "" -" if (waitpid(child_pid, NULL, 0) == -1) /* Wait for child */\n" +" if (waitpid(child_pid, NULL, 0) == -1) /* 子プロセスを待つ */\n" " errExit(\"waitpid\");\n" #. type: Plain text diff --git a/stats/process b/stats/process index d5675f91..f8db4475 100644 --- a/stats/process +++ b/stats/process @@ -1,5 +1,3 @@ # pagename,#complete,#remaining,#all cpuset.7,102,212,314 -getrlimit.2,115,8,123 -pid_namespaces.7,25,29,54 -user_namespaces.7,77,91,168 +user_namespaces.7,93,75,168 diff --git a/untrans.html b/untrans.html index 6dbf39af..224641f7 100644 --- a/untrans.html +++ b/untrans.html @@ -70,9 +70,7 @@ fanotify_mark.251/10049.00 process cpuset.7212/31432.48 -getrlimit.28/12393.50 -pid_namespaces.729/5446.30 -user_namespaces.791/16845.83 +user_namespaces.775/16855.36 sched sched_setattr.241/9154.95 sched_setscheduler.26/5889.66 @@ -111,6 +109,6 @@ zdump.81/2295.45 unistd fcntl.246/24180.91 -Total 81 pages +Total 79 pages