All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kees Cook <keescook@chromium.org>
To: linux-kernel@vger.kernel.org
Cc: Kees Cook <keescook@chromium.org>, Ralf Baechle <ralf@linux-mips.org>
Subject: [PATCH 016/193] arch/mips: remove CONFIG_EXPERIMENTAL
Date: Tue, 23 Oct 2012 13:01:29 -0700	[thread overview]
Message-ID: <1351022666-6960-17-git-send-email-keescook@chromium.org> (raw)
In-Reply-To: <1351022666-6960-1-git-send-email-keescook@chromium.org>

This config item has not carried much meaning for a while now and is
almost always enabled by default. As agreed during the Linux kernel
summit, remove it.

CC: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Kees Cook <keescook@chromium.org>
---
 arch/mips/Kconfig |   21 ++++-----------------
 1 file changed, 4 insertions(+), 17 deletions(-)

diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
index dba9390..e66c2d4 100644
--- a/arch/mips/Kconfig
+++ b/arch/mips/Kconfig
@@ -169,7 +169,7 @@ config MACH_DECSTATION
 	select SYS_HAS_CPU_R3000
 	select SYS_HAS_CPU_R4X00
 	select SYS_SUPPORTS_32BIT_KERNEL
-	select SYS_SUPPORTS_64BIT_KERNEL if EXPERIMENTAL
+	select SYS_SUPPORTS_64BIT_KERNEL
 	select SYS_SUPPORTS_LITTLE_ENDIAN
 	select SYS_SUPPORTS_128HZ
 	select SYS_SUPPORTS_256HZ
@@ -395,7 +395,6 @@ config PNX8550_STB810
 
 config PMC_MSP
 	bool "PMC-Sierra MSP chipsets"
-	depends on EXPERIMENTAL
 	select CEVT_R4K
 	select CSRC_R4K
 	select DMA_NONCOHERENT
@@ -515,8 +514,7 @@ config SGI_IP27
 	  here.
 
 config SGI_IP28
-	bool "SGI IP28 (Indigo2 R10k) (EXPERIMENTAL)"
-	depends on EXPERIMENTAL
+	bool "SGI IP28 (Indigo2 R10k)"
 	select ARC
 	select ARC64
 	select BOOT_ELF64
@@ -574,7 +572,6 @@ config SGI_IP32
 
 config SIBYTE_CRHINE
 	bool "Sibyte BCM91120C-CRhine"
-	depends on EXPERIMENTAL
 	select BOOT_ELF32
 	select DMA_COHERENT
 	select SIBYTE_BCM1120
@@ -585,7 +582,6 @@ config SIBYTE_CRHINE
 
 config SIBYTE_CARMEL
 	bool "Sibyte BCM91120x-Carmel"
-	depends on EXPERIMENTAL
 	select BOOT_ELF32
 	select DMA_COHERENT
 	select SIBYTE_BCM1120
@@ -596,7 +592,6 @@ config SIBYTE_CARMEL
 
 config SIBYTE_CRHONE
 	bool "Sibyte BCM91125C-CRhone"
-	depends on EXPERIMENTAL
 	select BOOT_ELF32
 	select DMA_COHERENT
 	select SIBYTE_BCM1125
@@ -608,7 +603,6 @@ config SIBYTE_CRHONE
 
 config SIBYTE_RHONE
 	bool "Sibyte BCM91125E-Rhone"
-	depends on EXPERIMENTAL
 	select BOOT_ELF32
 	select DMA_COHERENT
 	select SIBYTE_BCM1125H
@@ -633,7 +627,6 @@ config SIBYTE_SWARM
 
 config SIBYTE_LITTLESUR
 	bool "Sibyte BCM91250C2-LittleSur"
-	depends on EXPERIMENTAL
 	select BOOT_ELF32
 	select DMA_COHERENT
 	select HAVE_PATA_PLATFORM
@@ -647,7 +640,6 @@ config SIBYTE_LITTLESUR
 
 config SIBYTE_SENTOSA
 	bool "Sibyte BCM91250E-Sentosa"
-	depends on EXPERIMENTAL
 	select BOOT_ELF32
 	select DMA_COHERENT
 	select NR_CPUS_DEFAULT_2
