| /linux/block/ |
| H A D | ioprio.c | 65 SYSCALL_DEFINE3(ioprio_set, int, which, int, who, int, ioprio) in SYSCALL_DEFINE3() argument 81 if (!who) in SYSCALL_DEFINE3() 84 p = find_task_by_vpid(who); in SYSCALL_DEFINE3() 89 if (!who) in SYSCALL_DEFINE3() 92 pgrp = find_vpid(who); in SYSCALL_DEFINE3() 106 uid = make_kuid(current_user_ns(), who); in SYSCALL_DEFINE3() 109 if (!who) in SYSCALL_DEFINE3() 126 if (who) in SYSCALL_DEFINE3() 180 SYSCALL_DEFINE2(ioprio_get, int, which, int, who) in SYSCALL_DEFINE2() argument 192 if (!who) in SYSCALL_DEFINE2() [all …]
|
| /linux/fs/ |
| H A D | super.c | 42 static int thaw_super_locked(struct super_block *sb, enum freeze_holder who, 1900 static inline int freeze_inc(struct super_block *sb, enum freeze_holder who) in freeze_inc() argument 1902 WARN_ON_ONCE((who & ~FREEZE_FLAGS)); in freeze_inc() 1903 WARN_ON_ONCE(hweight32(who & FREEZE_HOLDERS) > 1); in freeze_inc() 1905 if (who & FREEZE_HOLDER_KERNEL) in freeze_inc() 1907 if (who & FREEZE_HOLDER_USERSPACE) in freeze_inc() 1912 static inline int freeze_dec(struct super_block *sb, enum freeze_holder who) in freeze_dec() argument 1914 WARN_ON_ONCE((who & ~FREEZE_FLAGS)); in freeze_dec() 1915 WARN_ON_ONCE(hweight32(who & FREEZE_HOLDERS) > 1); in freeze_dec() 1917 if ((who & FREEZE_HOLDER_KERNEL) && sb->s_writers.freeze_kcount) in freeze_dec() [all …]
|
| /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)" : "",
|
| /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 | 3.Early-stage.rst | 139 MAINTAINERS file may, in fact, not be the person who is actually acting in 140 that role currently. So, when there is doubt about who to contact, a 141 useful trick is to use git (and "git log" in particular) to see who is 142 currently active within the subsystem of interest. Look at who is writing 143 patches, and who, if anybody, is attaching Signed-off-by lines to those 144 patches. Those are the people who will be best placed to help with a new 156 command line, it will list the maintainers who should probably receive 161 developers who have no real interest in the code you are modifying.
|
| H A D | conclave.rst | 11 others who can do that work when the need arises. 23 as possible in a way that maximizes the number of people who can
|
| H A D | management-style.rst | 7 on who you ask) management style for the linux kernel. It's meant to 18 lead persons, not the people who do traditional management inside 111 This preemptive admission of incompetence might also make the people who 176 trust somebody who is so clearly hiding their true character. 196 Suck up to them, because they are the people who will make your job 225 person who lost their whole 36GB porn-collection because of your 229 Then make the developer who really screwed up (if you can find them) know 232 importantly, they're also likely the person who can fix it. Because, let's 237 glory, because you're the one who gets to say "I screwed up". And if 265 without making it painful to the recipient, who just thinks you're being
|
| H A D | embargoed-hardware-issues.rst | 35 is a private list of security officers who will help you coordinate a fix 47 vendor, we welcome contact from researchers or individuals who have 98 The hardware security team identifies the developers (domain experts) who 140 developers (domain experts) who should be informed initially about the 154 entities who have already been, or should be, informed about the issue. 160 - The disclosed entities can be contacted to name experts who should 163 - If an expert who is required to handle an issue is employed by a listed 226 to any individual who is not a member of the response team nor to any other 284 organizations, who can answer questions about or provide guidance on the 342 Disclosed parties who want to participate in the communication send a list
|
| H A D | development-process.rst | 9 accessible to those who are not intimately familiar with Linux kernel
|
| H A D | 2.Process.rst | 54 allowed, but such occasions are rare; developers who try to merge new 209 There is exactly one person who can merge patches into the mainline kernel 220 who has overall responsibility for the code within that subsystem. These 222 of the kernel they manage; they are the ones who will (usually) accept a 362 Among the kernel developers who do not use git, the most popular choice is 388 represent a potential hazard to developers, who risk getting buried under a 405 development community comes together as a whole; developers who avoid this 417 without changing the email subject line) and the people who are 431 questions. Some developers can get impatient with people who clearly 444 beginning developers to go wrong. Somebody who asks a networking-related [all …]
|
| /linux/kernel/ |
| H A D | sys.c | 259 SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval) in SYSCALL_DEFINE3() argument 281 if (who) in SYSCALL_DEFINE3() 282 p = find_task_by_vpid(who); in SYSCALL_DEFINE3() 289 if (who) in SYSCALL_DEFINE3() 290 pgrp = find_vpid(who); in SYSCALL_DEFINE3() 300 uid = make_kuid(cred->user_ns, who); in SYSCALL_DEFINE3() 302 if (!who) in SYSCALL_DEFINE3() 329 SYSCALL_DEFINE2(getpriority, int, which, int, who) in SYSCALL_DEFINE2() argument 344 if (who) in SYSCALL_DEFINE2() 345 p = find_task_by_vpid(who); in SYSCALL_DEFINE2() [all …]
|
| /linux/Documentation/block/ |
| H A D | ioprio.rst | 86 static inline int ioprio_set(int which, int who, int ioprio) 88 return syscall(__NR_ioprio_set, which, who, ioprio); 91 static inline int ioprio_get(int which, int who) 93 return syscall(__NR_ioprio_get, which, who);
|
| /linux/include/linux/fs/ |
| H A D | super.h | 233 int freeze_super(struct super_block *super, enum freeze_holder who, 235 int thaw_super(struct super_block *super, enum freeze_holder who,
|
| H A D | super_types.h | 92 int (*freeze_super)(struct super_block *sb, enum freeze_holder who, 95 int (*thaw_super)(struct super_block *sb, enum freeze_holder who,
|
| /linux/include/linux/ |
| H A D | resource.h | 10 void getrusage(struct task_struct *p, int who, struct rusage *ru);
|
| /linux/fs/nfsd/ |
| H A D | acl.h | 46 __be32 nfs4_acl_write_who(struct xdr_stream *xdr, int who);
|
| /linux/Documentation/admin-guide/sysctl/ |
| H A D | user.rst | 25 the user in the user namespace who created the object and 29 who created user namespaces the creation of the object happens
|
| /linux/Documentation/virt/kvm/s390/ |
| H A D | s390-pv-dump.rst | 16 confidentiality until the dump is in the hands of the VM owner who 19 The confidentiality of the VM dump is ensured by the Ultravisor who
|
| /linux/Documentation/scsi/ |
| H A D | FlashPoint.rst | 93 caused grief for many people who inadvertently purchased a system expecting 100 made available, and that Linux users who mistakenly ordered systems with 104 assist the people who initially purchased a FlashPoint for a supported 105 operating system and then later decided to run Linux, or those who had 125 are people at BusLogic who would rather not release the details of the
|
| /linux/Documentation/driver-api/ |
| H A D | wbrf.rst | 26 Producer: such component who can produce high-powered radio frequency 27 Consumer: such component who can adjust its in-use frequency in
|
| /linux/arch/sparc/kernel/ |
| H A D | windows.c | 113 void try_to_clear_window_buffer(struct pt_regs *regs, int who) in try_to_clear_window_buffer() argument
|
| /linux/arch/alpha/kernel/ |
| H A D | osf_sys.c | 1076 SYSCALL_DEFINE2(osf_getrusage, int, who, struct rusage32 __user *, ru) in SYSCALL_DEFINE2() argument 1082 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN) in SYSCALL_DEFINE2() 1086 switch (who) { in SYSCALL_DEFINE2() 1268 SYSCALL_DEFINE2(osf_getpriority, int, which, int, who) in SYSCALL_DEFINE2() argument 1270 int prio = sys_getpriority(which, who); in SYSCALL_DEFINE2()
|
| /linux/tools/testing/selftests/net/mptcp/ |
| H A D | mptcp_sockopt.sh | 246 local who=$2 251 echo "Created $name (size $size KB) containing data sent by $who"
|
| /linux/Documentation/filesystems/nfs/ |
| H A D | nfsd-maintainer-entry-profile.rst | 495 - **Contributor** : Anyone who submits a code change, bug fix, 499 - **Outside Contributor** : A contributor who is not a regular actor 500 in the Linux NFS community. This can mean someone who contributes 501 to other parts of the kernel, or someone who just noticed a 504 - **Reviewer** : Someone who is named in the MAINTAINERS file as a 505 reviewer is an area expert who can request changes to contributed 508 - **External Reviewer** : Someone who is not named in the 509 MAINTAINERS file as a reviewer, but who is an area expert. 511 security, or persistent storage expertise, or developers who 524 - **Bug Triager** : Someone who is a first responder to bug reports
|
| /linux/drivers/iio/accel/ |
| H A D | kionix-kx022a.c | 1176 .who = KX022A_REG_WHO, 1204 .who = KX132_REG_WHO, 1233 .who = KX132_REG_WHO, 1269 .who = KX022A_REG_WHO, 1297 .who = KX022A_REG_WHO, 1354 ret = regmap_read(regmap, chip_info->who, &chip_id); in kx022a_probe_internal()
|