android_kernel_xiaomi_sm8350/include/linux
Andrew Morgan 72c2d5823f V3 file capabilities: alter behavior of cap_setpcap
The non-filesystem capability meaning of CAP_SETPCAP is that a process, p1,
can change the capabilities of another process, p2.  This is not the
meaning that was intended for this capability at all, and this
implementation came about purely because, without filesystem capabilities,
there was no way to use capabilities without one process bestowing them on
another.

Since we now have a filesystem support for capabilities we can fix the
implementation of CAP_SETPCAP.

The most significant thing about this change is that, with it in effect, no
process can set the capabilities of another process.

The capabilities of a program are set via the capability convolution
rules:

   pI(post-exec) = pI(pre-exec)
   pP(post-exec) = (X(aka cap_bset) & fP) | (pI(post-exec) & fI)
   pE(post-exec) = fE ? pP(post-exec) : 0

at exec() time.  As such, the only influence the pre-exec() program can
have on the post-exec() program's capabilities are through the pI
capability set.

The correct implementation for CAP_SETPCAP (and that enabled by this patch)
is that it can be used to add extra pI capabilities to the current process
- to be picked up by subsequent exec()s when the above convolution rules
are applied.

Here is how it works:

Let's say we have a process, p. It has capability sets, pE, pP and pI.
Generally, p, can change the value of its own pI to pI' where

   (pI' & ~pI) & ~pP = 0.

That is, the only new things in pI' that were not present in pI need to
be present in pP.

The role of CAP_SETPCAP is basically to permit changes to pI beyond
the above:

   if (pE & CAP_SETPCAP) {
      pI' = anything; /* ie., even (pI' & ~pI) & ~pP != 0  */
   }

This capability is useful for things like login, which (say, via
pam_cap) might want to raise certain inheritable capabilities for use
by the children of the logged-in user's shell, but those capabilities
are not useful to or needed by the login program itself.

One such use might be to limit who can run ping. You set the
capabilities of the 'ping' program to be "= cap_net_raw+i", and then
only shells that have (pI & CAP_NET_RAW) will be able to run
it. Without CAP_SETPCAP implemented as described above, login(pam_cap)
would have to also have (pP & CAP_NET_RAW) in order to raise this
capability and pass it on through the inheritable set.

