/openbmc/linux/block/ |
H A D | ioprio.c | 69 SYSCALL_DEFINE3(ioprio_set, int, which, int, who, int, ioprio) in SYSCALL_DEFINE3() argument 85 if (!who) in SYSCALL_DEFINE3() 88 p = find_task_by_vpid(who); in SYSCALL_DEFINE3() 93 if (!who) in SYSCALL_DEFINE3() 96 pgrp = find_vpid(who); in SYSCALL_DEFINE3() 110 uid = make_kuid(current_user_ns(), who); in SYSCALL_DEFINE3() 113 if (!who) in SYSCALL_DEFINE3() 130 if (who) in SYSCALL_DEFINE3() 210 SYSCALL_DEFINE2(ioprio_get, int, which, int, who) in SYSCALL_DEFINE2() argument 222 if (!who) in SYSCALL_DEFINE2() [all …]
|
/openbmc/qemu/tests/qtest/ |
H A D | migration-helpers.h | 25 bool migrate_watch_for_events(QTestState *who, const char *name, 29 void migrate_qmp(QTestState *who, QTestState *to, const char *uri, 33 void migrate_incoming_qmp(QTestState *who, const char *uri, 37 void migrate_qmp_fail(QTestState *who, const char *uri, 40 void migrate_set_capability(QTestState *who, const char *capability, 43 QDict *migrate_query(QTestState *who); 44 QDict *migrate_query_not_failed(QTestState *who); 46 void wait_for_migration_status(QTestState *who, 49 void wait_for_migration_complete(QTestState *who);
|
H A D | migration-helpers.c | 84 static SocketAddressList *migrate_get_socket_address(QTestState *who) in migrate_get_socket_address() argument 91 rsp = migrate_query(who); in migrate_get_socket_address() 103 migrate_get_connect_uri(QTestState *who) in migrate_get_connect_uri() argument 108 addrs = migrate_get_socket_address(who); in migrate_get_connect_uri() 116 migrate_get_connect_qdict(QTestState *who) in migrate_get_connect_qdict() argument 121 addrs = migrate_get_socket_address(who); in migrate_get_connect_qdict() 151 bool migrate_watch_for_events(QTestState *who, const char *name, in migrate_watch_for_events() argument 170 void migrate_qmp_fail(QTestState *who, const char *uri, in migrate_qmp_fail() argument 192 who, "{ 'execute': 'migrate', 'arguments': %p}", args); in migrate_qmp_fail() 204 void migrate_qmp(QTestState *who, QTestState *to, const char *uri, in migrate_qmp() argument [all …]
|
H A D | migration-test.c | 225 static void wait_for_stop(QTestState *who, QTestMigrationState *state) in wait_for_stop() argument 228 qtest_qmp_eventwait(who, "STOP"); in wait_for_stop() 232 static void wait_for_resume(QTestState *who, QTestMigrationState *state) in wait_for_resume() argument 235 qtest_qmp_eventwait(who, "RESUME"); in wait_for_resume() 239 static void wait_for_suspend(QTestState *who, QTestMigrationState *state) in wait_for_suspend() argument 242 qtest_qmp_eventwait(who, "SUSPEND"); in wait_for_suspend() 251 static int64_t read_ram_property_int(QTestState *who, const char *property) in read_ram_property_int() argument 256 rsp_return = migrate_query_not_failed(who); in read_ram_property_int() 268 static int64_t read_migrate_property_int(QTestState *who, const char *property) in read_migrate_property_int() argument 273 rsp_return = migrate_query_not_failed(who); in read_migrate_property_int() [all …]
|
H A D | tpm-util.c | 182 void tpm_util_migrate(QTestState *who, const char *uri) in tpm_util_migrate() argument 186 rsp = qtest_qmp(who, in tpm_util_migrate() 193 void tpm_util_wait_for_migration_complete(QTestState *who) in tpm_util_wait_for_migration_complete() argument 201 rsp = qtest_qmp(who, "{ 'execute': 'query-migrate' }"); in tpm_util_wait_for_migration_complete()
|
H A D | tpm-util.h | 42 void tpm_util_migrate(QTestState *who, const char *uri); 52 void tpm_util_wait_for_migration_complete(QTestState *who);
|
/openbmc/linux/drivers/gpu/drm/i915/selftests/ |
H A D | scatterlist.c | 44 const char *who, in expect_pfn_sg() argument 57 __func__, who, pfn, page_to_pfn(page)); in expect_pfn_sg() 63 __func__, who, npages * PAGE_SIZE, sg->length); in expect_pfn_sg() 67 if (igt_timeout(timeout, "%s timed out\n", who)) in expect_pfn_sg() 74 __func__, who, pt->end, pfn); in expect_pfn_sg() 82 const char *who, in expect_pfn_sg_page_iter() argument 94 __func__, who, pfn, page_to_pfn(page)); in expect_pfn_sg_page_iter() 98 if (igt_timeout(timeout, "%s timed out\n", who)) in expect_pfn_sg_page_iter() 105 __func__, who, pt->end, pfn); in expect_pfn_sg_page_iter() 113 const char *who, in expect_pfn_sgtiter() argument [all …]
|
/openbmc/linux/arch/s390/kvm/ |
H A D | trace-s390.h | 126 TP_PROTO(__u64 type, __u32 parm, __u64 parm64, int who), 127 TP_ARGS(type, parm, parm64, who), 133 __field(int, who) 140 __entry->who = who; 144 (__entry->who == 1) ? " (from kernel)" : 145 (__entry->who == 2) ? " (from user)" : "",
|
/openbmc/qemu/bsd-user/ |
H A D | bsd-proc.h | 125 static inline abi_long do_bsd_getrusage(abi_long who, abi_ulong target_addr) in do_bsd_getrusage() argument 130 ret = get_errno(getrusage(who, &rusage)); in do_bsd_getrusage() 391 static inline abi_long do_bsd_getpriority(abi_long which, abi_long who) in do_bsd_getpriority() argument 399 ret = getpriority(which, who); in do_bsd_getpriority() 408 static inline abi_long do_bsd_setpriority(abi_long which, abi_long who, in do_bsd_setpriority() argument 411 return get_errno(setpriority(which, who, prio)); in do_bsd_setpriority()
|
/openbmc/linux/kernel/ |
H A D | sys.c | 218 SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval) in SYSCALL_DEFINE3() argument 240 if (who) in SYSCALL_DEFINE3() 241 p = find_task_by_vpid(who); in SYSCALL_DEFINE3() 248 if (who) in SYSCALL_DEFINE3() 249 pgrp = find_vpid(who); in SYSCALL_DEFINE3() 259 uid = make_kuid(cred->user_ns, who); in SYSCALL_DEFINE3() 261 if (!who) in SYSCALL_DEFINE3() 288 SYSCALL_DEFINE2(getpriority, int, which, int, who) in SYSCALL_DEFINE2() argument 303 if (who) in SYSCALL_DEFINE2() 304 p = find_task_by_vpid(who); in SYSCALL_DEFINE2() [all …]
|
/openbmc/linux/Documentation/process/ |
H A D | 1.Intro.rst | 64 those products attractive to Linux users. Embedded systems vendors, who 67 other software vendors who base their products on Linux have a clear 92 experience behind it. A developer who does not understand the kernel 93 community's ways (or, worse, who tries to flout or circumvent them) will 95 being helpful to those who are trying to learn, has little time for those 96 who will not listen or who do not care about the development process. 98 It is hoped that those who read this document will be able to avoid that 101 community is always in need of developers who will help to make the kernel 102 better; the following text should help you - or those who work for you - 115 Amanda McPherson, who saw the value of this effort and made it all happen. [all …]
|
H A D | 5.Posting.rst | 30 patches which are known to be half-baked, but those who do will come in 110 users who are engaging in the noble work of tracking down problems. 144 enough for a reader who sees it with no other context to figure out the 165 These include subsystem maintainers and reviewers who need to decide 169 chasing, users who want to know how the kernel has changed, and more. A 183 general, the more you can put yourself into the shoes of everybody who will 230 Another kind of tag is used to document who was involved in the development of 261 - Reported-by: names a user who reported a problem which is fixed by this 263 people who test our code and let us know when things do not work 305 When mailing patches, it is important to send copies to anybody who might [all …]
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | JPL-image | 3 …out prior permission, subject to the special cases noted below. Publishers who wish to have author… 7 …ct to ownership of copyrights in the images, and does not represent others who may claim to be aut… 13 …ed "worm" logo) and the NASA seal. These images may not be used by persons who are not NASA employ… 19 * JPL/Caltech contractors and vendors who wish to use JPL images in advertising or public relation …
|
/openbmc/qemu/docs/devel/ |
H A D | maintainers.rst | 8 working in their spare time to employees who work on the project as 26 file contains the canonical list of who is a maintainer. The file 75 Maintainers are volunteers who put themselves forward or have been 85 also be done by a retiring maintainer who nominates their replacement
|
/openbmc/linux/fs/ |
H A D | super.c | 42 static int thaw_super_locked(struct super_block *sb, enum freeze_holder who); 1954 int freeze_super(struct super_block *sb, enum freeze_holder who) in freeze_super() argument 1964 if (sb->s_writers.freeze_holders & who) { in freeze_super() 1975 sb->s_writers.freeze_holders |= who; in freeze_super() 1997 sb->s_writers.freeze_holders |= who; in freeze_super() 2045 sb->s_writers.freeze_holders |= who; in freeze_super() 2060 static int thaw_super_locked(struct super_block *sb, enum freeze_holder who) in thaw_super_locked() argument 2065 if (!(sb->s_writers.freeze_holders & who)) { in thaw_super_locked() 2075 if (sb->s_writers.freeze_holders & ~who) { in thaw_super_locked() 2076 sb->s_writers.freeze_holders &= ~who; in thaw_super_locked() [all …]
|
/openbmc/linux/Documentation/filesystems/ |
H A D | xfs-maintainer-entry-profile.rst | 31 - **Outside Contributor**: Anyone who sends a patch but is not involved 33 These folks are usually people who work on other filesystems or 36 - **Developer**: Someone who is familiar with the XFS codebase enough to 42 - **Senior Developer**: A developer who is very familiar with at least 51 - **Reviewer**: Someone (most likely also a developer) who reads code 71 - **Bug Triager**: Someone who examines incoming bug reports in just 95 - **LTS Maintainer**: Someone who backports and tests bug fixes from
|
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/u-boot/u-boot/corstone1000/ |
H A D | 0028-corstone1000-boot-index-from-active.patch | 6 In our platform, the Secure Enclave is the one who control 29 + * in our platform, the Secure Enclave is the one who control
|
/openbmc/linux/Documentation/block/ |
H A D | ioprio.rst | 90 static inline int ioprio_set(int which, int who, int ioprio) 92 return syscall(__NR_ioprio_set, which, who, ioprio); 95 static inline int ioprio_get(int which, int who) 97 return syscall(__NR_ioprio_get, which, who);
|
/openbmc/linux/arch/x86/kernel/ |
H A D | e820.c | 203 void __init e820__print_table(char *who) in e820__print_table() argument 209 who, in e820__print_table() 1264 char *who = "BIOS-e820"; in e820__memory_setup_default() local 1278 who = "BIOS-88"; in e820__memory_setup_default() 1281 who = "BIOS-e801"; in e820__memory_setup_default() 1292 return who; in e820__memory_setup_default() 1302 char *who; in e820__memory_setup() local 1307 who = x86_init.resources.memory_setup(); in e820__memory_setup() 1313 e820__print_table(who); in e820__memory_setup()
|
/openbmc/ibm-dbus-interfaces/ |
H A D | OWNERS | 17 # * owners: A list of individuals who have approval authority on the 20 # * reviewers: A list of individuals who have requested review notification
|
/openbmc/linux/arch/ia64/kernel/ |
H A D | sys_ia64.c | 71 ia64_getpriority (int which, int who) in ia64_getpriority() argument 75 prio = sys_getpriority(which, who); in ia64_getpriority()
|
/openbmc/openpower-host-ipmi-oem/ |
H A D | OWNERS | 17 # * owners: A list of individuals who have approval authority on the 20 # * reviewers: A list of individuals who have requested review notification
|
/openbmc/ibm-logging/ |
H A D | OWNERS | 17 # * owners: A list of individuals who have approval authority on the 20 # * reviewers: A list of individuals who have requested review notification
|
/openbmc/phosphor-webui/ |
H A D | OWNERS | 17 # * owners: A list of individuals who have approval authority on the 20 # * reviewers: A list of individuals who have requested review notification
|
/openbmc/pyphosphor/ |
H A D | OWNERS | 17 # * owners: A list of individuals who have approval authority on the 20 # * reviewers: A list of individuals who have requested review notification
|