@@ -799,7 +791,6 @@ config CAVIUM_OCTEON_REFERENCE_BOARD
 
 config NLM_XLR_BOARD
 	bool "Netlogic XLR/XLS based systems"
-	depends on EXPERIMENTAL
 	select BOOT_ELF32
 	select NLM_COMMON
 	select SYS_HAS_CPU_XLR
@@ -828,7 +819,6 @@ config NLM_XLR_BOARD
 
 config NLM_XLP_BOARD
 	bool "Netlogic XLP based systems"
-	depends on EXPERIMENTAL
 	select BOOT_ELF32
 	select NLM_COMMON
 	select SYS_HAS_CPU_XLP
@@ -1405,7 +1395,6 @@ config CPU_R5500
 
 config CPU_R6000
 	bool "R6000"
-	depends on EXPERIMENTAL
 	depends on SYS_HAS_CPU_R6000
 	select CPU_SUPPORTS_32BIT_KERNEL
 	help
@@ -1422,7 +1411,6 @@ config CPU_NEVADA
 
 config CPU_R8000
 	bool "R8000"
-	depends on EXPERIMENTAL
 	depends on SYS_HAS_CPU_R8000
 	select CPU_HAS_PREFETCH
 	select CPU_SUPPORTS_64BIT_KERNEL
@@ -1831,7 +1819,7 @@ config PAGE_SIZE_32KB
 
 config PAGE_SIZE_64KB
 	bool "64kB"
-	depends on EXPERIMENTAL && !CPU_R3000 && !CPU_TX39XX
+	depends on !CPU_R3000 && !CPU_TX39XX
 	help
 	  Using 64kB page size will result in higher performance kernel at
 	  the price of higher memory consumption.  This option is available on
@@ -2348,8 +2336,7 @@ config HZ
 source "kernel/Kconfig.preempt"
 
 config KEXEC
-	bool "Kexec system call (EXPERIMENTAL)"
-	depends on EXPERIMENTAL
+	bool "Kexec system call"
 	help
 	  kexec is a system call that implements the ability to shutdown your
 	  current kernel, and to start another kernel.  It is like a reboot
-- 
1.7.9.5


  parent reply	other threads:[~2012-10-23 21:16 UTC|newest]