Signed-off-by: Andrew Morgan <morgan@kernel.org>
Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
Cc: Stephen Smalley <sds@tycho.nsa.gov>
Cc: James Morris <jmorris@namei.org>
Cc: Casey Schaufler <casey@schaufler-ca.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-18 14:37:24 -07:00
..
amba
byteorder
dvb
hdlc
isdn
lockd
mlx4
mmc net: libertas sdio driver 2007-10-17 22:51:13 +02:00
mtd [MTD] [NOR] fix ctrl-alt-del can't reboot for intel flash bug 2007-10-13 14:36:18 +01:00
netfilter [NETFILTER]: Replace sk_buff ** with sk_buff * 2007-10-15 12:26:29 -07:00
netfilter_arp [NETFILTER]: Replace sk_buff ** with sk_buff * 2007-10-15 12:26:29 -07:00
netfilter_bridge [NETFILTER]: Replace sk_buff ** with sk_buff * 2007-10-15 12:26:29 -07:00
netfilter_ipv4 [NETFILTER]: Replace sk_buff ** with sk_buff * 2007-10-15 12:26:29 -07:00
netfilter_ipv6 [NETFILTER]: Replace sk_buff ** with sk_buff * 2007-10-15 12:26:29 -07:00
nfsd fs/nfsd/export.c: make 3 functions static 2007-10-16 09:43:10 -07:00
raid bitmap.h: remove dead artifacts 2007-10-17 08:43:03 -07:00
rtc
spi Merge branch 'linus' of master.kernel.org:/pub/scm/linux/kernel/git/perex/alsa 2007-10-16 10:13:38 -07:00
ssb
sunrpc Merge git://git.linux-nfs.org/pub/linux/nfs-2.6 2007-10-15 10:47:35 -07:00
tc_act
tc_ematch
usb docbook: fix usb content 2007-10-15 17:56:36 -07:00
8250_pci.h
a.out.h
ac97_codec.h
acct.h
acpi_pmtmr.h
acpi.h
adb.h
adfs_fs_i.h
adfs_fs_sb.h
adfs_fs.h
aer.h
affs_hardblocks.h
agp_backend.h
agpgart.h long vs. unsigned long - low-hanging fruits in drivers 2007-10-14 12:41:51 -07:00
aio_abi.h
aio.h Remove struct task_struct::io_wait 2007-10-18 14:37:20 -07:00
amifd.h
amifdreg.h
amigaffs.h
anon_inodes.h
apm_bios.h
apm-emulation.h
arcdevice.h
arcfb.h
async_tx.h
ata.h libata: add human-readable error value decoding 2007-10-12 14:55:45 -04:00
atalk.h
atm_eni.h
atm_he.h
atm_idt77105.h
atm_nicstar.h
atm_suni.h
atm_tcp.h
atm_zatm.h
atm.h
atmapi.h
atmarp.h
atmbr2684.h
atmclip.h
atmdev.h
atmel_pdc.h
atmel-ssc.h Driver for the Atmel on-chip SSC on AT32AP and AT91 2007-10-17 08:42:47 -07:00
atmioc.h
atmlec.h
atmmpc.h
atmppp.h
atmsap.h
atmsvc.h
attribute_container.h
audit.h
auto_fs4.h
auto_fs.h
auxvec.h increase AT_VECTOR_SIZE to terminate saved_auxv properly 2007-10-17 08:43:00 -07:00
ax25.h
b1lli.h
b1pcmcia.h
backing-dev.h mm: per device dirty threshold 2007-10-17 08:42:45 -07:00
backlight.h
baycom.h
bcd.h
bfs_fs.h
binfmts.h Implement file posix capabilities 2007-10-17 08:43:07 -07:00
bio.h block: Initial support for data-less (or empty) barrier support 2007-10-16 11:03:56 +02:00
bit_spinlock.h
bitmap.h
bitops.h I/OAT: Add support for MSI and MSI-X 2007-10-16 09:43:09 -07:00
bitrev.h
blkdev.h block: convert blkdev_issue_flush() to use empty barriers 2007-10-16 11:05:02 +02:00
blkpg.h
blktrace_api.h
blockgroup_lock.h
bootmem.h
bottom_half.h
bpqether.h
bsg.h
buffer_head.h fs: restore nobh 2007-10-16 09:42:58 -07:00
bug.h
cache.h
calc64.h
capability.h V3 file capabilities: alter behavior of cap_setpcap 2007-10-18 14:37:24 -07:00
capi.h
cciss_ioctl.h
cd1400.h
cdev.h
cdk.h
cdrom.h
cfag12864b.h
chio.h
circ_buf.h
clk.h
clockchips.h clockevents: introduce force broadcast notifier 2007-10-14 22:57:45 +02:00
clocksource.h Fix discrepancy between VDSO based gettimeofday() and sys_gettimeofday(). 2007-10-18 14:37:20 -07:00
cm4000_cs.h
cn_proc.h
coda_cache.h
coda_fs_i.h
coda_linux.h
coda_psdev.h
coda.h
coff.h
com20020.h
compat.h
compiler-gcc3.h Force erroneous inclusions of compiler-*.h files to be errors 2007-10-17 08:42:47 -07:00
compiler-gcc4.h Force erroneous inclusions of compiler-*.h files to be errors 2007-10-17 08:42:47 -07:00
compiler-gcc.h Force erroneous inclusions of compiler-*.h files to be errors 2007-10-17 08:42:47 -07:00
compiler-intel.h Force erroneous inclusions of compiler-*.h files to be errors 2007-10-17 08:42:47 -07:00
compiler.h
completion.h
comstats.h
concap.h
configfs.h
connector.h uvesafb: add connector entries 2007-10-16 09:43:13 -07:00
console_struct.h vt/vgacon: Check if screen resize request comes from userspace 2007-10-16 09:43:20 -07:00
console.h serial: turn serial console suspend a boot rather than compile time option 2007-10-18 14:37:19 -07:00
consolemap.h unicode diacritics support 2007-10-17 08:42:52 -07:00
const.h
cpu.h
cpufreq.h
cpumask.h
cpuset.h oom: compare cpuset mems_allowed instead of exclusive ancestors 2007-10-17 08:42:46 -07:00
cramfs_fs_sb.h
cramfs_fs.h cramfs: error message about endianess 2007-10-17 08:42:53 -07:00
crash_dump.h
crc7.h
crc16.h
crc32.h
crc32c.h
crc-ccitt.h
crc-itu-t.h
crypto.h
cryptohash.h
ctype.h
cuda.h
cyclades.h
cyclomx.h
cycx_cfm.h
cycx_drv.h
cycx_x25.h
dca.h DCA: Add Direct Cache Access driver 2007-10-16 09:43:09 -07:00
dcache.h
dccp.h
dcookies.h
debug_locks.h
debugfs.h debugfs: helper for decimal challenged 2007-10-12 14:51:03 -07:00
delay.h
delayacct.h
device-mapper.h
device.h Driver core: change add_uevent_var to use a struct 2007-10-12 14:51:01 -07:00
devpts_fs.h
dio.h
dirent.h
display.h
dlm_device.h
dlm_netlink.h
dlm.h
dm9000.h
dm-ioctl.h
dma-mapping.h stop using DMA_xxBIT_MASK 2007-10-18 14:37:21 -07:00
dmaengine.h
dmapool.h
dmi.h
dn.h
dnotify.h
dqblk_v1.h
dqblk_v2.h
dqblk_xfs.h
ds1wm.h
ds1286.h
ds17287rtc.h
dtlk.h
edac.h
edd.h
eeprom_93cx6.h
efi.h
efs_dir.h
efs_fs_i.h
efs_fs_sb.h
efs_fs.h
efs_vh.h
eisa.h
elevator.h
elf-em.h
elf-fdpic.h
elf.h increase AT_VECTOR_SIZE to terminate saved_auxv properly 2007-10-17 08:43:00 -07:00
elfcore-compat.h Add linux/elfcore-compat.h 2007-10-17 08:42:51 -07:00
elfcore.h
elfnote.h
err.h
errno.h
errqueue.h
etherdevice.h
ethtool.h
eventfd.h
eventpoll.h
exportfs.h
ext2_fs_sb.h ext2 reservations 2007-10-17 08:43:02 -07:00
ext2_fs.h ext2 reservations 2007-10-17 08:43:02 -07:00
ext3_fs_i.h
ext3_fs_sb.h ext3: show all mount options 2007-10-17 08:42:48 -07:00
ext3_fs.h ext3: remove #ifdef CONFIG_EXT3_INDEX 2007-10-17 08:43:01 -07:00
ext3_jbd.h
ext4_fs_extents.h ext4: Convert ext4_extent_idx.ei_leaf to ext4_extent_idx.ei_leaf_lo 2007-10-17 18:50:03 -04:00
ext4_fs_i.h ext4: Remove (partial, never completed) fragment support 2007-10-17 18:49:59 -04:00
ext4_fs_sb.h ext4: Remove (partial, never completed) fragment support 2007-10-17 18:49:59 -04:00
ext4_fs.h ext4: Convert s_r_blocks_count and s_free_blocks_count 2007-10-17 18:50:02 -04:00
ext4_jbd2.h jbd2: JBD_XXX to JBD2_XXX naming cleanup 2007-10-17 18:49:58 -04:00
fadvise.h
falloc.h
fault-inject.h
fb.h fb: move and rename extern declaration for global_mode_option 2007-10-16 09:43:22 -07:00
fcdevice.h
fcntl.h F_DUPFD_CLOEXEC implementation 2007-10-17 08:43:01 -07:00
fd1772.h
fd.h
fddidevice.h
fdreg.h
fib_rules.h
file.h r/o bind mounts: filesystem helpers for custom 'struct file's 2007-10-17 08:43:04 -07:00
filter.h
firewire-cdev.h firewire: adopt read cycle timer ABI from raw1394 2007-10-17 00:00:08 +02:00
firewire-constants.h
firmware.h
flat.h
font.h
freezer.h freezer: introduce freezer-friendly waiting macros 2007-10-18 14:37:19 -07:00
fs_enet_pd.h
fs_stack.h
fs_struct.h
fs_uart_pd.h
fs.h Implement file posix capabilities 2007-10-17 08:43:07 -07:00
fsl_devices.h
fsnotify.h
fuse.h
futex.h
gameport.h
gen_stats.h
genalloc.h
generic_acl.h
generic_serial.h
genetlink.h
genhd.h
getcpu.h
gfp.h Print out statistics in relation to fragmentation avoidance to /proc/pagetypeinfo 2007-10-16 09:43:00 -07:00
gfs2_ondisk.h
gigaset_dev.h
gpio_keys.h
gpio_mouse.h
hardirq.h
harrier_defs.h
hash.h
hayesesp.h
hdlc.h
hdlcdrv.h long vs. unsigned long - low-hanging fruits in drivers 2007-10-14 12:41:51 -07:00
hdpu_features.h
hdreg.h
hdsmart.h
hid-debug.h
hid.h HID: fix HIDIOCGRDESC memory access in hidraw 2007-10-15 08:12:00 -07:00
hiddev.h
hidraw.h HID: fix HIDIOCGRDESC memory access in hidraw 2007-10-15 08:12:00 -07:00
highmem.h
highuid.h
hil_mlc.h
hil.h
hippidevice.h
hp_sdc.h
hpet.h
hrtimer.h
htirq.h
hugetlb.h hugetlb: Add hugetlb_dynamic_pool sysctl 2007-10-16 09:43:02 -07:00
hw_random.h
hwmon-sysfs.h
hwmon-vid.h
hwmon.h
hysdn_if.h
i2c-algo-bit.h
i2c-algo-pca.h
i2c-algo-pcf.h
i2c-algo-sgi.h
i2c-dev.h i2c: Move i2c-dev interfaces to i2c-dev.h 2007-10-13 23:56:32 +02:00
i2c-gpio.h
i2c-id.h [ALSA] ASoC CS4270 codec device driver 2007-10-16 15:58:19 +02:00
i2c-ocores.h
i2c-pnx.h
i2c-pxa.h
i2c.h i2c: Rename the PEC functionality bit 2007-10-13 23:56:33 +02:00
i2o-dev.h
i2o.h i2o: sg chaining support 2007-10-16 11:21:00 +02:00
i8k.h
ibmtr.h
icmp.h
icmpv6.h
ide.h ide: add "hdx=nodma" kernel parameter 2007-10-16 22:29:58 +02:00
idr.h
ieee80211.h
if_addr.h
if_arcnet.h
if_arp.h
if_bonding.h
if_bridge.h [NETFILTER]: Replace sk_buff ** with sk_buff * 2007-10-15 12:26:29 -07:00
if_cablemodem.h
if_ec.h
if_eql.h
if_ether.h
if_fc.h
if_fddi.h include linux/types.h in if_fddi.h 2007-10-17 08:42:52 -07:00
if_frad.h
if_hippi.h
if_infiniband.h
if_link.h
if_ltalk.h
if_macvlan.h
if_packet.h
if_plip.h
if_ppp.h
if_pppol2tp.h
if_pppox.h
if_shaper.h
if_slip.h
if_strip.h
if_tr.h
if_tun.h
if_tunnel.h
if_vlan.h
if_wanpipe.h
if.h
igmp.h
in6.h
in_route.h
in.h
inet_diag.h
inet_lro.h fix endianness bug in inet_lro 2007-10-14 12:41:52 -07:00
inet.h
inetdevice.h
init_task.h Remove unused member from nsproxy 2007-10-17 08:42:59 -07:00
init.h store __setup_str_* in a more compact way 2007-10-17 08:42:56 -07:00
initrd.h
inotify.h
input-polldev.h
input.h Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input 2007-10-15 13:41:39 -07:00
interrupt.h Completely remove deprecated IRQ flags (SA_*) 2007-10-17 08:43:00 -07:00
io.h
ioc3.h
ioc4.h
ioctl.h
ioport.h memory unplug: memory hotplug cleanup 2007-10-16 09:43:01 -07:00
ioprio.h
ip6_tunnel.h
ip.h
ipc.h remove include/asm-*/ipc.h 2007-10-17 08:42:55 -07:00
ipmi_msgdefs.h
ipmi_smi.h
ipmi.h
ipsec.h
ipv6_route.h
ipv6.h
ipx.h
irda.h
irq_cpustat.h
irq.h
irqflags.h
irqreturn.h
isa.h
isapnp.h
isdn_divertif.h
isdn_ppp.h
isdn.h use mutex instead of semaphore in isdn subsystem common functions 2007-10-16 09:43:10 -07:00
isdnif.h
isicom.h
iso_fs.h
istallion.h
ivtv.h
ivtvfb.h
ixjuser.h
jbd2.h jbd2: JBD_XXX to JBD2_XXX naming cleanup 2007-10-17 18:49:58 -04:00
jbd.h JBD: replace jbd_kmalloc with kmalloc directly 2007-10-17 18:49:57 -04:00
jffs2.h
jhash.h
jiffies.h slow down printk during boot 2007-10-16 09:42:49 -07:00
journal-head.h
joystick.h
kallsyms.h
kbd_diacr.h unicode diacritics support 2007-10-17 08:42:52 -07:00
kbd_kern.h
Kbuild remove consolemap.h from header exports 2007-10-17 08:42:52 -07:00
kd.h unicode diacritics support 2007-10-17 08:42:52 -07:00
kdebug.h
kdev_t.h
kernel_stat.h sched: guest CPU accounting: add guest-CPU /proc/stat field 2007-10-15 17:00:19 +02:00
kernel.h printk: add KERN_CONT annotation 2007-10-17 08:43:01 -07:00
kernelcapi.h
kexec.h add-vmcore: add a prefix "VMCOREINFO_" to the vmcoreinfo macros 2007-10-17 08:42:54 -07:00
key-type.h KEYS: Make request_key() and co fundamentally asynchronous 2007-10-17 08:42:57 -07:00
key-ui.h
key.h KEYS: Make request_key() and co fundamentally asynchronous 2007-10-17 08:42:57 -07:00
keyboard.h Merge master.kernel.org:/pub/scm/linux/kernel/git/torvalds/linux-2.6 2007-10-12 21:27:47 -04:00
keyctl.h
kfifo.h
klist.h
kmalloc_sizes.h
kmod.h
kobj_map.h
kobject.h kobject: update the copyrights 2007-10-12 14:51:12 -07:00
kprobes.h kprobes: support kretprobe blacklist 2007-10-16 09:43:10 -07:00
kref.h
ks0108.h
kthread.h
ktime.h
kvm_para.h
kvm.h KVM: Replace enum by #define 2007-10-13 10:18:29 +02:00
lapb.h
latency.h
lcd.h
leds.h
lguest_bus.h
lguest_launcher.h
lguest.h
libata.h libata: convert to using sg helpers 2007-10-16 11:14:12 +02:00
libps2.h
license.h
limits.h
linkage.h
linux_logo.h
list.h shrink_dcache_sb speedup 2007-10-17 08:42:57 -07:00
llc.h
lm_interface.h
lock_dlm_plock.h
lockdep.h
log2.h Add a "rounddown_pow_of_two" routine to log2.h 2007-10-17 08:42:56 -07:00
loop.h
lp.h
lzo.h
m41t00.h
m48t86.h
magic.h change inotifyfs magic as the same magic is used for futexfs 2007-10-17 08:43:00 -07:00
major.h
maple.h
matroxfb.h
mbcache.h
mc6821.h
mc146818rtc.h
mca-legacy.h
mca.h
mdio-bitbang.h
memory_hotplug.h fix memory hot remove not configured case. 2007-10-16 09:43:02 -07:00
memory.h
mempolicy.h mm/mempolicy.c: cleanups 2007-10-16 09:43:03 -07:00
mempool.h
meye.h
migrate.h
mii.h
minix_fs.h
miscdevice.h
mm_inline.h
mm_types.h increase AT_VECTOR_SIZE to terminate saved_auxv properly 2007-10-17 08:43:00 -07:00
mm.h Drop some headers from mm.h 2007-10-17 08:42:55 -07:00
mman.h
mmtimer.h
mmzone.h mm: test and set zone reclaim lock before starting reclaim 2007-10-17 08:42:46 -07:00
mnt_namespace.h
mod_devicetable.h i2c: Kill struct i2c_device_id 2007-10-13 23:56:29 +02:00
module.h Add /sys/module/name/notes 2007-10-17 08:42:50 -07:00
moduleloader.h
moduleparam.h constify string/array kparam tracking structures 2007-10-17 08:42:56 -07:00
mount.h
mpage.h
mqueue.h
mroute.h
msdos_fs.h
msg.h
msi.h
mtio.h
mutex-debug.h
mutex.h Mutex documentation is unclear about software interrupts, tasklets and timers 2007-10-17 08:42:57 -07:00
mv643xx.h
n_r3964.h
namei.h partially fix up the lookup_one_noperm mess 2007-10-17 08:42:44 -07:00
nbd.h NBD: allow hung network I/O to be cancelled 2007-10-17 08:42:55 -07:00
ncp_fs_i.h
ncp_fs_sb.h
ncp_fs.h
ncp_mount.h
ncp_no.h
ncp.h
neighbour.h
net.h
netdevice.h net core: fix kernel-doc for new function parameters 2007-10-13 09:52:26 -07:00
netfilter_arp.h
netfilter_bridge.h
netfilter_decnet.h
netfilter_ipv4.h [NETFILTER]: Replace sk_buff ** with sk_buff * 2007-10-15 12:26:29 -07:00
netfilter_ipv6.h
netfilter.h [NETFILTER]: Replace sk_buff ** with sk_buff * 2007-10-15 12:26:29 -07:00
netlink.h
netpoll.h
netrom.h
nfs2.h
nfs3.h
nfs4_acl.h
nfs4_mount.h
nfs4.h
nfs_fs_i.h
nfs_fs_sb.h
nfs_fs.h
nfs_idmap.h
nfs_mount.h
nfs_page.h
nfs_xdr.h
nfs.h
nfsacl.h
nfsd_idmap.h
nl80211.h
nls.h add consts where appropriate in fs/nls/* 2007-10-17 08:42:58 -07:00
nmi.h
node.h
nodemask.h Memoryless nodes: Add N_CPU node state 2007-10-16 09:42:58 -07:00
notifier.h
nsc_gpio.h
nsproxy.h Remove unused member from nsproxy 2007-10-17 08:42:59 -07:00
nubus.h
numa.h
nvram.h
of_device.h [POWERPC] Move of_device allocation into of_device.[ch] 2007-10-17 22:30:07 +10:00
of_platform.h
of.h
oom.h oom: prevent including sched.h in header file 2007-10-17 08:42:46 -07:00
oprofile.h
page-flags.h
page-isolation.h memory unplug: page isolation 2007-10-16 09:43:02 -07:00
pageblock-flags.h memory unplug: page isolation 2007-10-16 09:43:02 -07:00
pagemap.h fs: introduce write_begin, write_end, and perform_write aops 2007-10-16 09:42:55 -07:00
pagevec.h
param.h
parport_pc.h
parport.h sysctl: parport remove binary paths 2007-10-18 14:37:23 -07:00
parser.h
pata_platform.h
patchkey.h
pci_hotplug.h
pci_ids.h I/OAT: New device ids 2007-10-16 09:43:09 -07:00
pci_regs.h PCI: modify PCI bridge control ISA flag for clarity 2007-10-12 15:03:18 -07:00
pci-acpi.h
pci.h PCI: Add 'nodomains' boot option, and pci_domains_supported global 2007-10-12 15:03:18 -07:00
pcieport_if.h
pda_power.h
percpu_counter.h lib: percpu_counter_init_irq 2007-10-17 08:42:44 -07:00
percpu.h
personality.h
pfkeyv2.h
pfn.h
pg.h
phantom.h
phonedev.h
phy_fixed.h
phy.h
pid_namespace.h
pid.h
pipe_fs_i.h
pkt_cls.h
pkt_sched.h
pktcdvd.h
platform_device.h Driver core: Make platform_device.id an int 2007-10-12 14:51:07 -07:00
plist.h
pm_legacy.h
pm.h PM: Move definition of struct pm_ops to suspend.h 2007-10-18 14:37:18 -07:00
pmu.h
pnp.h PNP: remove null pointer checks 2007-10-17 08:43:04 -07:00
pnpbios.h
poison.h jbd2: JBD_XXX to JBD2_XXX naming cleanup 2007-10-17 18:49:58 -04:00
poll.h
posix_acl_xattr.h
posix_acl.h
posix_types.h
posix-timers.h
power_supply.h
ppdev.h
ppp_channel.h
ppp_defs.h
ppp-comp.h
prctl.h
preempt.h
prefetch.h
prio_tree.h
proc_fs.h
profile.h make kernel/profile.c:time_hook static 2007-10-17 08:42:55 -07:00
proportions.h lib: floating proportions 2007-10-17 08:42:45 -07:00
ps2esdi.h
ptrace.h
qnx4_fs.h
qnxtypes.h
quicklist.h
quota.h quota: send messages via netlink 2007-10-17 08:42:56 -07:00
quotaio_v1.h
quotaio_v2.h
quotaops.h
radeonfb.h
radix-tree.h radix-tree: use indirect bit 2007-10-16 09:42:53 -07:00
raid_class.h
ramfs.h
random.h
raw.h
rbtree.h
rcupdate.h Immunize rcu_dereference() against crazy compiler writers 2007-10-17 08:42:46 -07:00
reboot.h
reciprocal_div.h
reiserfs_acl.h
reiserfs_fs_i.h
reiserfs_fs_sb.h more low-hanging fruits - kernel, fs, lib signedness 2007-10-14 12:41:52 -07:00
reiserfs_fs.h fs/reiserfs/: cleanups 2007-10-17 08:42:46 -07:00
reiserfs_xattr.h
relay.h
resource.h
resume-trace.h
rfkill.h
rio_drv.h
rio_ids.h
rio_regs.h
rio.h
rmap.h
romfs_fs.h
root_dev.h
rose.h
route.h
rslib.h
rtc-v3020.h
rtc.h
rtmutex.h
rtnetlink.h
rwsem-spinlock.h
rwsem.h
rxrpc.h
sc26198.h
scatterlist.h Add chained sg support to linux/scatterlist.h 2007-10-16 11:08:51 +02:00
scc.h
sched.h Remove struct task_struct::io_wait 2007-10-18 14:37:20 -07:00
screen_info.h Remove magic macros for screen_info structure members 2007-10-16 22:57:17 -07:00
sctp.h
scx200_gpio.h long vs. unsigned long - low-hanging fruits in drivers 2007-10-14 12:41:51 -07:00
scx200.h
sdla.h
seccomp.h
securebits.h
security.h V3 file capabilities: alter behavior of cap_setpcap 2007-10-18 14:37:24 -07:00
selection.h vt: Fix warnings in selection.h 2007-10-16 09:43:17 -07:00
selinux_netlink.h
selinux.h
sem.h
seq_file.h Fix f_version type: should be u64 instead of unsigned long 2007-10-17 08:42:53 -07:00
seqlock.h
serial167.h
serial_8250.h
serial_core.h wake up from a serial port 2007-10-16 09:42:50 -07:00
serial_pnx8xxx.h
serial_reg.h
serial.h
serialP.h
serio.h
shm.h unexport asm/shmparam.h 2007-10-17 08:42:47 -07:00
shmem_fs.h
signal.h
signalfd.h rename signalfd_siginfo fields 2007-10-17 08:43:01 -07:00
skbuff.h Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6 2007-10-15 14:06:58 -07:00
slab_def.h
slab.h Slab API: remove useless ctor parameter and reorder parameters 2007-10-17 08:42:45 -07:00
slob_def.h
slub_def.h Slab API: remove useless ctor parameter and reorder parameters 2007-10-17 08:42:45 -07:00
sm501-regs.h sm501fb: Ensure panel interface is not tristated when setup 2007-10-16 09:43:14 -07:00
sm501.h
smb_fs_i.h
smb_fs_sb.h
smb_fs.h
smb_mount.h
smb.h
smbno.h
smp_lock.h
smp.h
snmp.h
socket.h
sockios.h
som.h
sonet.h
sony-laptop.h
sonypi.h
sort.h
sound.h
soundcard.h
spinlock_api_smp.h
spinlock_api_up.h
spinlock_types_up.h
spinlock_types.h
spinlock_up.h
spinlock.h
splice.h
srcu.h
stacktrace.h
stallion.h long vs. unsigned long - low-hanging fruits in drivers 2007-10-14 12:41:51 -07:00
start_kernel.h
stat.h
statfs.h
stddef.h
stop_machine.h
string.h
stringify.h
superhyway.h
suspend.h Hibernation: Check if ACPI is enabled during restore in the right place 2007-10-18 14:37:20 -07:00
svga.h
swap.h oom: move prototypes to appropriate header file 2007-10-17 08:42:45 -07:00
swapops.h
synclink.h
sys.h
syscalls.h
sysctl.h sysctl: Error on bad sysctl tables 2007-10-18 14:37:23 -07:00
sysdev.h
sysfs.h sysfs: add copyrights 2007-10-12 14:51:12 -07:00
sysrq.h
sysv_fs.h
task_io_accounting_ops.h
task_io_accounting.h
taskstats_kern.h
taskstats.h
tc.h
tcp.h [TCP]: Make snd_cwnd_cnt 32-bit 2007-10-15 12:59:43 -07:00
telephony.h
termios.h
textsearch_fsm.h
textsearch.h
tfrc.h
thread_info.h
threads.h
ticable.h
tick.h
tifm.h
time.h kernel/time/timekeeping.c: cleanups 2007-10-17 08:42:53 -07:00
timer.h
timerfd.h
times.h
timex.h
tiocl.h
tipc_config.h
tipc.h
topology.h sched: enable wake-idle on CONFIG_SCHED_MC=y 2007-10-15 17:00:19 +02:00
toshiba.h
transport_class.h
trdevice.h
tsacct_kern.h
tty_driver.h
tty_flip.h
tty_ldisc.h
tty.h tty: expose new methods needed for drivers to get termios right 2007-10-17 08:42:58 -07:00
types.h
uaccess.h
udf_fs_i.h
udf_fs_sb.h
udf_fs.h
udp.h
ufs_fs.h ufs: move non-layout parts of ufs_fs.h to fs/ufs/ 2007-10-17 08:42:51 -07:00
uinput.h
uio_driver.h
uio.h
ultrasound.h
un.h
unistd.h
unwind.h
usb_usual.h
usb.h USB: skip autosuspended devices during system resume 2007-10-12 14:55:34 -07:00
usbdevice_fs.h
user_namespace.h
user.h
utime.h
uts.h
utsname.h
vermagic.h
vfs.h
via.h
video_decoder.h
video_encoder.h
video_output.h Convert from class_device to device for drivers/video 2007-10-12 14:51:04 -07:00
videodev2.h
videodev.h
videotext.h
vmalloc.h
vmstat.h
vt_buffer.h
vt_kern.h add CONFIG_VT_UNICODE 2007-10-17 08:42:56 -07:00
vt.h
wait.h
wanrouter.h
watchdog.h
wireless.h
workqueue.h
writeback.h introduce I_SYNC 2007-10-17 08:43:02 -07:00
x25.h
xattr.h
xfrm.h
xilinxfb.h
yam.h
zconf.h
zlib.h
zorro_ids.h
zorro.h
zutil.h