Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus

* git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus:
cpumask: mm_cpumask for accessing the struct mm_struct's cpu_vm_mask.
cpumask: tsk_cpumask for accessing the struct task_struct's cpus_allowed.

+6
+3
include/linux/mm_types.h
··· 276 276 #endif 277 277 }; 278 278 279 + /* Future-safe accessor for struct mm_struct's cpu_vm_mask. */ 280 + #define mm_cpumask(mm) (&(mm)->cpu_vm_mask) 281 + 279 282 #endif /* _LINUX_MM_TYPES_H */
+3
include/linux/sched.h
··· 1419 1419 #endif 1420 1420 }; 1421 1421 1422 + /* Future-safe accessor for struct task_struct's cpus_allowed. */ 1423 + #define tsk_cpumask(tsk) (&(tsk)->cpus_allowed) 1424 + 1422 1425 /* 1423 1426 * Priority of a process goes from 0..MAX_PRIO-1, valid RT 1424 1427 * priority is 0..MAX_RT_PRIO-1, and SCHED_NORMAL/SCHED_BATCH