1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
|
.\" cpuset.4 man page
.\"
.\" Copyright (c) 2006 Silicon Graphics, Inc.
.\"
.\" Author: Paul Jackson (http://oss.sgi.com/projects/cpusets)
.\"
.\" This is free documentation; you can redistribute it and/or
.\" modify it under the terms of the GNU General Public License
.\" version 2 as published by the Free Software Foundation.
.\"
.\" The GNU General Public License's references to "object code"
.\" and "executables" are to be interpreted as the output of any
.\" document formatting or typesetting system, including
.\" intermediate and printed output.
.\"
.\" This manual is distributed in the hope that it will be useful,
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
.\" GNU General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public
.\" License along with this manual; if not, write to the Free
.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
.\" USA.
.\"
.TH CPUSET 4 2006-05-25 "Linux 2.6" "Linux Programmer's Manual"
.SH NAME
cpuset \- confine tasks to processor and memory node subsets
.SH DESCRIPTION
The cpuset file system is a pseudo-filesystem interface
to the kernel cpuset mechanism for controlling the processor
and memory placement of tasks. It is commonly mounted at
.IR /dev/cpuset .
.PP
A cpuset defines a list of CPUs and memory nodes.
Cpusets are represented as directories in a hierarchical virtual file system,
where the top directory in the hierarchy
.RI ( /dev/cpuset )
represents the entire system (all online CPUs and memory nodes)
and any cpuset that is the child (descendant) of
another parent cpuset contains a subset of that parents
CPUs and memory nodes.
The directories and files representing cpusets have normal
file system permissions.
.PP
Every task in the system belongs to exactly one cpuset.
A task is confined to only run on the CPUs in
the cpuset it belongs to, and to allocate memory only
on the memory nodes in that cpuset. When a task forks,
the child task is placed in the same cpuset as its parent.
With sufficient privilege, a task may be moved from one
cpuset to another and the allowed CPUs and memory nodes
of an existing cpuset may be changed.
.PP
When the system begins booting, only the top cpuset is
defined and all tasks are in that cpuset. During
the boot process or later during normal system operation,
other cpusets may be created, as
sub-directories of the top cpuset under the control of the
system administrator and tasks may be placed in these other
cpusets.
.PP
Cpusets are integrated with the
.BR sched_setaffinity (2)
scheduling affinity mechanism and the
.BR mbind (2)
and
.BR set_mempolicy (2)
memory placement mechanisms in the kernel.
Neither of these mechanisms let a task make use
of a CPU or memory node that is not allowed by cpusets.
If changes to a tasks cpuset placement conflict with these
other mechanisms, then cpuset placement is enforced
even if it means overriding these other mechanisms.
.PP
Typically, a cpuset is used to manage
the CPU and memory node confinement for the
entire set of tasks in a job, and these
other mechanisms are used to manage the placement of
individual tasks or memory regions within a job.
.SH FILES
Each directory below
.I /dev/cpuset
represents a cpuset and contains several files
describing the state of that cpuset.
.PP
New cpusets are created using the \fBmkdir\fR system call or shell
command. The properties of a cpuset, such as its flags, allowed
CPUs and memory nodes, and attached tasks, are queried and modified
by reading or writing to the appropriate file in that cpusets directory,
as listed below.
.PP
The files in each cpuset directory are automatically created when
the cpuset is created, as a result of the \fBmkdir\fR invocation.
It is not allowed to add or remove files from a cpuset directory.
.PP
The files in each cpuset directory are
small text files that may be read and
written using traditional shell utilities such
as
.BR cat (1),
and
.BR echo (1),
or using
ordinary file access routines from programmatic
languages, such as
.BR open (2),
.BR read (2),
.BR write (2)
and
.BR close (2)
from the 'C' library.
These files represent internal kernel state and do not
have any persistent image on disk. Each of these per-cpuset
files is listed and described below.
.\" ====================== tasks ======================
.TP
\fBtasks\fR
.br
List of the process IDs (PIDs) of the tasks in that cpuset.
The list is formatted as a series of
.SM ASCII
decimal numbers, each followed by a newline.
A task may be added to a cpuset (removing
it from the cpuset previously containing it) by writing its
PID to that cpusets
.B tasks
file (with or without a trailing newline.)
Beware that only one PID may be written to the \fBtasks\fR
file at a time. If a string is written that contains more
than one PID, only the first one will be considered.
.\" =================== notify_on_release ===================
.TP
\fBnotify_on_release\fR
.br
Flag (0 or 1). If set (1),
that cpuset will receive special handling
whenever its last using task and last
child cpuset goes away. See the
\fBNotify On Release\fR section, below.
.\" ====================== cpus ======================
.TP
\fBcpus\fR
.br
List of CPUs on which tasks in that cpuset are
allowed to execute.
See \fBList Format\fR below for a description of the
format of \fBcpus\fR.
The CPUs allowed to a cpuset may be changed by
writing a new list to its
.B cpus
file. Note however, such a change does not take
affect until the PIDs of the tasks in the cpuset
are rewritten to the cpusets
.B tasks
file. See the
.B WARNINGS
section,
below.
.\" ==================== cpu_exclusive ====================
.TP
\fBcpu_exclusive\fR
.br
Flag (0 or 1). If set (1), the
cpuset has exclusive use of
its CPUs (no sibling or cousin cpuset may overlap CPUs).
By default this is off (0). Newly created cpusets
also initially default this to off (0).
.\" ====================== mems ======================
.TP
\fBmems\fR
.br
List of memory nodes on which tasks in that cpuset are
allowed to allocate memory.
See \fBList Format\fR below for a description of the
format of \fBmems\fR.
.\" ==================== mem_exclusive ====================
.TP
\fBmem_exclusive\fR
.br
Flag (0 or 1). If set (1), the
cpuset has exclusive use of
its memory nodes (no sibling or cousin may overlap).
By default this is off (0). Newly created cpusets
also initially default this to off (0).
.\" ==================== memory_migrate ====================
.TP
\fBmemory_migrate\fR
.br
Flag (0 or 1). If set (1), then memory migration is enabled.
See the \fBMemory Migration\fR section, below.
.\" ==================== memory_pressure ====================
.TP
\fBmemory_pressure\fR
.br
A measure of how much memory pressure the tasks in this
cpuset are causing. See the \fBMemory Pressure\fR section, below.
Unless \fBmemory_pressure_enabled\fR is enabled, always has
value zero (0). This file is read-only.
See the
.B WARNINGS
section,
below.
.\" ================= memory_pressure_enabled =================
.TP
\fBmemory_pressure_enabled\fR
.br
Flag (0 or 1). This file is only present in the root cpuset,
normally \fI/dev/cpuset\fR. If set (1), the \fBmemory_pressure\fR calculations
are enabled for all cpusets in the system. See the
\fBMemory Pressure\fR section, below.
.\" ================== memory_spread_page ==================
.TP
\fBmemory_spread_page\fR
.br
Flag (0 or 1). If set (1), the kernel page cache
(file system buffers) are uniformly spread across the
cpuset.
See the \fBMemory Spread\fR section, below.
.\" ================== memory_spread_slab ==================
.TP
\fBmemory_spread_slab\fR
.br
Flag (0 or 1). If set (1), the kernel slab caches
for file I/O (directory and inode structures) are
uniformly spread across the cpuset.
See the \fBMemory Spread\fR section, below.
.\" ================== proc cpuset ==================
.PP
In addition to the above special files in each directory
below
.IR /dev/cpuset ,
each task under
.I /proc
has an added file named
.BR cpuset ,
displaying
the cpuset name, as the path relative to the root of the cpuset file
system.
.\" ================== proc status ==================
.PP
Also the
.I /proc/<pid>/status
file for each task has two added lines,
displaying the tasks cpus_allowed (on which CPUs it may be scheduled)
and mems_allowed (on which memory nodes it may obtain memory),
in the \fBMask Format\fR (see below) as shown in the following example:
.IP
.RS 15
.ft B
.nf
Cpus_allowed: ffffffff,ffffffff,ffffffff,ffffffff
Mems_allowed: ffffffff,ffffffff
.fi
.ft R
.RE
.\" ================== EXTENDED CAPABILITIES ==================
.SH EXTENDED CAPABILITIES
In addition to controlling which \fBcpus\fR and \fBmems\fR
a task is allowed to use, cpusets provide the following
extended capabilities.
.\" ================== EXCLUSIVE ==================
.SS Exclusive Cpusets
If a cpuset is marked \fBcpu_exclusive\fR or \fBmem_exclusive\fR, no other
cpuset, other than a direct ancestor or descendant, may share any of
the same CPUs or memory nodes.
.PP
A cpuset that is \fBcpu_exclusive\fR has a scheduler (sched) domain
associated with it. The sched domain consists of all CPUs in the
current cpuset that are not part of any exclusive child cpusets.
This ensures that the scheduler load balancing code only balances
against the CPUs that are in the sched domain as defined above and
not all of the CPUs in the system. This removes any overhead due to
load balancing code trying to pull tasks outside of the \fBcpu_exclusive\fR
cpuset only to be prevented by the tasks' cpus_allowed mask.
.PP
A cpuset that is \fBmem_exclusive\fR restricts kernel allocations for
page, buffer and other data commonly shared by the kernel across
multiple users. All cpusets, whether \fBmem_exclusive\fR or not, restrict
allocations of memory for user space. This enables configuring a
system so that several independent jobs can share common kernel data,
such as file system pages, while isolating each jobs user allocation in
its own cpuset. To do this, construct a large \fBmem_exclusive\fR cpuset to
hold all the jobs, and construct child, non-\fBmem_exclusive\fR cpusets for
each individual job. Only a small amount of typical kernel memory,
such as requests from interrupt handlers, is allowed to be taken
outside even a \fBmem_exclusive\fR cpuset.
.\" ================== Notify On Release ==================
.SS Notify On Release
If the \fBnotify_on_release\fR flag is enabled (1) in a cpuset, then whenever
the last task in the cpuset leaves (exits or attaches to some other
cpuset) and the last child cpuset of that cpuset is removed,
the kernel will run the command \fI/sbin/cpuset_release_agent\fR, supplying the
pathname (relative to the mount point of the cpuset file system) of the
abandoned cpuset. This enables automatic removal of abandoned cpusets.
.PP
The default value of \fBnotify_on_release\fR in the root cpuset at system
boot is disabled (0). The default value of other cpusets at creation
is the current value of their parents \fBnotify_on_release\fR setting.
.PP
The command
.I /sbin/cpuset_release_agent
is invoked, with the name
.RI ( /dev/cpuset
relative path)
of that cpuset in
.IR argv[1] .
This supports automatic
cleanup of abandoned cpusets.
.PP
The usual contents of the command
.I /sbin/cpuset_release_agent
is simply the shell script:
.PP
.RS 15
.ft B
.nf
#!/bin/sh
rmdir /dev/cpuset/$1
.fi
.ft R
.RE
.PP
By default,
.BR notify_on_release
is off (0). Newly created cpusets inherit
their
.BR notify_on_release
setting from their parent cpuset.
.PP
As with other flag values below, this flag can
be changed by writing an
.SM ASCII
number 0 or 1 (with optional trailing newline)
into the file, to clear or set the flag,
respectively.
.\" ================== Memory Pressure ==================
.SS Memory Pressure
The memory_pressure of a cpuset provides a simple per-cpuset metric
of the rate that the tasks in a cpuset are attempting to free up in
use memory on the nodes of the cpuset to satisfy additional memory
requests.
.PP
This enables batch managers monitoring jobs running in dedicated
cpusets to efficiently detect what level of memory pressure that job
is causing.
.PP
This is useful both on tightly managed systems running a wide mix of
submitted jobs, which may choose to terminate or re-prioritize jobs that
are trying to use more memory than allowed on the nodes assigned them,
and with tightly coupled, long running, massively parallel scientific
computing jobs that will dramatically fail to meet required performance
goals if they start to use more memory than allowed to them.
.PP
This mechanism provides a very economical way for the batch manager
to monitor a cpuset for signs of memory pressure. It's up to the
batch manager or other user code to decide what to do about it and
take action.
.PP
Unless memory pressure calculation is enabled by setting the
special file
.IR /dev/cpuset/memory_pressure_enabled ,
it is not computed for any cpuset, and always reads a value of zero.
See the \fBWARNINGS\fR section, below.
.PP
Why a per-cpuset, running average:
.RS .3i
Because this meter is per-cpuset rather than per-task or mm,
the system load imposed by a batch scheduler monitoring this
metric is sharply reduced on large systems, because a scan of
the tasklist can be avoided on each set of queries.
Because this meter is a running average rather than an accumulating
counter, a batch scheduler can detect memory pressure with a
single read, instead of having to read and accumulate results
for a period of time.
Because this meter is per-cpuset rather than per-task or mm,
the batch scheduler can obtain the key information, memory
pressure in a cpuset, with a single read, rather than having to
query and accumulate results over all the (dynamically changing)
set of tasks in the cpuset.
.RE
.PP
A per-cpuset simple digital filter is kept within the kernel, and
updated by any task attached to that cpuset, if it enters the
synchronous (direct) page reclaim code.
.PP
A per-cpuset file provides an integer number representing the recent
(half-life of 10 seconds) rate of direct page reclaims caused by
the tasks in the cpuset, in units of reclaims attempted per second,
times 1000.
.\" ================== Memory Spread ==================
.SS Memory Spread
There are two Boolean flag files per cpuset that control where the
kernel allocates pages for the file system buffers and related in
kernel data structures. They are called \fBmemory_spread_page\fR and
\fBmemory_spread_slab\fR.
.PP
If the per-cpuset Boolean flag file \fBmemory_spread_page\fR is set, then
the kernel will spread the file system buffers (page cache) evenly
over all the nodes that the faulting task is allowed to use, instead
of preferring to put those pages on the node where the task is running.
.PP
If the per-cpuset Boolean flag file \fBmemory_spread_slab\fR is set,
then the kernel will spread some file system related slab caches,
such as for inodes and directory entries evenly over all the nodes
that the faulting task is allowed to use, instead of preferring to
put those pages on the node where the task is running.
.PP
The setting of these flags does not affect anonymous data segment or
stack segment pages of a task.
.PP
By default, both kinds of memory spreading are off and the kernel
prefers to allocate memory pages on the node local to where the
requesting task is running. If that node is not allowed by the
tasks NUMA mempolicy or cpuset configuration or if there are
insufficient free memory pages on that node, then the kernel looks
for the nearest node that is allowed and does have sufficient
free memory.
.PP
When new cpusets are created, they inherit the memory spread settings
of their parent.
.PP
Setting memory spreading causes allocations for the affected page
or slab caches to ignore the tasks NUMA mempolicy and be spread
instead. Tasks using mbind() or set_mempolicy() calls to set NUMA
mempolicies will not notice any change in these calls as a result of
their containing tasks memory spread settings. If memory spreading
is turned off, the currently specified NUMA mempolicy once again
applies to memory page allocations.
.PP
Both \fBmemory_spread_page\fR and \fBmemory_spread_slab\fR are Boolean flag
files. By default they contain "0", meaning that the feature is off
for that cpuset. If a "1" is written to that file, that turns
the named feature on.
.PP
This memory placement policy is also known (in other contexts) as
round-robin or interleave.
.PP
This policy can provide substantial improvements for jobs that need
to place thread local data on the corresponding node, but that need
to access large file system data sets that need to be spread across
the several nodes in the jobs cpuset in order to fit. Without this
policy, especially for jobs that might have one thread reading in the
data set, the memory allocation across the nodes in the jobs cpuset
can become very uneven.
.\" ================== Memory Migration ==================
.SS Memory Migration
Normally, under the default setting (disabled) of
\fBmemory_migrate\fR, once a page is allocated (given a physical page
of main memory) then that page stays on whatever node it
was allocated, so long as it remains allocated, even if the
cpusets memory placement policy \fBmems\fR subsequently changes.
.PP
When memory migration is enabled in a cpuset, if the \fBmems\fR
setting of the cpuset is changed, then any memory page in use by any
task in the cpuset that is on a memory node no longer allowed will
be migrated to a memory node that is allowed.
.PP
Also if a task is moved into a cpuset with \fBmemory_migrate\fR
enabled, any memory pages it uses that were on memory nodes allowed
in its previous cpuset, but which are not allowed in its new cpuset,
will be migrated to a memory node allowed in the new cpuset.
.PP
The relative placement of a migrated page within
the cpuset is preserved during these migration operations if possible.
For example, if the page was on the second valid node of the prior cpuset,
then the page will be placed on the second valid node of the new cpuset,
if possible.
.SH FORMATS
The following formats are used to represent sets of
CPUs and memory nodes.
.\" ================== Mask Format ==================
.SS Mask Format
The \fBMask Format\fR is used to represent CPU and memory node bitmasks in the
\fI/proc/<pid>/status\fR file.
.PP
It is hexadecimal, using
.SM ASCII
characters "0" - "9" and "a" - "f". This format displays each 32-bit
word in hex (zero filled) and for masks longer than one word uses
a comma separator between words. Words are displayed in big-endian
order most significant first. And hex digits within a word are also
in big-endian order.
.PP
The number of 32-bit words displayed is the minimum number needed to
display all bits of the bitmask, based on the size of the bitmask.
.PP
Examples of the \fBMask Format\fR:
.PP
.RS 15
.ft B
.nf
00000001 # just bit 0 set
80000000,00000000,00000000 # just bit 95 set
00000001,00000000,00000000 # just bit 64 set
000000ff,00000000 # bits 32-39 set
00000000,000E3862 # 1,5,6,11-13,17-19 set
.fi
.ft R
.RE
.PP
A mask with bits 0, 1, 2, 4, 8, 16, 32 and 64 set displays as
"00000001,00000001,00010117". The first "1" is for bit 64, the
second for bit 32, the third for bit 16, the fourth for bit 8, the
fifth for bit 4, and the "7" is for bits 2, 1 and 0.
.\" ================== List Format ==================
.SS List Format
The \fBList Format\fR for \fBcpus\fR and \fBmems\fR
is a comma separated list of CPU or memory node
numbers and ranges of numbers, in
.SM ASCII
decimal.
.PP
Examples of the \fBList Format\fR:
.PP
.RS 15
.ft B
.nf
0-4,9 # bits 0, 1, 2, 3, 4 and 9 set
0-2,7,12-14 # bits 0, 1, 2, 7, 12, 13 and 14 set
.fi
.ft R
.RE
.\" ================== RULES ==================
.SH RULES
.RS .4
The following rules apply to each cpuset:
* Its CPUs and memory nodes must be a (possibly equal) subset of its parents.
* It can only be marked
.BR cpu_exclusive
if its parent is.
* It can only be marked
.BR mem_exclusive
if its parent is.
* If it is
.BR cpu_exclusive ,
its CPUs may not overlap any sibling.
* If it is
.BR memory_exclusive ,
its memory nodes may not overlap any sibling.
.RE
.\" ================== PERMISSIONS ==================
.SH PERMISSIONS
The permissions of a cpuset are determined by the permissions
of the special files and directories in the cpuset file system,
normally mounted at \fI/dev/cpuset\fR.
.PP
For instance, a task can put itself in some other cpuset (than
its current one) if it can write the tasks file for that cpuset
(requires execute permission on the encompassing directories
and write permission on that tasks file).
.PP
An additional constraint is applied to requests to place some
other task in a cpuset. One task may not attach another to
a cpuset unless it would have permission to send that task
a signal.
.PP
A task may create a child cpuset if it can access and write the
parent cpuset directory. It can modify the CPUs or memory nodes
in a cpuset if it can access that cpusets directory (execute
permissions on the encompassing directories) and write the
corresponding cpus or mems file.
.PP
Note however that since changes to the CPUs of a cpuset don't
apply to any task in that cpuset until said task is reattached
to that cpuset, it would normally not be a good idea to arrange
the permissions on a cpuset so that some task could write the
\fBcpus\fR file unless it could also write the \fBtasks\fR file
to reattach the tasks therein.
.PP
There is one minor difference between the manner in which these
permissions are evaluated and the manner in which normal file
system operation permissions are evaluated. The kernel evaluates
relative pathnames starting at a tasks current working directory.
Even if one is operating on a cpuset file, relative pathnames
are evaluated relative to the current working directory,
not relative to a tasks current cpuset. The only ways that
cpuset paths relative to a tasks current cpuset can be used are
if either the tasks current working directory is its cpuset
(it first did a \fBcd\fR or \fBchdir\fR to its cpuset
directory beneath \fI/dev/cpuset\fR, which is a bit unusual)
or if some user code converts the relative cpuset path to a
full file system path.
.\" ================== WARNINGS ==================
.SH WARNINGS
.SS Updating a cpusets cpus
Changes to a cpusets \fBcpus\fR file do not take affect
for any task in that cpuset until that tasks process ID (PID)
is rewritten to the cpusets \fBtasks\fR file. This unusual
requirement is needed to optimize a critical code path in the
Linux kernel. Beware that only one PID can be written at a time
to a cpusets \fBtasks\fR file. Additional PIDs on a single \fBwrite\fR(2)
system call are ignored. One (unobvious) way to satisfy this
requirement to rewrite the \fBtasks\fR file after updating the
\fBcpus\fR file is to use the \fB-u\fR unbuffered option to the
\fBsed\fR(1) command, as in the following scenario:
.RS
.ft B
.nf
cd /dev/cpuset/foo # /foo is an existing cpuset
/bin/echo 3 > cpus # change /foo's cpus
sed -un p < tasks > tasks # rewrite /foo's tasks file
.fi
.ft R
.RE
.PP
If one examines the \fBCpus_allowed\fR value in the
\fI/proc/<pid>/status\fR file for one of the tasks
in cpuset \fI/foo\fR in the above scenario, one will
notice that the value does not change when the
\fBcpus\fR file is written (the \fBecho\fR command),
but only later, after the \fBtasks\fR file is
rewritten (the \fBsed\fR command).
.SS Enabling memory_pressure
By default, the per-cpuset file
\fBmemory_pressure\fR always contains zero (0).
Unless this feature is enabled by writing "1" to the special file
\fI/dev/cpuset/memory_pressure_enabled\fR, the kernel does
not compute per-cpuset \fBmemory_pressure\fR.
.SS Using the echo command
When using the \fBecho\fR command at the shell prompt to
change the values of cpuset files, beware that most shell
built-in \fBecho\fR commands to not display an error message
if the \fBwrite\fR(2) system call fails. For example, if the
command:
.RS
.ft B
.nf
echo 19 > mems
.fi
.ft R
.RE
failed because memory node 19 was not allowed (perhaps
the current system does not have a memory node 19),
then the above \fBecho\fR command would not display
any error. It is better to use the \fB/bin/echo\fR
external command to change cpuset file settings, as this
command will display \fBwrite\fR(2) errors, as in the example:
.RS
.ft B
.nf
/bin/echo 19 > mems
/bin/echo: write error: No space left on device
.fi
.ft R
.RE
.\" ================== EXCEPTIONS ==================
.SH EXCEPTIONS
Not all allocations of system memory are constrained by cpusets,
for the following reasons.
.PP
If hot-plug functionality is used to remove all the CPUs that are
currently assigned to a cpuset, then the kernel will automatically
update the cpus_allowed of all tasks attached to CPUs in that cpuset
to allow all CPUs. When memory hot-plug functionality for removing
memory nodes is available, a similar exception is expected to apply
there as well. In general, the kernel prefers to violate cpuset
placement, over starving a task that has had all its allowed CPUs or
memory nodes taken offline. User code should reconfigure cpusets to
only refer to online CPUs and memory nodes when using hot-plug to add
or remove such resources.
.PP
A few kernel critical internal memory allocation requests, marked
GFP_ATOMIC, must be satisfied, immediately. The kernel may drop some
request or malfunction if one of these allocations fail. If such a
request cannot be satisfied within the current tasks cpuset, then
we relax the cpuset, and look for memory anywhere we can find it.
It's better to violate the cpuset than stress the kernel.
.PP
Allocations of memory requested by kernel drivers while processing
an interrupt lack any relevant task context, and are not confined
by cpusets.
.\" ================== LIMITATIONS ==================
.SH LIMITATIONS
.SS Kernel limitations updating cpusets
In order to minimize the impact of cpusets on critical kernel
code, such as the scheduler, and due to the fact that the kernel
does not support one task updating the memory placement of another
task directly, the impact on a task of changing its cpuset CPU
or memory node placement, or of changing to which cpuset a task
is attached, is subtle.
.PP
If a cpuset has its memory nodes modified, then for each task attached
to that cpuset, the next time that the kernel attempts to allocate
a page of memory for that task, the kernel will notice the change
in the tasks cpuset, and update its per-task memory placement to
remain within the new cpusets memory placement. If the task was using
mempolicy MPOL_BIND, and the nodes to which it was bound overlap with
its new cpuset, then the task will continue to use whatever subset
of MPOL_BIND nodes are still allowed in the new cpuset. If the task
was using MPOL_BIND and now none of its MPOL_BIND nodes are allowed
in the new cpuset, then the task will be essentially treated as if it
was MPOL_BIND bound to the new cpuset (even though its NUMA placement,
as queried by get_mempolicy(), doesn't change). If a task is moved
from one cpuset to another, then the kernel will adjust the tasks
memory placement, as above, the next time that the kernel attempts
to allocate a page of memory for that task.
.PP
If a cpuset has its CPUs modified, each task using that
cpuset does _not_ change its behavior automatically. In order to
minimize the impact on the critical scheduling code in the kernel,
tasks will continue to use their prior CPU placement until they
are rebound to their cpuset, by rewriting their PID to the 'tasks'
file of their cpuset. If a task had been bound to some subset of its
cpuset using the sched_setaffinity() call, and if any of that subset
is still allowed in its new cpuset settings, then the task will be
restricted to the intersection of the CPUs it was allowed on before,
and its new cpuset CPU placement. If, on the other hand, there is
no overlap between a tasks prior placement and its new cpuset CPU
placement, then the task will be allowed to run on any CPU allowed
in its new cpuset. If a task is moved from one cpuset to another,
its CPU placement is updated in the same way as if the tasks PID is
rewritten to the 'tasks' file of its current cpuset.
.PP
In summary, the memory placement of a task whose cpuset is changed is
updated by the kernel, on the next allocation of a page for that task,
but the processor placement is not updated, until that tasks PID is
rewritten to the 'tasks' file of its cpuset. This is done to avoid
impacting the scheduler code in the kernel with a check for changes
in a tasks processor placement.
.SS Rename limitations
You can use the \fBrename\fR(2) system call to rename cpusets.
Only simple renaming is supported, changing the name of a cpuset
directory while keeping its same parent.
.\" ================== NOTES ==================
.SH NOTES
Despite its name, the \fIpid\fR parameter is actually a thread id,
and each thread in a threaded group can be attached to a different
cpuset. The value returned from a
call to \fBgettid(2)\fR can be passed in the argument \fIpid\fR.
.\" ================== EXAMPLES ==================
.SH EXAMPLES
The following examples demonstrate querying and setting cpuset
options using shell commands.
.SS Creating and attaching to a cpuset.
To create a new cpuset and attach the current command shell to it,
the steps are:
.PD 0
.RS .3i
.HP
1)
mkdir /dev/cpuset (if not already done)
.HP
2)
mount -t cpuset none /dev/cpuset (if not already done)
.HP
3)
Create the new cpuset using \fBmkdir\fR(1).
.HP
4)
Assign CPUs and memory nodes to the new cpuset.
.HP
5)
Attach the shell to the new cpuset.
.PD
.RE
.PP
For example, the following sequence of commands will setup a cpuset
named "Charlie", containing just CPUs 2 and 3, and memory node 1,
and then attach the current shell to that cpuset.
.PP
.RS
.ft B
.nf
mkdir /dev/cpuset
mount -t cpuset cpuset /dev/cpuset
cd /dev/cpuset
mkdir Charlie
cd Charlie
/bin/echo 2-3 > cpus
/bin/echo 1 > mems
/bin/echo $$ > tasks
# The current shell is now running in cpuset Charlie
# The next line should display '/Charlie'
cat /proc/self/cpuset
.fi
.ft R
.RE
.SS Migrating a job to different memory nodes.
To migrate a job (the set of tasks attached to a cpuset)
to different CPUs and memory nodes in the system, including moving
the memory pages currently allocated to that job,
perform the following steps.
.PD 0
.RS .3i
.HP
1)
Lets say we want to move the job in cpuset \fIalpha\fR
(CPUs 4-7 and memory nodes 2-3) to a new cpuset
\fIbeta\fR (CPUs 16-19 and memory nodes 8-9).
.HP
2)
First create the new cpuset \fIbeta\fR.
.HP
3)
Then allow CPUs 16-19 and memory nodes 8-9 in \fIbeta\fR.
.HP
4)
Then enable \fBmemory_migration\fR in \fIbeta\fR.
.HP
5)
Then move each task from \fIalpha\fR to \fIbeta\fR.
.RE
.PD
.PP
The following sequence of commands accomplishes this.
.PP
.RS
.ft B
.nf
cd /dev/cpuset
mkdir beta
cd beta
/bin/echo 16-19 > cpus
/bin/echo 8-9 > mems
/bin/echo 1 > memory_migrate
while read i; do /bin/echo $i; done < ../alpha/tasks > tasks
.fi
.ft R
.RE
.PP
The above should move any tasks in alpha to beta, and any
memory held by these tasks on memory nodes 2-3 to memory
nodes 8-9, respectively.
.PP
Notice that the last step of the above sequence did not do:
.PP
.RS
.ft B
.nf
cp ../alpha/tasks tasks
.fi
.ft R
.RE
.PP
The \fIwhile\fR loop, rather than the seemingly easier
use of the \fBcp\fR(1) command, was necessary because
only one task PID at a time may be written to the \fBtasks\fR
file.
.PP
The same affect (writing one pid at a time) as the \fIwhile\fR loop
can be accomplished more efficiently, in fewer keystrokes and in
syntax that works on any shell, but alas more obscurely, by using
the \fBsed -u [unbuffered]\fR option:
.PP
.RS
.ft B
.nf
sed -un p < ../alpha/tasks > tasks
.fi
.ft R
.RE
.\" ================== ERRORS ==================
.SH ERRORS
The Linux kernel implementation of cpusets sets \fBerrno\fR
to specify the reason for a failed system call affecting cpusets.
.PP
The possible errno settings and their meaning when set on
a failed cpuset call are as listed below.
.TP
ENOMEM
Insufficient memory is available.
.TP
EBUSY
Attempted to remove a cpuset with attached tasks.
.TP
EBUSY
Attempted to remove a cpuset with child cpusets.
.TP
ENOENT
Attempted to create a cpuset in a parent cpuset that doesn't exist.
.TP
ENOENT
Attempted to access a non-existent file in a cpuset directory.
.TP
EEXIST
Attempted to create a cpuset that already exists.
.TP
EEXIST
Attempted to \fBrename\fR(2) a cpuset to a name
that already exists.
.TP
ENOTDIR
Attempted to \fBrename\fR(2) a non-existent cpuset.
.TP
E2BIG
Attempted a
\fBwrite\fR(2)
system call on a special cpuset file
with a length larger than some kernel determined upper
limit on the length of such writes.
.TP
ESRCH
Attempted to write the process ID (PID)
of a non-existent task to a cpuset \fBtasks\fR file.
.TP
EACCES
Attempted to write the process ID (PID)
of a task to a cpuset \fBtasks\fR file
when one lacks permission to move that task.
.TP
EACCESS
Attempted to \fBwrite\fR(2) a
\fBmemory_pressure\fR file.
.TP
ENOSPC
Attempted to write the process ID (PID)
of a task to a cpuset \fBtasks\fR file
when the cpuset had an empty \fBcpus\fR
or empty \fBmems\fR setting.
.TP
EINVAL
Attempted to change a cpuset in a way that would
violate a \fBcpu_exclusive\fR or \fBmem_exclusive\fR attribute
of that cpuset or any of its siblings.
.TP
EINVAL
Attempted to \fBwrite\fR(2) an empty \fBcpus\fR or \fBmems\fR list to
the kernel. The kernel creates new cpusets (via \fBmkdir\fR(2)) with empty
\fBcpus\fR and \fBmems\fR. But the kernel will not allow an empty
list to be written to the special \fBcpus\fR or \fBmems\fR files of
a cpuset.
.TP
EIO
Attempted to
\fBwrite\fR(2)
a string to a cpuset \fBtasks\fR file that
does not begin with an
.SM ASCII
decimal integer.
.TP
EIO
Attempted to \fBrename\fR(2) a cpuset outside of
its current directory.
.TP
ENOSPC
Attempted to \fBwrite\fR(2) a list to a \fBcpus\fR
file that did not include any online CPUs.
.TP
ENOSPC
Attempted to \fBwrite\fR(2) a list to a \fBmems\fR
file that did not include any online memory
nodes.
.TP
ENODEV
The cpuset was removed by another task at the
same time as a \fBwrite\fR(2) was attempted on
one of the special files in the cpuset directory.
.TP
EACCES
Attempted to add a CPU or memory node to a cpuset that is
not already in its parent.
.TP
EACCES
Attempted to set \fBcpu_exclusive\fR or \fBmem_exclusive\fR
on a cpuset whose parent lacks the same setting.
.TP
EBUSY
Attempted to remove a CPU or memory node from a cpuset
that is also in a child of that cpuset.
.TP
EFAULT
Attempted to \fBread\fR(2) or \fBwrite\fR(2) a cpuset file using
a buffer that is outside your accessible address space.
.TP
ENAMETOOLONG
Attempted to read a \fI/proc/<pid>/cpuset\fR file for
a cpuset path that is longer than the kernel page
size.
.TP
ENAMETOOLONG
Attempted to create a cpuset whose base directory
name is longer than 255 characters.
.TP
ENAMETOOLONG
Attempted to create a cpuset whose full pathname
including the "/dev/cpuset/" prefix is longer than 4095
characters.
.TP
EINVAL
Specified a \fBcpus\fR or \fBmems\fR list to the kernel which
included a range with the second number smaller than
the first number.
.TP
EINVAL
Specified a \fBcpus\fR or \fBmems\fR list to the kernel which
included an invalid character in the string.
.TP
ERANGE
Specified a \fBcpus\fR or \fBmems\fR list to the kernel which
included a number too large for the kernel to set
in its bitmasks.
.\" ================== SEE ALSO ==================
.SH SEE ALSO
cat(1), echo(1), ls(1), mkdir(1), rmdir(1), sed(1), taskset(1),
close(2), get_mempolicy(2), mbind(2), mkdir(2), open(2), read(2)
rmdir(2), sched_getaffinity(2), sched_setaffinity(2), set_mempolicy(2),
sched_setscheduler(2), taskset(2), write(2), libbitmask(3), proc(5),
migratepages(8), numactl(8).
.\" ================== HISTORY ==================
.SH HISTORY
Cpusets appeared in version 2.6.13 of the Linux kernel.
.\" ================== BUGS ==================
.SH BUGS
\fBmemory_pressure\fR cpuset files can be opened
for writing, creation or truncation, but
then the \fBwrite\fR(2) fails with \fBerrno\fR
== \fBEACCESS\fR, and the creation and truncation
options on \fBopen\fR(2) have no affect.
.\" ================== AUTHORS ==================
.SH AUTHOR
This man page was written by Paul Jackson.
|