A few minor updates for PS3. Please apply.
-Geoff
The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f:
Linux 4.3-rc1 (2015-09-12 16:35:56 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/geoff/ps3-linux.git for-merge-powerpc
for you to fetch changes up to f9c28dfbef66b7f23f1e542397bd6a77d1258ddd:
powerpc/ps3: Refresh ps3_defconfig (2015-09-14 12:28:10 -0700)
----------------------------------------------------------------
Colin Ian King (1):
drivers/ps3: Fix ps3-vuart null dereference
Geoff Levand (1):
powerpc/ps3: Refresh ps3_defconfig
Rudhresh Kumar J (1):
drivers/ps3: Fix ps3-lpm white space
arch/powerpc/configs/ps3_defconfig | 4 ----
drivers/ps3/ps3-lpm.c | 2 +-
drivers/ps3/ps3-vuart.c | 3 +--
3 files changed, 2 insertions(+), 7 deletions(-)
Colin Ian King (1):
drivers/ps3: Fix ps3-vuart null dereference
Geoff Levand (1):
powerpc/ps3: Refresh ps3_defconfig
Rudhresh Kumar J (1):
drivers/ps3: Fix ps3-lpm white space
arch/powerpc/configs/ps3_defconfig | 4 ----
drivers/ps3/ps3-lpm.c | 2 +-
drivers/ps3/ps3-vuart.c | 3 +--
3 files changed, 2 insertions(+), 7 deletions(-)
--
2.1.0
@@ -53,7 +53,6 @@ CONFIG_IP_PNP_DHCP=y # CONFIG_INET_XFRM_MODE_BEET is not set # CONFIG_INET_LRO is not set # CONFIG_INET_DIAG is not set-CONFIG_IPV6=y CONFIG_BT=m CONFIG_BT_RFCOMM=m CONFIG_BT_RFCOMM_TTY=y
@@ -142,7 +141,6 @@ CONFIG_RTC_DRV_PS3=y # CONFIG_IOMMU_SUPPORT is not set CONFIG_EXT2_FS=m CONFIG_EXT3_FS=m-# CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set CONFIG_EXT4_FS=y CONFIG_QUOTA=y CONFIG_QFMT_V2=y
@@ -175,9 +173,7 @@ CONFIG_DEBUG_LOCKDEP=y CONFIG_DEBUG_LIST=y CONFIG_RCU_CPU_STALL_TIMEOUT=60 # CONFIG_FTRACE is not set-CONFIG_CRYPTO_GCM=m CONFIG_CRYPTO_PCBC=m CONFIG_CRYPTO_MICHAEL_MIC=m CONFIG_CRYPTO_SALSA20=m CONFIG_CRYPTO_LZO=m-# CONFIG_CRYPTO_ANSI_CPRNG is not set
From: Colin Ian King <hidden> Date: 2015-09-14 19:35:04
On the unlikely event that drv is null, the current code will
perform a null pointer dereference with it when printing a dev_dbg
message. Instead, the BUG_ON check on drv should be performed
before we emit the dev_dbg message.
Signed-off-by: Colin Ian King <redacted>
Signed-off-by: Geoff Levand <geoff@infradead.org>
---
drivers/ps3/ps3-vuart.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
@@ -142,7 +141,6 @@ CONFIG_RTC_DRV_PS3=y # CONFIG_IOMMU_SUPPORT is not set CONFIG_EXT2_FS=m CONFIG_EXT3_FS=m-# CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set
Given Ext3 support was removed, and although the Kconfig symbol was kept for
(temporary?) backwards compatibility, I think these should be updated.
CONFIG_EXT4_FS=y
CONFIG_QUOTA=y
CONFIG_QFMT_V2=y
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
@@ -53,7 +53,6 @@ CONFIG_IP_PNP_DHCP=y # CONFIG_INET_XFRM_MODE_BEET is not set # CONFIG_INET_LRO is not set # CONFIG_INET_DIAG is not set-CONFIG_IPV6=y CONFIG_BT=m CONFIG_BT_RFCOMM=m CONFIG_BT_RFCOMM_TTY=y
@@ -141,8 +140,6 @@ CONFIG_RTC_CLASS=y CONFIG_RTC_DRV_PS3=y # CONFIG_IOMMU_SUPPORT is not set CONFIG_EXT2_FS=m-CONFIG_EXT3_FS=m-# CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set CONFIG_EXT4_FS=y CONFIG_QUOTA=y CONFIG_QFMT_V2=y
@@ -175,9 +172,7 @@ CONFIG_DEBUG_LOCKDEP=y CONFIG_DEBUG_LIST=y CONFIG_RCU_CPU_STALL_TIMEOUT=60 # CONFIG_FTRACE is not set-CONFIG_CRYPTO_GCM=m CONFIG_CRYPTO_PCBC=m CONFIG_CRYPTO_MICHAEL_MIC=m CONFIG_CRYPTO_SALSA20=m CONFIG_CRYPTO_LZO=m-# CONFIG_CRYPTO_ANSI_CPRNG is not set
From: Michael Ellerman <mpe@ellerman.id.au> Date: 2015-10-02 07:47:09
On Mon, 2015-14-09 at 19:35:04 UTC, Colin King wrote:
On the unlikely event that drv is null, the current code will
perform a null pointer dereference with it when printing a dev_dbg
message. Instead, the BUG_ON check on drv should be performed
before we emit the dev_dbg message.
Signed-off-by: Colin Ian King <redacted>
Signed-off-by: Geoff Levand <geoff@infradead.org>