Thread overview: 317+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-23 20:01 [PATCH 000/193] remove CONFIG_EXPERIMENTAL Kees Cook
2012-10-23 20:01 ` [PATCH 001/193] make CONFIG_EXPERIMENTAL invisible and default Kees Cook
2012-10-23 20:16   ` Greg KH
2012-10-23 20:41   ` Paul E. McKenney
2012-10-23 20:01 ` [PATCH 002/193] checkpatch: warn about using CONFIG_EXPERIMENTAL Kees Cook
2012-10-23 22:59   ` Andy Whitcroft
2012-10-23 23:18     ` Kees Cook
2012-10-23 20:01 ` [PATCH 003/193] Documentation: remove CONFIG_EXPERIMENTAL Kees Cook
2012-10-23 21:25   ` Jason Wessel
2012-10-23 20:01 ` [PATCH 004/193] Documentation/laptops: " Kees Cook
2012-10-24  0:58   ` Kumar Appaiah
2012-10-23 20:01 ` [PATCH 005/193] Documentation/networking: " Kees Cook
2012-10-23 20:01 ` [PATCH 006/193] arch/alpha: " Kees Cook
2012-10-23 20:01 ` [PATCH 007/193] arch/arm: " Kees Cook
2012-10-23 23:33   ` Russell King - ARM Linux
2012-10-23 23:40     ` Kees Cook
2012-10-23 20:01 ` [PATCH 008/193] arch/arm/mach-s3c24xx: " Kees Cook
2012-10-23 20:01 ` [PATCH 009/193] arch/blackfin: " Kees Cook
2012-10-23 20:01 ` [PATCH 010/193] arch/cris/arch-v32/drivers: " Kees Cook
2012-10-24  7:34   ` Jesper Nilsson
2012-10-23 20:01 ` [PATCH 011/193] arch/ia64: " Kees Cook
2012-10-23 21:07   ` Luck, Tony
2012-10-23 20:01 ` [PATCH 012/193] arch/ia64/kvm: " Kees Cook
2012-10-23 20:01 ` [PATCH 013/193] arch/ia64/xen: " Kees Cook
2012-10-23 20:01 ` [PATCH 014/193] arch/m68k: " Kees Cook
2012-10-28  9:18   ` Geert Uytterhoeven
2012-10-28 15:41     ` Kees Cook
2012-11-11  9:35       ` Geert Uytterhoeven
2012-10-23 20:01 ` [PATCH 015/193] arch/microblaze/platform: " Kees Cook
2012-10-23 20:01 ` Kees Cook [this message]
2012-10-23 20:01 ` [PATCH 017/193] arch/mips/jazz: " Kees Cook
2012-10-23 20:01 ` [PATCH 018/193] arch/mips/sgi-ip27: " Kees Cook
2012-10-23 20:01 ` [PATCH 019/193] arch/parisc: " Kees Cook
2012-10-23 20:01 ` [PATCH 020/193] arch/powerpc: " Kees Cook
2012-10-23 20:01 ` [PATCH 021/193] arch/powerpc/kvm: " Kees Cook
2012-10-23 20:01 ` [PATCH 022/193] arch/powerpc/platforms/85xx: " Kees Cook
2012-10-23 20:01 ` [PATCH 023/193] arch/powerpc/platforms/cell: " Kees Cook
2012-10-23 20:01 ` [PATCH 024/193] arch/powerpc/platforms/ps3: " Kees Cook
2012-10-23 20:58   ` Geoff Levand
2012-10-23 20:01 ` [PATCH 025/193] arch/s390: " Kees Cook
2012-10-23 20:01 ` [PATCH 026/193] arch/s390/kvm: " Kees Cook
2012-10-24  9:01   ` Cornelia Huck
2012-10-23 20:01 ` [PATCH 027/193] arch/sh: " Kees Cook
2012-10-26  4:28   ` Paul Mundt
2012-10-26  5:29     ` Kees Cook
2012-10-23 20:01 ` [PATCH 028/193] arch/tile/kvm: " Kees Cook
2012-10-23 20:01 ` [PATCH 029/193] arch/um: " Kees Cook
2012-10-23 20:16   ` Richard Weinberger
2012-10-23 20:01 ` [PATCH 030/193] arch/unicore32: " Kees Cook
2012-10-29  3:00   ` guanxuetao
2012-10-23 20:01 ` [PATCH 031/193] arch/x86: " Kees Cook
2012-10-24  6:03   ` Ingo Molnar
2012-10-23 20:01 ` [PATCH 032/193] arch/x86/um: " Kees Cook
2012-10-23 20:17   ` Richard Weinberger
2012-10-23 20:01 ` [PATCH 033/193] block: " Kees Cook
2012-10-23 20:30   ` Jens Axboe
2012-10-23 20:01 ` [PATCH 034/193] crypto: " Kees Cook
2012-10-23 20:10   ` David Miller
2012-10-23 20:01 ` [PATCH 035/193] drivers/acpi: " Kees Cook
2012-10-23 20:01 ` [PATCH 036/193] drivers/ata: " Kees Cook
2012-10-23 20:01 ` [PATCH 037/193] drivers/base: " Kees Cook
2012-10-23 20:01 ` [PATCH 038/193] drivers/block: " Kees Cook
2012-10-23 20:15   ` Greg Kroah-Hartman
2012-10-23 20:01 ` [PATCH 039/193] drivers/block/paride: " Kees Cook
2012-10-23 20:01 ` [PATCH 040/193] drivers/cpufreq: " Kees Cook
2012-10-23 20:01 ` [PATCH 041/193] drivers/dma: " Kees Cook
2012-10-24  3:15   ` Vinod Koul
2012-10-23 20:01 ` [PATCH 042/193] drivers/edac: " Kees Cook
2012-10-23 20:01 ` [PATCH 043/193] drivers/gpio: " Kees Cook
2012-10-24  8:00   ` Linus Walleij
2012-10-23 20:01 ` [PATCH 044/193] drivers/gpu/drm/ast: " Kees Cook
2012-10-23 20:01 ` [PATCH 045/193] drivers/gpu/drm/cirrus: " Kees Cook
2012-10-23 20:01 ` [PATCH 046/193] drivers/gpu/drm/gma500: " Kees Cook
2012-10-23 20:02 ` [PATCH 047/193] drivers/gpu/drm/mgag200: " Kees Cook
2012-10-23 20:02 ` [PATCH 048/193] drivers/gpu/drm/udl: " Kees Cook
2012-10-23 20:15   ` Greg Kroah-Hartman
2012-10-23 20:02 ` [PATCH 049/193] drivers/i2c/busses: " Kees Cook
2012-10-23 20:02 ` [PATCH 050/193] drivers/i2c/muxes: " Kees Cook
2012-10-23 20:11   ` Peter Korsgaard
2012-10-23 20:02 ` [PATCH 051/193] drivers/ide: " Kees Cook
2012-10-23 20:10   ` David Miller
2012-10-23 20:02 ` [PATCH 052/193] drivers/idle: " Kees Cook
2012-10-23 20:02 ` [PATCH 053/193] drivers/iio/dac: " Kees Cook
2012-10-23 20:02 ` [PATCH 054/193] drivers/input/keyboard: " Kees Cook
2012-10-23 20:02 ` [PATCH 055/193] drivers/input/misc: " Kees Cook
2012-10-23 20:02 ` [PATCH 056/193] drivers/iommu: " Kees Cook
2012-10-23 20:02 ` [PATCH 057/193] drivers/isdn/hisax: " Kees Cook
2012-10-23 20:02 ` [PATCH 058/193] drivers/leds: " Kees Cook
2012-10-23 20:02 ` [PATCH 059/193] drivers/lguest: " Kees Cook
2012-10-23 20:02 ` [PATCH 060/193] drivers/macintosh: " Kees Cook
2012-10-23 20:02 ` [PATCH 061/193] drivers/md: " Kees Cook
2012-10-23 20:23   ` NeilBrown
2012-10-23 20:26     ` Kees Cook
2012-10-23 20:02 ` [PATCH 062/193] drivers/md/persistent-data: " Kees Cook
2012-10-23 20:02 ` [PATCH 063/193] drivers/media: " Kees Cook
2012-10-23 21:42   ` Mauro Carvalho Chehab
2012-10-23 20:02 ` [PATCH 064/193] drivers/media/video/cx25821: " Kees Cook
2012-10-23 20:02 ` [PATCH 065/193] drivers/media/video/pvrusb2: " Kees Cook
2012-10-23 21:03   ` Mike Isely
2012-10-23 20:02 ` [PATCH 066/193] drivers/media/video/s5p-fimc: " Kees Cook
2012-10-23 20:02 ` [PATCH 067/193] drivers/media/video/s5p-tv: " Kees Cook
2012-10-23 20:02 ` [PATCH 068/193] drivers/memstick: " Kees Cook
2012-10-23 20:02 ` [PATCH 069/193] drivers/memstick/host: " Kees Cook
2012-10-23 20:02 ` [PATCH 070/193] drivers/mmc/core: " Kees Cook
2012-10-23 22:38   ` Chris Ball
2012-10-23 22:50     ` Kees Cook
2012-10-23 20:02 ` [PATCH 071/193] drivers/mmc/host: " Kees Cook
2012-10-23 20:02 ` [PATCH 072/193] drivers/mtd: " Kees Cook
2012-10-23 20:02 ` [PATCH 073/193] drivers/mtd/chips: " Kees Cook
2012-10-23 20:02 ` [PATCH 074/193] drivers/mtd/devices: " Kees Cook
2012-11-12 15:36   ` Artem Bityutskiy
2012-11-12 16:43     ` Kees Cook
2012-11-13  8:49       ` Artem Bityutskiy
2012-11-13 17:58         ` Kees Cook
2012-11-14 10:48           ` Artem Bityutskiy
2012-10-23 20:02 ` [PATCH 075/193] drivers/mtd/nand: " Kees Cook
2012-10-23 20:02 ` [PATCH 076/193] drivers/net: " Kees Cook
2012-10-23 20:11   ` David Miller
2012-10-23 20:02 ` [PATCH 077/193] drivers/net/ethernet/8390: " Kees Cook
2012-10-23 20:11   ` David Miller
2012-10-23 20:02 ` [PATCH 078/193] drivers/net/ethernet/atheros: " Kees Cook
2012-10-23 20:02 ` [PATCH 079/193] drivers/net/ethernet/dec/tulip: " Kees Cook
2012-10-23 20:16   ` Grant Grundler
2012-10-23 20:02 ` [PATCH 080/193] drivers/net/ethernet/fujitsu: " Kees Cook
2012-10-23 20:02 ` [PATCH 081/193] drivers/net/ethernet/i825xx: " Kees Cook
2012-10-23 20:11   ` David Miller
2012-10-23 23:15   ` Jeff Kirsher
2012-10-23 20:02 ` [PATCH 082/193] drivers/net/ethernet/icplus: " Kees Cook
2012-10-23 20:02 ` [PATCH 083/193] drivers/net/ethernet/intel: " Kees Cook
2012-10-23 23:16   ` Jeff Kirsher
2012-10-23 20:02 ` [PATCH 084/193] drivers/net/ethernet/microchip: " Kees Cook
2012-10-23 20:02 ` [PATCH 085/193] drivers/net/ethernet/natsemi: " Kees Cook
2012-10-23 20:11   ` David Miller
2012-10-23 20:02 ` [PATCH 086/193] drivers/net/ethernet/packetengines: " Kees Cook
2012-10-23 20:11   ` David Miller
2012-10-23 20:02 ` [PATCH 087/193] drivers/net/ethernet/racal: " Kees Cook
2012-10-23 20:02 ` [PATCH 088/193] drivers/net/ethernet/realtek: " Kees Cook
2012-10-23 20:11   ` David Miller
2012-10-23 20:02 ` [PATCH 089/193] drivers/net/ethernet/seeq: " Kees Cook
2012-10-23 20:02 ` [PATCH 090/193] drivers/net/ethernet/silan: " Kees Cook
2012-10-23 20:12   ` David Miller
2012-10-23 22:09   ` Cesar Eduardo Barros
2012-10-23 20:02 ` [PATCH 091/193] drivers/net/ethernet/stmicro/stmmac: " Kees Cook
2012-10-23 20:02 ` [PATCH 092/193] drivers/net/ethernet/sun: " Kees Cook
2012-10-23 20:02 ` [PATCH 093/193] drivers/net/ethernet/ti: " Kees Cook
2012-10-23 20:11   ` David Miller
2012-10-23 20:02 ` [PATCH 094/193] drivers/net/hippi: " Kees Cook
2012-10-23 20:02 ` [PATCH 095/193] drivers/net/irda: " Kees Cook
2012-10-23 20:02 ` [PATCH 096/193] drivers/net/ppp: " Kees Cook
2012-10-23 20:02 ` [PATCH 097/193] drivers/net/team: " Kees Cook
2012-10-23 20:12   ` Jiri Pirko
2012-10-23 20:02 ` [PATCH 098/193] drivers/net/usb: " Kees Cook
2012-10-23 20:15   ` Greg Kroah-Hartman
2012-10-23 22:53     ` Kees Cook
2012-10-24  1:07       ` David Miller
2012-10-23 20:02 ` [PATCH 099/193] drivers/net/wan: " Kees Cook
2012-10-23 20:11   ` David Miller
2012-10-23 20:16   ` Greg Kroah-Hartman
2012-10-23 20:02 ` [PATCH 100/193] drivers/net/wireless: " Kees Cook
2012-10-23 20:02 ` [PATCH 101/193] drivers/net/wireless/ath/ath6kl: " Kees Cook
2012-10-23 20:02 ` [PATCH 102/193] drivers/net/wireless/ath/carl9170: " Kees Cook
2012-10-23 20:02 ` [PATCH 103/193] drivers/net/wireless/b43: " Kees Cook
2012-10-23 20:02 ` [PATCH 104/193] drivers/net/wireless/ipw2x00: " Kees Cook
2012-10-23 20:02 ` [PATCH 105/193] drivers/net/wireless/p54: " Kees Cook
2012-10-23 20:02 ` [PATCH 106/193] drivers/net/wireless/rt2x00: " Kees Cook
2012-10-24 16:21   ` Gertjan van Wingerde
2012-10-24 17:10     ` Kees Cook
2012-10-23 20:03 ` [PATCH 107/193] drivers/net/wireless/rtl818x: " Kees Cook
2012-10-23 20:03 ` [PATCH 108/193] drivers/net/wireless/ti/wl1251: " Kees Cook
2012-11-16 18:19   ` Luciano Coelho
2012-10-23 20:03 ` [PATCH 109/193] drivers/net/wireless/zd1211rw: " Kees Cook
2012-10-23 20:03 ` [PATCH 110/193] drivers/parport: " Kees Cook
2012-10-23 20:03 ` [PATCH 111/193] drivers/pci/pcie: " Kees Cook
2012-10-23 20:03 ` [PATCH 112/193] drivers/pcmcia: " Kees Cook
2012-10-23 20:03 ` [PATCH 113/193] drivers/platform/x86: " Kees Cook
2012-10-23 20:03 ` [PATCH 114/193] drivers/pnp/pnpbios: " Kees Cook
2012-10-23 20:03 ` [PATCH 115/193] drivers/pps: " Kees Cook
2012-10-23 20:03 ` [PATCH 116/193] drivers/ptp: " Kees Cook
2012-10-24  6:18   ` Richard Cochran
2012-10-23 20:03 ` [PATCH 117/193] drivers/remoteproc: " Kees Cook
2012-10-23 20:03 ` [PATCH 118/193] drivers/rpmsg: " Kees Cook
2012-10-23 20:03 ` [PATCH 119/193] drivers/sbus/char: " Kees Cook
2012-10-23 20:12   ` David Miller
2012-10-23 20:03 ` [PATCH 120/193] drivers/scsi: " Kees Cook
2012-10-23 20:03 ` [PATCH 121/193] drivers/scsi/arm: " Kees Cook
2012-10-23 20:03 ` [PATCH 122/193] drivers/scsi/device_handler: " Kees Cook
2012-10-23 20:03 ` [PATCH 123/193] drivers/spi: " Kees Cook
2012-10-23 20:03 ` [PATCH 124/193] drivers/staging/wlags49_h2/man: " Kees Cook
2012-10-23 20:03 ` [PATCH 125/193] drivers/target/sbp: " Kees Cook
2012-10-23 20:03 ` [PATCH 126/193] drivers/uwb: " Kees Cook
2012-10-23 20:03 ` [PATCH 127/193] drivers/vhost: " Kees Cook
2012-10-23 20:03 ` [PATCH 128/193] drivers/video: " Kees Cook
2012-10-23 20:03 ` [PATCH 129/193] drivers/video/console: " Kees Cook
2012-10-23 20:03 ` [PATCH 130/193] drivers/video/geode: " Kees Cook
2012-10-23 20:03 ` [PATCH 131/193] drivers/video/omap: " Kees Cook
2012-10-23 20:03 ` [PATCH 132/193] drivers/virtio: " Kees Cook
2012-10-23 20:03 ` [PATCH 133/193] drivers/vlynq: " Kees Cook
2012-10-23 20:03 ` [PATCH 134/193] drivers/w1/masters: " Kees Cook
2012-10-24 22:28   ` Evgeniy Polyakov
2012-10-23 20:03 ` [PATCH 135/193] drivers/watchdog: " Kees Cook
2012-10-23 20:03 ` [PATCH 136/193] fs/9p: " Kees Cook
2012-10-23 20:03 ` [PATCH 137/193] fs/adfs: " Kees Cook
2012-10-23 20:03 ` [PATCH 138/193] fs/affs: " Kees Cook
2012-10-23 20:03 ` [PATCH 139/193] fs/afs: " Kees Cook
2012-10-23 20:03 ` [PATCH 140/193] fs/befs: " Kees Cook
2012-10-23 20:03 ` [PATCH 141/193] fs/bfs: " Kees Cook
2012-10-23 20:03 ` [PATCH 142/193] fs/btrfs: " Kees Cook
2012-10-23 20:03 ` [PATCH 143/193] fs/ceph: " Kees Cook
2012-10-23 21:47   ` Sage Weil
2012-10-23 20:03 ` [PATCH 144/193] fs/cifs: " Kees Cook
2012-10-23 20:03 ` [PATCH 145/193] fs/dlm: " Kees Cook
2012-10-23 20:03 ` [PATCH 146/193] fs/ecryptfs: " Kees Cook
2012-10-23 22:40   ` Tyler Hicks
2012-10-23 20:03 ` [PATCH 147/193] fs/efs: " Kees Cook
2012-10-23 20:03 ` [PATCH 148/193] fs/hfs: " Kees Cook
2012-10-23 20:03 ` [PATCH 149/193] fs/jffs2: " Kees Cook
2012-10-23 20:03 ` [PATCH 150/193] fs/logfs: " Kees Cook
2012-10-23 20:03 ` [PATCH 151/193] fs/nfsd: " Kees Cook
2012-10-23 20:03 ` [PATCH 152/193] fs/nilfs2: " Kees Cook
2012-10-23 23:01   ` Ryusuke Konishi
2012-10-23 20:03 ` [PATCH 153/193] fs/ufs: " Kees Cook
2012-10-23 20:03 ` [PATCH 154/193] fs/xfs: " Kees Cook
2012-10-23 20:16   ` Ben Myers
2012-10-23 20:03 ` [PATCH 155/193] init: " Kees Cook
2012-10-24 13:48   ` Serge Hallyn
2012-10-24 17:05     ` Kees Cook
2012-10-24 17:17       ` Serge Hallyn
2012-10-24 17:25         ` Kees Cook
2012-10-24 18:34           ` Serge E. Hallyn
2012-10-24 17:37         ` Dave Jones
2012-10-23 20:03 ` [PATCH 156/193] kernel/gcov: " Kees Cook
2012-10-23 20:03 ` [PATCH 157/193] lib: " Kees Cook
2012-10-23 20:35   ` Catalin Marinas
2012-10-23 20:03 ` [PATCH 158/193] mm: " Kees Cook
2012-10-23 22:46   ` David Rientjes
2012-10-23 23:11     ` Kees Cook
2012-10-23 23:15       ` David Rientjes
2012-10-23 20:03 ` [PATCH 159/193] net/9p: " Kees Cook
2012-10-23 20:12   ` David Miller
2012-10-23 20:03 ` [PATCH 160/193] net: " Kees Cook
2012-10-23 20:12   ` David Miller
2012-10-23 20:03 ` [PATCH 161/193] net/ceph: " Kees Cook
2012-10-23 20:12   ` David Miller
2012-10-23 21:47   ` Sage Weil
2012-10-23 20:03 ` [PATCH 162/193] net/dccp: " Kees Cook
2012-10-23 20:13   ` David Miller
2012-10-28  1:24   ` Gerrit Renker
2012-10-23 20:03 ` [PATCH 163/193] net/dccp/ccids: " Kees Cook
2012-10-23 20:13   ` David Miller
2012-10-28  1:23   ` Gerrit Renker
2012-10-23 20:03 ` [PATCH 164/193] net/decnet: " Kees Cook
2012-10-23 20:12   ` David Miller
2012-10-23 20:03 ` [PATCH 165/193] net/decnet/netfilter: " Kees Cook
2012-10-23 20:12   ` David Miller
2012-10-23 20:03 ` [PATCH 166/193] net/dsa: " Kees Cook
2012-10-23 20:12   ` David Miller
2012-10-23 20:04 ` [PATCH 167/193] net/ieee802154: " Kees Cook
2012-10-23 20:12   ` David Miller
2012-10-23 20:04 ` [PATCH 168/193] net/ipv4: " Kees Cook
2012-10-23 20:14   ` David Miller
2012-10-23 20:04 ` [PATCH 169/193] net/ipv4/netfilter: " Kees Cook
2012-10-23 20:14   ` David Miller
2012-10-23 20:04 ` [PATCH 170/193] net/ipv6: " Kees Cook
2012-10-23 20:13   ` David Miller
2012-10-23 20:04 ` [PATCH 171/193] net/l2tp: " Kees Cook
2012-10-23 20:13   ` David Miller
2012-10-23 20:04 ` [PATCH 172/193] net/lapb: " Kees Cook
2012-10-23 20:13   ` David Miller
2012-10-23 20:04 ` [PATCH 173/193] net/mac80211: " Kees Cook
2012-10-23 20:13   ` David Miller
2012-10-23 20:15   ` Johannes Berg
2012-10-23 20:16     ` David Miller
2012-10-23 20:22       ` Kees Cook
2012-10-24  0:39         ` Stephen Rothwell
2012-10-23 20:04 ` [PATCH 174/193] net/mac802154: " Kees Cook
2012-10-23 20:13   ` David Miller
2012-10-23 20:04 ` [PATCH 175/193] net/netfilter: " Kees Cook
2012-10-23 20:14   ` David Miller
2012-10-23 20:04 ` [PATCH 176/193] net/nfc: " Kees Cook
2012-10-23 20:14   ` David Miller
2012-10-24 15:56   ` Samuel Ortiz
2012-10-23 20:04 ` [PATCH 177/193] net/nfc/llcp: " Kees Cook
2012-10-23 20:14   ` David Miller
2012-10-24 15:57   ` Samuel Ortiz
2012-10-23 20:04 ` [PATCH 178/193] net/nfc/nci: " Kees Cook
2012-10-23 20:15   ` David Miller
2012-10-24 15:57   ` Samuel Ortiz
2012-10-23 20:04 ` [PATCH 179/193] net/rds: " Kees Cook
2012-10-23 20:13   ` Venkat Venkatsubra
2012-10-23 20:14   ` David Miller
2012-10-23 20:04 ` [PATCH 180/193] net/rxrpc: " Kees Cook
2012-10-23 20:14   ` David Miller
2012-10-23 20:04 ` [PATCH 181/193] net/sctp: " Kees Cook
2012-10-23 20:13   ` David Miller
2012-10-24 14:33   ` Vlad Yasevich
2012-10-23 20:04 ` [PATCH 182/193] net/sunrpc: " Kees Cook
2012-10-23 20:14   ` David Miller
2012-10-23 22:12   ` Myklebust, Trond
2012-10-23 20:04 ` [PATCH 183/193] net/tipc: " Kees Cook
2012-10-23 20:14   ` David Miller
2012-10-23 20:04 ` [PATCH 184/193] net/wanrouter: " Kees Cook
2012-10-23 20:14   ` David Miller
2012-10-23 20:04 ` [PATCH 185/193] net/x25: " Kees Cook
2012-10-23 20:15   ` David Miller
2012-10-23 20:04 ` [PATCH 186/193] net/xfrm: " Kees Cook
2012-10-23 20:15   ` David Miller
2012-10-23 20:04 ` [PATCH 187/193] sound/drivers: " Kees Cook
2012-10-23 20:04 ` [PATCH 188/193] sound/isa: " Kees Cook
2012-10-24 22:31   ` Takashi Iwai
2012-10-23 20:04 ` [PATCH 189/193] sound/pci/hda: " Kees Cook
2012-10-23 20:04 ` [PATCH 190/193] sound/soc/fsl: " Kees Cook
2012-10-24 11:03   ` Mark Brown
2012-10-23 20:04 ` [PATCH 191/193] sound/usb: " Kees Cook
2012-10-23 20:04 ` [PATCH 192/193] tools/lguest: " Kees Cook
2012-10-23 20:04 ` [PATCH 193/193] final removal of CONFIG_EXPERIMENTAL Kees Cook
2012-10-25  1:25 ` [PATCH 000/193] remove CONFIG_EXPERIMENTAL Valdis.Kletnieks
2012-10-25  6:29   ` Kees Cook

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1351022666-6960-17-git-send-email-keescook@chromium.org \
    --to=keescook@chromium.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ralf@linux-mips.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.