Loading...
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 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 | /* * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990,1989,1988 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* */ /* * processor.c: processor and processor_set manipulation routines. */ #include <cpus.h> #include <mach/boolean.h> #include <mach/policy.h> #include <mach/processor_info.h> #include <mach/vm_param.h> #include <kern/cpu_number.h> #include <kern/host.h> #include <kern/machine.h> #include <kern/misc_protos.h> #include <kern/processor.h> #include <kern/sched.h> #include <kern/task.h> #include <kern/thread.h> #include <kern/ipc_host.h> #include <kern/ipc_tt.h> #include <ipc/ipc_port.h> #include <kern/kalloc.h> /* * Exported interface */ #include <mach/mach_host_server.h> /* * Exported variables. */ struct processor_set default_pset; struct processor processor_array[NCPUS]; processor_t master_processor; processor_t processor_ptr[NCPUS]; /* Forwards */ void pset_init( processor_set_t pset); void processor_init( register processor_t pr, int slot_num); void pset_quanta_set( processor_set_t pset); kern_return_t processor_set_base( processor_set_t pset, policy_t policy, policy_base_t base, boolean_t change); kern_return_t processor_set_limit( processor_set_t pset, policy_t policy, policy_limit_t limit, boolean_t change); kern_return_t processor_set_things( processor_set_t pset, mach_port_t **thing_list, mach_msg_type_number_t *count, int type); /* * Bootstrap the processor/pset system so the scheduler can run. */ void pset_sys_bootstrap(void) { register int i; pset_init(&default_pset); for (i = 0; i < NCPUS; i++) { /* * Initialize processor data structures. * Note that cpu_to_processor(i) is processor_ptr[i]. */ processor_ptr[i] = &processor_array[i]; processor_init(processor_ptr[i], i); } master_processor = cpu_to_processor(master_cpu); default_pset.active = TRUE; } /* * Initialize the given processor_set structure. */ void pset_init( register processor_set_t pset) { int i; /* setup run-queues */ simple_lock_init(&pset->runq.lock, ETAP_THREAD_PSET_RUNQ); pset->runq.count = 0; for (i = 0; i < NRQBM; i++) { pset->runq.bitmap[i] = 0; } setbit(MAXPRI - IDLEPRI, pset->runq.bitmap); pset->runq.highq = IDLEPRI; for (i = 0; i < NRQS; i++) { queue_init(&(pset->runq.queues[i])); } queue_init(&pset->idle_queue); pset->idle_count = 0; simple_lock_init(&pset->idle_lock, ETAP_THREAD_PSET_IDLE); pset->mach_factor = pset->load_average = 0; pset->sched_load = 0; queue_init(&pset->processors); pset->processor_count = 0; simple_lock_init(&pset->processors_lock, ETAP_THREAD_PSET); queue_init(&pset->tasks); pset->task_count = 0; queue_init(&pset->threads); pset->thread_count = 0; pset->ref_count = 1; pset->active = FALSE; mutex_init(&pset->lock, ETAP_THREAD_PSET); pset->pset_self = IP_NULL; pset->pset_name_self = IP_NULL; pset->set_quanta = 1; for (i = 0; i <= NCPUS; i++) pset->machine_quanta[i] = 1; } /* * Initialize the given processor structure for the processor in * the slot specified by slot_num. */ void processor_init( register processor_t pr, int slot_num) { int i; /* setup run-queues */ simple_lock_init(&pr->runq.lock, ETAP_THREAD_PROC_RUNQ); pr->runq.count = 0; for (i = 0; i < NRQBM; i++) { pr->runq.bitmap[i] = 0; } setbit(MAXPRI - IDLEPRI, pr->runq.bitmap); pr->runq.highq = IDLEPRI; for (i = 0; i < NRQS; i++) { queue_init(&(pr->runq.queues[i])); } queue_init(&pr->processor_queue); pr->state = PROCESSOR_OFF_LINE; pr->next_thread = THREAD_NULL; pr->idle_thread = THREAD_NULL; timer_call_setup(&pr->quantum_timer, thread_quantum_expire, pr); pr->slice_quanta = 0; pr->processor_set = PROCESSOR_SET_NULL; pr->processor_set_next = PROCESSOR_SET_NULL; queue_init(&pr->processors); simple_lock_init(&pr->lock, ETAP_THREAD_PROC); pr->processor_self = IP_NULL; pr->slot_num = slot_num; } /* * pset_remove_processor() removes a processor from a processor_set. * It can only be called on the current processor. Caller must * hold lock on current processor and processor set. */ void pset_remove_processor( processor_set_t pset, processor_t processor) { if (pset != processor->processor_set) panic("pset_remove_processor: wrong pset"); queue_remove(&pset->processors, processor, processor_t, processors); processor->processor_set = PROCESSOR_SET_NULL; pset->processor_count--; pset_quanta_set(pset); } /* * pset_add_processor() adds a processor to a processor_set. * It can only be called on the current processor. Caller must * hold lock on curent processor and on pset. No reference counting on * processors. Processor reference to pset is implicit. */ void pset_add_processor( processor_set_t pset, processor_t processor) { queue_enter(&pset->processors, processor, processor_t, processors); processor->processor_set = pset; pset->processor_count++; pset_quanta_set(pset); } /* * pset_remove_task() removes a task from a processor_set. * Caller must hold locks on pset and task. Pset reference count * is not decremented; caller must explicitly pset_deallocate. */ void pset_remove_task( processor_set_t pset, task_t task) { if (pset != task->processor_set) return; queue_remove(&pset->tasks, task, task_t, pset_tasks); task->processor_set = PROCESSOR_SET_NULL; pset->task_count--; } /* * pset_add_task() adds a task to a processor_set. * Caller must hold locks on pset and task. Pset references to * tasks are implicit. */ void pset_add_task( processor_set_t pset, task_t task) { queue_enter(&pset->tasks, task, task_t, pset_tasks); task->processor_set = pset; pset->task_count++; pset->ref_count++; } /* * pset_remove_thread() removes a thread from a processor_set. * Caller must hold locks on pset and thread. Pset reference count * is not decremented; caller must explicitly pset_deallocate. */ void pset_remove_thread( processor_set_t pset, thread_t thread) { queue_remove(&pset->threads, thread, thread_t, pset_threads); thread->processor_set = PROCESSOR_SET_NULL; pset->thread_count--; } /* * pset_add_thread() adds a thread to a processor_set. * Caller must hold locks on pset and thread. Pset references to * threads are implicit. */ void pset_add_thread( processor_set_t pset, thread_t thread) { queue_enter(&pset->threads, thread, thread_t, pset_threads); thread->processor_set = pset; pset->thread_count++; pset->ref_count++; } /* * thread_change_psets() changes the pset of a thread. Caller must * hold locks on both psets and thread. The old pset must be * explicitly pset_deallocat()'ed by caller. */ void thread_change_psets( thread_t thread, processor_set_t old_pset, processor_set_t new_pset) { queue_remove(&old_pset->threads, thread, thread_t, pset_threads); old_pset->thread_count--; queue_enter(&new_pset->threads, thread, thread_t, pset_threads); thread->processor_set = new_pset; new_pset->thread_count++; new_pset->ref_count++; } /* * pset_deallocate: * * Remove one reference to the processor set. Destroy processor_set * if this was the last reference. */ void pset_deallocate( processor_set_t pset) { if (pset == PROCESSOR_SET_NULL) return; pset_lock(pset); if (--pset->ref_count > 0) { pset_unlock(pset); return; } panic("pset_deallocate: default_pset destroyed"); } /* * pset_reference: * * Add one reference to the processor set. */ void pset_reference( processor_set_t pset) { pset_lock(pset); pset->ref_count++; pset_unlock(pset); } kern_return_t processor_info_count( processor_flavor_t flavor, mach_msg_type_number_t *count) { kern_return_t kr; switch (flavor) { case PROCESSOR_BASIC_INFO: *count = PROCESSOR_BASIC_INFO_COUNT; return KERN_SUCCESS; case PROCESSOR_CPU_LOAD_INFO: *count = PROCESSOR_CPU_LOAD_INFO_COUNT; return KERN_SUCCESS; default: kr = cpu_info_count(flavor, count); return kr; } } kern_return_t processor_info( register processor_t processor, processor_flavor_t flavor, host_t *host, processor_info_t info, mach_msg_type_number_t *count) { register int i, slot_num, state; register processor_basic_info_t basic_info; register processor_cpu_load_info_t cpu_load_info; kern_return_t kr; if (processor == PROCESSOR_NULL) return(KERN_INVALID_ARGUMENT); slot_num = processor->slot_num; switch (flavor) { case PROCESSOR_BASIC_INFO: { if (*count < PROCESSOR_BASIC_INFO_COUNT) return(KERN_FAILURE); basic_info = (processor_basic_info_t) info; basic_info->cpu_type = machine_slot[slot_num].cpu_type; basic_info->cpu_subtype = machine_slot[slot_num].cpu_subtype; state = processor->state; if (state == PROCESSOR_OFF_LINE) basic_info->running = FALSE; else basic_info->running = TRUE; basic_info->slot_num = slot_num; if (processor == master_processor) basic_info->is_master = TRUE; else basic_info->is_master = FALSE; *count = PROCESSOR_BASIC_INFO_COUNT; *host = &realhost; return(KERN_SUCCESS); } case PROCESSOR_CPU_LOAD_INFO: { if (*count < PROCESSOR_CPU_LOAD_INFO_COUNT) return(KERN_FAILURE); cpu_load_info = (processor_cpu_load_info_t) info; for (i=0;i<CPU_STATE_MAX;i++) cpu_load_info->cpu_ticks[i] = machine_slot[slot_num].cpu_ticks[i]; *count = PROCESSOR_CPU_LOAD_INFO_COUNT; *host = &realhost; return(KERN_SUCCESS); } default: { kr=cpu_info(flavor, slot_num, info, count); if (kr == KERN_SUCCESS) *host = &realhost; return(kr); } } } kern_return_t processor_start( processor_t processor) { int state; spl_t s; kern_return_t kr; if (processor == PROCESSOR_NULL) return(KERN_INVALID_ARGUMENT); if (processor == master_processor) { thread_bind(current_thread(), processor); thread_block((void (*)(void)) 0); kr = cpu_start(processor->slot_num); thread_bind(current_thread(), PROCESSOR_NULL); return(kr); } s = splsched(); processor_lock(processor); state = processor->state; if (state != PROCESSOR_OFF_LINE) { processor_unlock(processor); splx(s); return(KERN_FAILURE); } processor->state = PROCESSOR_START; processor_unlock(processor); splx(s); if (processor->next_thread == THREAD_NULL) { thread_t thread; extern void start_cpu_thread(void); thread = kernel_thread_with_priority( kernel_task, MAXPRI_KERNEL, start_cpu_thread, TRUE, FALSE); s = splsched(); thread_lock(thread); thread_bind_locked(thread, processor); thread_go_locked(thread, THREAD_AWAKENED); (void)rem_runq(thread); processor->next_thread = thread; thread_unlock(thread); splx(s); } kr = cpu_start(processor->slot_num); if (kr != KERN_SUCCESS) { s = splsched(); processor_lock(processor); processor->state = PROCESSOR_OFF_LINE; processor_unlock(processor); splx(s); } return(kr); } kern_return_t processor_exit( processor_t processor) { if (processor == PROCESSOR_NULL) return(KERN_INVALID_ARGUMENT); return(processor_shutdown(processor)); } kern_return_t processor_control( processor_t processor, processor_info_t info, mach_msg_type_number_t count) { if (processor == PROCESSOR_NULL) return(KERN_INVALID_ARGUMENT); return(cpu_control(processor->slot_num, info, count)); } /* * Precalculate the appropriate timesharing quanta based on load. The * index into machine_quanta is the number of threads on the * processor set queue. It is limited to the number of processors in * the set. */ void pset_quanta_set( processor_set_t pset) { register int i, ncpus; ncpus = pset->processor_count; for (i=1; i <= ncpus; i++) pset->machine_quanta[i] = (ncpus + (i / 2)) / i; pset->machine_quanta[0] = pset->machine_quanta[1]; i = (pset->runq.count > ncpus)? ncpus: pset->runq.count; pset->set_quanta = pset->machine_quanta[i]; } kern_return_t processor_set_create( host_t host, processor_set_t *new_set, processor_set_t *new_name) { #ifdef lint host++; new_set++; new_name++; #endif /* lint */ return(KERN_FAILURE); } kern_return_t processor_set_destroy( processor_set_t pset) { #ifdef lint pset++; #endif /* lint */ return(KERN_FAILURE); } kern_return_t processor_get_assignment( processor_t processor, processor_set_t *pset) { int state; state = processor->state; if (state == PROCESSOR_SHUTDOWN || state == PROCESSOR_OFF_LINE) return(KERN_FAILURE); *pset = processor->processor_set; pset_reference(*pset); return(KERN_SUCCESS); } kern_return_t processor_set_info( processor_set_t pset, int flavor, host_t *host, processor_set_info_t info, mach_msg_type_number_t *count) { if (pset == PROCESSOR_SET_NULL) return(KERN_INVALID_ARGUMENT); if (flavor == PROCESSOR_SET_BASIC_INFO) { register processor_set_basic_info_t basic_info; if (*count < PROCESSOR_SET_BASIC_INFO_COUNT) return(KERN_FAILURE); basic_info = (processor_set_basic_info_t) info; basic_info->processor_count = pset->processor_count; basic_info->default_policy = POLICY_TIMESHARE; *count = PROCESSOR_SET_BASIC_INFO_COUNT; *host = &realhost; return(KERN_SUCCESS); } else if (flavor == PROCESSOR_SET_TIMESHARE_DEFAULT) { register policy_timeshare_base_t ts_base; if (*count < POLICY_TIMESHARE_BASE_COUNT) return(KERN_FAILURE); ts_base = (policy_timeshare_base_t) info; ts_base->base_priority = BASEPRI_DEFAULT; *count = POLICY_TIMESHARE_BASE_COUNT; *host = &realhost; return(KERN_SUCCESS); } else if (flavor == PROCESSOR_SET_FIFO_DEFAULT) { register policy_fifo_base_t fifo_base; if (*count < POLICY_FIFO_BASE_COUNT) return(KERN_FAILURE); fifo_base = (policy_fifo_base_t) info; fifo_base->base_priority = BASEPRI_DEFAULT; *count = POLICY_FIFO_BASE_COUNT; *host = &realhost; return(KERN_SUCCESS); } else if (flavor == PROCESSOR_SET_RR_DEFAULT) { register policy_rr_base_t rr_base; if (*count < POLICY_RR_BASE_COUNT) return(KERN_FAILURE); rr_base = (policy_rr_base_t) info; rr_base->base_priority = BASEPRI_DEFAULT; rr_base->quantum = 1; *count = POLICY_RR_BASE_COUNT; *host = &realhost; return(KERN_SUCCESS); } else if (flavor == PROCESSOR_SET_TIMESHARE_LIMITS) { register policy_timeshare_limit_t ts_limit; if (*count < POLICY_TIMESHARE_LIMIT_COUNT) return(KERN_FAILURE); ts_limit = (policy_timeshare_limit_t) info; ts_limit->max_priority = MAXPRI_STANDARD; *count = POLICY_TIMESHARE_LIMIT_COUNT; *host = &realhost; return(KERN_SUCCESS); } else if (flavor == PROCESSOR_SET_FIFO_LIMITS) { register policy_fifo_limit_t fifo_limit; if (*count < POLICY_FIFO_LIMIT_COUNT) return(KERN_FAILURE); fifo_limit = (policy_fifo_limit_t) info; fifo_limit->max_priority = MAXPRI_STANDARD; *count = POLICY_FIFO_LIMIT_COUNT; *host = &realhost; return(KERN_SUCCESS); } else if (flavor == PROCESSOR_SET_RR_LIMITS) { register policy_rr_limit_t rr_limit; if (*count < POLICY_RR_LIMIT_COUNT) return(KERN_FAILURE); rr_limit = (policy_rr_limit_t) info; rr_limit->max_priority = MAXPRI_STANDARD; *count = POLICY_RR_LIMIT_COUNT; *host = &realhost; return(KERN_SUCCESS); } else if (flavor == PROCESSOR_SET_ENABLED_POLICIES) { register int *enabled; if (*count < (sizeof(*enabled)/sizeof(int))) return(KERN_FAILURE); enabled = (int *) info; *enabled = POLICY_TIMESHARE | POLICY_RR | POLICY_FIFO; *count = sizeof(*enabled)/sizeof(int); *host = &realhost; return(KERN_SUCCESS); } *host = HOST_NULL; return(KERN_INVALID_ARGUMENT); } /* * processor_set_statistics * * Returns scheduling statistics for a processor set. */ kern_return_t processor_set_statistics( processor_set_t pset, int flavor, processor_set_info_t info, mach_msg_type_number_t *count) { if (pset == PROCESSOR_SET_NULL) return (KERN_INVALID_PROCESSOR_SET); if (flavor == PROCESSOR_SET_LOAD_INFO) { register processor_set_load_info_t load_info; if (*count < PROCESSOR_SET_LOAD_INFO_COUNT) return(KERN_FAILURE); load_info = (processor_set_load_info_t) info; pset_lock(pset); load_info->task_count = pset->task_count; load_info->thread_count = pset->thread_count; simple_lock(&pset->processors_lock); load_info->mach_factor = pset->mach_factor; load_info->load_average = pset->load_average; simple_unlock(&pset->processors_lock); pset_unlock(pset); *count = PROCESSOR_SET_LOAD_INFO_COUNT; return(KERN_SUCCESS); } return(KERN_INVALID_ARGUMENT); } /* * processor_set_max_priority: * * Specify max priority permitted on processor set. This affects * newly created and assigned threads. Optionally change existing * ones. */ kern_return_t processor_set_max_priority( processor_set_t pset, int max_priority, boolean_t change_threads) { return (KERN_INVALID_ARGUMENT); } /* * processor_set_policy_enable: * * Allow indicated policy on processor set. */ kern_return_t processor_set_policy_enable( processor_set_t pset, int policy) { return (KERN_INVALID_ARGUMENT); } /* * processor_set_policy_disable: * * Forbid indicated policy on processor set. Time sharing cannot * be forbidden. */ kern_return_t processor_set_policy_disable( processor_set_t pset, int policy, boolean_t change_threads) { return (KERN_INVALID_ARGUMENT); } #define THING_TASK 0 #define THING_THREAD 1 /* * processor_set_things: * * Common internals for processor_set_{threads,tasks} */ kern_return_t processor_set_things( processor_set_t pset, mach_port_t **thing_list, mach_msg_type_number_t *count, int type) { unsigned int actual; /* this many things */ int i; vm_size_t size, size_needed; vm_offset_t addr; if (pset == PROCESSOR_SET_NULL) return KERN_INVALID_ARGUMENT; size = 0; addr = 0; for (;;) { pset_lock(pset); if (!pset->active) { pset_unlock(pset); return KERN_FAILURE; } if (type == THING_TASK) actual = pset->task_count; else actual = pset->thread_count; /* do we have the memory we need? */ size_needed = actual * sizeof(mach_port_t); if (size_needed <= size) break; /* unlock the pset and allocate more memory */ pset_unlock(pset); if (size != 0) kfree(addr, size); assert(size_needed > 0); size = size_needed; addr = kalloc(size); if (addr == 0) return KERN_RESOURCE_SHORTAGE; } /* OK, have memory and the processor_set is locked & active */ switch (type) { case THING_TASK: { task_t *tasks = (task_t *) addr; task_t task; for (i = 0, task = (task_t) queue_first(&pset->tasks); i < actual; i++, task = (task_t) queue_next(&task->pset_tasks)) { /* take ref for convert_task_to_port */ task_reference(task); tasks[i] = task; } assert(queue_end(&pset->tasks, (queue_entry_t) task)); break; } case THING_THREAD: { thread_act_t *thr_acts = (thread_act_t *) addr; thread_t thread; thread_act_t thr_act; queue_head_t *list; list = &pset->threads; thread = (thread_t) queue_first(list); i = 0; while (i < actual && !queue_end(list, (queue_entry_t)thread)) { thr_act = thread_lock_act(thread); if (thr_act && thr_act->ref_count > 0) { /* take ref for convert_act_to_port */ act_locked_act_reference(thr_act); thr_acts[i] = thr_act; i++; } thread_unlock_act(thread); thread = (thread_t) queue_next(&thread->pset_threads); } if (i < actual) { actual = i; size_needed = actual * sizeof(mach_port_t); } break; } } /* can unlock processor set now that we have the task/thread refs */ pset_unlock(pset); if (actual == 0) { /* no things, so return null pointer and deallocate memory */ *thing_list = 0; *count = 0; if (size != 0) kfree(addr, size); } else { /* if we allocated too much, must copy */ if (size_needed < size) { vm_offset_t newaddr; newaddr = kalloc(size_needed); if (newaddr == 0) { switch (type) { case THING_TASK: { task_t *tasks = (task_t *) addr; for (i = 0; i < actual; i++) task_deallocate(tasks[i]); break; } case THING_THREAD: { thread_t *threads = (thread_t *) addr; for (i = 0; i < actual; i++) thread_deallocate(threads[i]); break; } } kfree(addr, size); return KERN_RESOURCE_SHORTAGE; } bcopy((char *) addr, (char *) newaddr, size_needed); kfree(addr, size); addr = newaddr; } *thing_list = (mach_port_t *) addr; *count = actual; /* do the conversion that Mig should handle */ switch (type) { case THING_TASK: { task_t *tasks = (task_t *) addr; for (i = 0; i < actual; i++) (*thing_list)[i] = convert_task_to_port(tasks[i]); break; } case THING_THREAD: { thread_act_t *thr_acts = (thread_act_t *) addr; for (i = 0; i < actual; i++) (*thing_list)[i] = convert_act_to_port(thr_acts[i]); break; } } } return(KERN_SUCCESS); } /* * processor_set_tasks: * * List all tasks in the processor set. */ kern_return_t processor_set_tasks( processor_set_t pset, task_array_t *task_list, mach_msg_type_number_t *count) { return(processor_set_things(pset, (mach_port_t **)task_list, count, THING_TASK)); } /* * processor_set_threads: * * List all threads in the processor set. */ kern_return_t processor_set_threads( processor_set_t pset, thread_array_t *thread_list, mach_msg_type_number_t *count) { return(processor_set_things(pset, (mach_port_t **)thread_list, count, THING_THREAD)); } /* * processor_set_base: * * Specify per-policy base priority for a processor set. Set processor * set default policy to the given policy. This affects newly created * and assigned threads. Optionally change existing ones. */ kern_return_t processor_set_base( processor_set_t pset, policy_t policy, policy_base_t base, boolean_t change) { return (KERN_INVALID_ARGUMENT); } /* * processor_set_limit: * * Specify per-policy limits for a processor set. This affects * newly created and assigned threads. Optionally change existing * ones. */ kern_return_t processor_set_limit( processor_set_t pset, policy_t policy, policy_limit_t limit, boolean_t change) { return (KERN_POLICY_LIMIT); } /* * processor_set_policy_control * * Controls the scheduling attributes governing the processor set. * Allows control of enabled policies, and per-policy base and limit * priorities. */ kern_return_t processor_set_policy_control( processor_set_t pset, int flavor, processor_set_info_t policy_info, mach_msg_type_number_t count, boolean_t change) { return (KERN_INVALID_ARGUMENT); } |