Re: Kernel panic on CentOS

2012-10-15 Thread Chris Ball
ware problem that the kernel doesn't know how to recover from. (Although you only sent part of the trace.) http://en.wikipedia.org/wiki/Machine_Check_Exception - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsubscribe li

Re: Kernel panic on CentOS

2012-10-15 Thread Chris Ball
doesn't know how to recover from. (Although you only sent part of the trace.) http://en.wikipedia.org/wiki/Machine_Check_Exception - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body

Re: [GIT PULL] Disintegrate UAPI for mmc

2012-10-12 Thread Chris Ball
ad1cfdcef1378adc7215a74772f7d06c4cc6ef50: > > UAPI: (Scripted) Disintegrate include/linux/mmc (2012-10-09 09:48:45 +0100) Thanks, I've sent this to Linus now. - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsu

[GIT PULL] MMC merge for 3.7-rc1, part 2

2012-10-12 Thread Chris Ball
4 files changed, 2 insertions(+), 2 deletions(-) rename include/{ => uapi}/linux/mmc/ioctl.h (100%) -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord..

[GIT PULL] MMC merge for 3.7-rc1, part 2

2012-10-12 Thread Chris Ball
files changed, 2 insertions(+), 2 deletions(-) rename include/{ = uapi}/linux/mmc/ioctl.h (100%) -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org

Re: [GIT PULL] Disintegrate UAPI for mmc

2012-10-12 Thread Chris Ball
:48:45 +0100) Thanks, I've sent this to Linus now. - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http

Re: [GIT PULL] MMC updates for 3.7-rc1

2012-10-08 Thread Chris Ball
Hi Linus, On Mon, Oct 08 2012, Chris Ball wrote: > Please pull from: > > git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git > tags/mmc-merge-for-3.7-rc1 > > to receive the MMC merge for 3.7. There are currently two conflicts > due to header renames for the A

[GIT PULL] MMC updates for 3.7-rc1

2012-10-08 Thread Chris Ball
3): mmc: sdhci-s3c: Enable only required bus clock mmc: sdhci-s3c: Fix crash on module insertion for second time mmc: sdhci-s3c: Add clk_(enable/disable) in runtime suspend/resume Chao Xie (1): mmc: sdhci-pxav2, sdhci-pxav3: use clk_prepare/unprepare APIs Chris Ball (6):

[GIT PULL] MMC updates for 3.7-rc1

2012-10-08 Thread Chris Ball
: Enable only required bus clock mmc: sdhci-s3c: Fix crash on module insertion for second time mmc: sdhci-s3c: Add clk_(enable/disable) in runtime suspend/resume Chao Xie (1): mmc: sdhci-pxav2, sdhci-pxav3: use clk_prepare/unprepare APIs Chris Ball (6): mmc: dt: Add card

Re: [GIT PULL] MMC updates for 3.7-rc1

2012-10-08 Thread Chris Ball
Hi Linus, On Mon, Oct 08 2012, Chris Ball wrote: Please pull from: git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git tags/mmc-merge-for-3.7-rc1 to receive the MMC merge for 3.7. There are currently two conflicts due to header renames for the ARM single zImage work; they should

Re: [PATCH v6 0/3] Add modules to support realtek PCIE card reader

2012-09-29 Thread Chris Ball
3.7, and I've pushed the MMC driver into mmc-next for 3.7. So, I think we should merge it. I don't think we need akpm, since there are no build-time dependencies involved. Thanks, - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this lis

Re: [PATCH v6 0/3] Add modules to support realtek PCIE card reader

2012-09-29 Thread Chris Ball
-next for 3.7. So, I think we should merge it. I don't think we need akpm, since there are no build-time dependencies involved. Thanks, - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel

Re: [PATCH 2/5] mmc: msm_sdcc: Remove unnecessary include

2012-09-19 Thread Chris Ball
Hi, On Wed, Sep 19 2012, Stephen Boyd wrote: > This driver has no reason to include msm_iomap.h. Remove it so > that we can remove msm_iomap.h from include/mach in the future. > > Cc: Chris Ball > Signed-off-by: Stephen Boyd > --- > drivers/mmc/host/msm_sdcc.c | 1 -

Re: [PATCH 2/5] mmc: msm_sdcc: Remove unnecessary include

2012-09-19 Thread Chris Ball
Hi, On Wed, Sep 19 2012, Stephen Boyd wrote: This driver has no reason to include msm_iomap.h. Remove it so that we can remove msm_iomap.h from include/mach in the future. Cc: Chris Ball c...@laptop.org Signed-off-by: Stephen Boyd sb...@codeaurora.org --- drivers/mmc/host/msm_sdcc.c | 1

Re: [PATCH V2] mmc: omap_hsmmc: Pass on the suspend failure to the PM core

2012-09-18 Thread Chris Ball
driver. With this change, MMC core >> suspend might still fail but it does not end up making the >> system unusable. Suspend gets aborted and the user can try >> suspending the system again. >> >> Signed-off-by: Vaibhav Bedia >> Signed-off-by: Hebbar, Gurura

Re: [PATCH 7/13] drivers/mmc/host/mmci.c: use clk_prepare_enable and clk_disable_unprepare

2012-09-18 Thread Chris Ball
gpio_free(host->gpio_cd); > > iounmap(host->base); > - clk_disable(host->clk); > - clk_unprepare(host->clk); > + clk_disable_unprepare(host->clk); > clk_put(host->clk); > > if (host->vcc) T

Re: [PATCH 7/13] drivers/mmc/host/mmci.c: use clk_prepare_enable and clk_disable_unprepare

2012-09-18 Thread Chris Ball
for 3.7. (I merged v1 instead of v2 because I don't see any whitespace problems with it, and I liked the verbosity in the original commit message.) - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux

Re: [PATCH V2] mmc: omap_hsmmc: Pass on the suspend failure to the PM core

2012-09-18 Thread Chris Ball
Bedia vaibhav.be...@ti.com Signed-off-by: Hebbar, Gururaja gururaja.heb...@ti.com This version is good. Acked-by: Venkatraman S svenk...@ti.com Thanks, pushed to mmc-next for 3.7, with a stable@ tag added (right?). - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per

Re: [PATCH v2 2/3] mmc: davinci_mmc: convert to DMA engine API

2012-09-17 Thread Chris Ball
rc2 with rootfs on SD and running > bonnie++ on it. > > Tested-by: Koen Kooi Thanks, pushed to mmc-next for 3.7. - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the bod

Re: [PATCH] mmc: sdio: Fix PM_SLEEP related build warnings

2012-09-17 Thread Chris Ball
out them being unused. However, since the callback for this >> driver doesn't do anything it can just as well be dropped. >> >> Signed-off-by: Thierry Reding > > Acked-by: Rafael J. Wysocki Thanks, pushed to mmc-next for 3.7. - Chris. -- Chris Ball <http://printf.n

Re: [PATCH RESEND v6] mmc: core: Remove bounce buffer in mmc_send_cxd_data()

2012-09-17 Thread Chris Ball
of providing > DMA-capable buffer from upper caller(but on-stack buffer is allowed > with no performance gain). > > Signed-off-by: Kyungsik Lee > Reviewed-by: Venkatraman S Thanks, pushed to mmc-next for 3.7. - Chris. -- Chris Ball <http://printf.net/> One Laptop

Re: [PATCH RESEND v6] mmc: core: Remove bounce buffer in mmc_send_cxd_data()

2012-09-17 Thread Chris Ball
from upper caller(but on-stack buffer is allowed with no performance gain). Signed-off-by: Kyungsik Lee kyungsik@lge.com Reviewed-by: Venkatraman S svenk...@ti.com Thanks, pushed to mmc-next for 3.7. - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child

Re: [PATCH] mmc: sdio: Fix PM_SLEEP related build warnings

2012-09-17 Thread Chris Ball
, since the callback for this driver doesn't do anything it can just as well be dropped. Signed-off-by: Thierry Reding thierry.red...@avionic-design.de Acked-by: Rafael J. Wysocki r...@sisk.pl Thanks, pushed to mmc-next for 3.7. - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One

Re: [PATCH v2 2/3] mmc: davinci_mmc: convert to DMA engine API

2012-09-17 Thread Chris Ball
and running bonnie++ on it. Tested-by: Koen Kooi k...@dominion.thruhere.net Thanks, pushed to mmc-next for 3.7. - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord

Re: [PATCH 09/16] ARM: tegra: move platform_data definitions

2012-09-11 Thread Chris Ball
be just add a note to the commit message explaining that you aren't changing the guards and driver maintainers might want to fix them up if it's something they care about? Thanks, - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the

Re: [PATCH 09/16] ARM: tegra: move platform_data definitions

2012-09-11 Thread Chris Ball
c-sdhci-tegra.h Looks like you aren't renaming the idempotency guards, so e.g. include/linux/platform_data/mmc-sdhci-tegra.h will contain: #ifndef __ASM_ARM_ARCH_TEGRA_SDHCI_H #define __ASM_ARM_ARCH_TEGRA_SDHCI_H Is that intentional? Thanks, - Chris. -- Chris Ball <http://printf.net/>

Re: [PATCH 09/16] ARM: tegra: move platform_data definitions

2012-09-11 Thread Chris Ball
like you aren't renaming the idempotency guards, so e.g. include/linux/platform_data/mmc-sdhci-tegra.h will contain: #ifndef __ASM_ARM_ARCH_TEGRA_SDHCI_H #define __ASM_ARM_ARCH_TEGRA_SDHCI_H Is that intentional? Thanks, - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per

Re: [PATCH 09/16] ARM: tegra: move platform_data definitions

2012-09-11 Thread Chris Ball
changing the guards and driver maintainers might want to fix them up if it's something they care about? Thanks, - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message

[GIT PULL] MMC fixes for 3.6-rc5

2012-09-05 Thread Chris Ball
+++ drivers/mmc/host/omap.c| 14 +-- drivers/mmc/host/sdhci-esdhc.h | 6 +-- include/linux/mmc/card.h | 1 + 8 files changed, 98 insertions(+), 61 deletions(-) -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "

[GIT PULL] MMC fixes for 3.6-rc5

2012-09-05 Thread Chris Ball
+++ drivers/mmc/host/omap.c| 14 +-- drivers/mmc/host/sdhci-esdhc.h | 6 +-- include/linux/mmc/card.h | 1 + 8 files changed, 98 insertions(+), 61 deletions(-) -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line

Re: [PATCH v6] mmc: card: Skip secure option for MoviNAND.

2012-08-29 Thread Chris Ball
evices using defective eMMC with kernel supporting MMC_CAP_ERASE & > SECURE option, this issue might cause damage. > Therefore, we skip secure for these known devices. Thanks, pushed to mmc-next for 3.6 with a stable@ tag. - Chris. -- Chris Ball <http://printf.net/> One L

Re: [PATCH v6] mmc: card: Skip secure option for MoviNAND.

2012-08-29 Thread Chris Ball
a-developers.com/showthread.php?t=1644364 https://plus.google.com/111398485184813224730/posts/21pTYfTsCkB#111398485184813224730/posts/21pTYfTsCkB == - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsubscribe linu

Re: [PATCH v6] mmc: card: Skip secure option for MoviNAND.

2012-08-29 Thread Chris Ball
this discussion in XDA developers. http://forum.xda-developers.com/showthread.php?t=1644364 https://plus.google.com/111398485184813224730/posts/21pTYfTsCkB#111398485184813224730/posts/21pTYfTsCkB == - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe

Re: [PATCH v6] mmc: card: Skip secure option for MoviNAND.

2012-08-29 Thread Chris Ball
with kernel supporting MMC_CAP_ERASE SECURE option, this issue might cause damage. Therefore, we skip secure for these known devices. Thanks, pushed to mmc-next for 3.6 with a stable@ tag. - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from

Re: [PATCH] MMC/omap_hsmmc: handle failure of regulator_get better.

2012-08-07 Thread Chris Ball
r_get_ocrmask(reg); > if (!mmc_slot(host).ocr_mask) { Thanks, pushed to mmc-next for 3.7. - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to maj

Re: [PATCH 2/2] drivers/mmc/host/vub300.c: add missing usb_free_urb

2012-08-07 Thread Chris Ball
Hi Julia, On Tue, Jul 24 2012, Julia Lawall wrote: > From: Julia Lawall > > Add missing usb_free_urb on failure path after usb_alloc_urb. Thanks, pushed to mmc-next for 3.7. - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list

Re: [PATCH v2 1/1] ARM: dove: DT support for sdhci-dove

2012-08-07 Thread Chris Ball
ned-off-by: Sebastian Hesselbarth > Cc: Grant Likely > Cc: Rob Herring > Cc: Rob Landley > Cc: Chris Ball > Cc: Anton Vorontsov > Cc: Manuel Lauss > Cc: David Brown > Cc: Andrew Lunn > Cc: devicetree-disc...@lists.ozlabs.org > Cc: linux-...@vger.kernel

Re: [PATCH] mmc: sdhci: fix the clock APIs for pxav2 and pxav3 driver

2012-08-07 Thread Chris Ball
Hi, On Tue, Jul 31 2012, Chao Xie wrote: > From: Chao Xie > > Signed-off-by: Chao Xie Thanks, pushed to mmc-next for 3.7. - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsubscribe linux-kernel"

Re: [PATCH v4] mmc: dw_mmc: Disable low power mode if SDIO interrupts are used

2012-08-07 Thread Chris Ball
le Slot Specific SDIO interrupt */ >> int_mask = mci_readl(host, INTMASK); >> if (enb) { >> +/* >> + * Turn off low power mode if it was enabled. This is a bit of >> + * a heavy operation and we disable / enable IRQs a lot, so &

Re: [PATCH v4] mmc: dw_mmc: Disable low power mode if SDIO interrupts are used

2012-08-07 Thread Chris Ball
to add my ack. Acked-by: Seungwon Jeon tgih@samsung.com Thanks, pushed to mmc-next for 3.7. - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord

Re: [PATCH] mmc: sdhci: fix the clock APIs for pxav2 and pxav3 driver

2012-08-07 Thread Chris Ball
Hi, On Tue, Jul 31 2012, Chao Xie wrote: From: Chao Xie chao@marvell.com Signed-off-by: Chao Xie xiechao.m...@gmail.com Thanks, pushed to mmc-next for 3.7. - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line

Re: [PATCH v2 1/1] ARM: dove: DT support for sdhci-dove

2012-08-07 Thread Chris Ball
sebastian.hesselba...@googlemail.com Cc: Grant Likely grant.lik...@secretlab.ca Cc: Rob Herring rob.herr...@calxeda.com Cc: Rob Landley r...@landley.net Cc: Chris Ball c...@laptop.org Cc: Anton Vorontsov cbouatmai...@gmail.com Cc: Manuel Lauss manuel.la...@googlemail.com Cc: David Brown dav

Re: [PATCH 2/2] drivers/mmc/host/vub300.c: add missing usb_free_urb

2012-08-07 Thread Chris Ball
Hi Julia, On Tue, Jul 24 2012, Julia Lawall wrote: From: Julia Lawall julia.law...@lip6.fr Add missing usb_free_urb on failure path after usb_alloc_urb. Thanks, pushed to mmc-next for 3.7. - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe

Re: [PATCH] MMC/omap_hsmmc: handle failure of regulator_get better.

2012-08-07 Thread Chris Ball
PTR_ERR(reg); } else { + mmc_slot(host).set_power = omap_hsmmc_set_power; host-vcc = reg; ocr_value = mmc_regulator_get_ocrmask(reg); if (!mmc_slot(host).ocr_mask) { Thanks, pushed to mmc-next for 3.7. - Chris. -- Chris Ball c

Re: 3.6-rc1: twl4030 don't compile :(

2012-08-02 Thread Chris Ball
4030_charger: Add backup-battery charging"). Neil, I don't think we can use this syntax yet -- Documentation/Changes says that we still support from gcc-3.2 onwards. Thanks, - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send

Re: 3.6-rc1: twl4030 don't compile :(

2012-08-02 Thread Chris Ball
charging). Neil, I don't think we can use this syntax yet -- Documentation/Changes says that we still support from gcc-3.2 onwards. Thanks, - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel

Re: [PATCH RESEND v7 2/2] mmc: card: Adding support for sanitize in eMMC 4.5

2012-07-24 Thread Chris Ball
same time, if we can. I wonder if there's any way to test whether sanitize has had an effect. It would be good to know whether it actually does anything on a specific eMMC, although I'm sure it's difficult to tell. Thanks! - Chris. -- Chris Ball <http://printf.net/> One L

Re: [PATCH RESEND v7 2/2] mmc: card: Adding support for sanitize in eMMC 4.5

2012-07-24 Thread Chris Ball
can. I wonder if there's any way to test whether sanitize has had an effect. It would be good to know whether it actually does anything on a specific eMMC, although I'm sure it's difficult to tell. Thanks! - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child

[GIT PULL] MMC updates for 3.6-rc1

2012-07-22 Thread Chris Ball
SDHCI_USING_RETUNING_TIMER mmc: sd: Fix sd current limit setting mmc: core: reset signal voltage on power up Alan Cox (1): mmc: core: correct invalid error checking Chris Ball (4): mmc: core: Export regulator_* functions as GPL mmc: dt: Deduplicate binding docs by referencing mmc.txt

[GIT PULL] MMC updates for 3.6-rc1

2012-07-22 Thread Chris Ball
SDHCI_USING_RETUNING_TIMER mmc: sd: Fix sd current limit setting mmc: core: reset signal voltage on power up Alan Cox (1): mmc: core: correct invalid error checking Chris Ball (4): mmc: core: Export regulator_* functions as GPL mmc: dt: Deduplicate binding docs by referencing mmc.txt

Re: [PATCH v1 2/2] mmc: sdhci-dove: Prepare for common clock framework

2012-07-21 Thread Chris Ball
Hi, On Thu, Jul 05 2012, Sebastian Hesselbarth wrote: > As mach-dove is moving towards common clock framework prepare > the sdhci driver to grab it's clock. > > Signed-off-by: Sebastian Hesselbarth > Cc: Chris Ball > Cc: Anton Vorontsov > Cc: Shawn Guo > Cc: Viresh K

Re: [PATCH v1 1/2] mmc: sdhci-dove: Add SDHCI_QUIRK_NO_HISPD_BIT

2012-07-21 Thread Chris Ball
Hi Sebastian, On Thu, Jul 05 2012, Sebastian Hesselbarth wrote: > The sdio controller on dove doesn't have a bit to indicate > high-speed. With the quirk set it fixes accessing high-speed > sdcards. > > Signed-off-by: Sebastian Hesselbarth > Cc: Chris Ball > Cc: Anton Voron

Re: [PATCH] mmc: omap_hsmmc: ensure probe returns error upon resource failure

2012-07-21 Thread Chris Ball
that probe returns an error code in this failure >> path. >> >> Signed-off-by: Kevin Hilman > > Good catch. > Acked-by: Venkatraman S Thanks, pushed to mmc-next for 3.6. - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe f

Re: [PATCH] mmc: omap_hsmmc: ensure probe returns error upon resource failure

2012-07-21 Thread Chris Ball
-off-by: Kevin Hilman khil...@ti.com Good catch. Acked-by: Venkatraman S svenk...@ti.com Thanks, pushed to mmc-next for 3.6. - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body

Re: [PATCH v1 1/2] mmc: sdhci-dove: Add SDHCI_QUIRK_NO_HISPD_BIT

2012-07-21 Thread Chris Ball
Hi Sebastian, On Thu, Jul 05 2012, Sebastian Hesselbarth wrote: The sdio controller on dove doesn't have a bit to indicate high-speed. With the quirk set it fixes accessing high-speed sdcards. Signed-off-by: Sebastian Hesselbarth sebastian.hesselba...@googlemail.com Cc: Chris Ball c

Re: [PATCH v1 2/2] mmc: sdhci-dove: Prepare for common clock framework

2012-07-21 Thread Chris Ball
Hi, On Thu, Jul 05 2012, Sebastian Hesselbarth wrote: As mach-dove is moving towards common clock framework prepare the sdhci driver to grab it's clock. Signed-off-by: Sebastian Hesselbarth sebastian.hesselba...@googlemail.com Cc: Chris Ball c...@laptop.org Cc: Anton Vorontsov cbouatmai

Re: A question on printascii

2012-07-19 Thread Chris Ball
text[text_len-1] == '\n') { text_len--; -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/

Re: [PATCH RESEND v7 2/2] mmc: card: Adding support for sanitize in eMMC 4.5

2012-07-19 Thread Chris Ball
ll be failed to operate secure trim/erase for REQ_SECURE request." at: http://thread.gmane.org/gmane.linux.kernel.mmc/14822/focus=14880 Thanks, - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsubscribe

Re: [PATCH RESEND v7 2/2] mmc: card: Adding support for sanitize in eMMC 4.5

2012-07-19 Thread Chris Ball
will be failed to operate secure trim/erase for REQ_SECURE request. at: http://thread.gmane.org/gmane.linux.kernel.mmc/14822/focus=14880 Thanks, - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel

Re: A question on printascii

2012-07-19 Thread Chris Ball
[text_len-1] == '\n') { text_len--; -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org

Re: [PATCH v2 1/1] mmc: block: Add write packing control

2012-07-18 Thread Chris Ball
the reads-during-writes regression. Thanks! - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.ker

Re: [PATCH v2 1/1] mmc: block: Add write packing control

2012-07-18 Thread Chris Ball
regression. Thanks! - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please

Re: [PATCH v2 1/1] mmc: block: Add write packing control

2012-07-17 Thread Chris Ball
Hi Muthu, On Mon, Jul 16 2012, Muthu Kumar wrote: > On Sun, Jul 15, 2012 at 7:46 PM, Chris Ball wrote: >> Hi, >> >> On Sun, Jul 15 2012, Muthu Kumar wrote: >>>> I've already replied to a later version of the patch, but just to get >>>> this comment

Re: [PATCH v2 1/1] mmc: block: Add write packing control

2012-07-17 Thread Chris Ball
Hi Muthu, On Mon, Jul 16 2012, Muthu Kumar wrote: On Sun, Jul 15, 2012 at 7:46 PM, Chris Ball c...@laptop.org wrote: Hi, On Sun, Jul 15 2012, Muthu Kumar wrote: I've already replied to a later version of the patch, but just to get this comment in at the appropriate point of the discussion

Re: linux-next: manual merge of the arm-soc tree with the i2c-embedded tree

2012-07-16 Thread Chris Ball
on-removable) purposefully alone (and different to the new generic MMC bindings) to preserve backwards compatibility: http://article.gmane.org/gmane.linux.kernel.samsung-soc/10409 Thanks, - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list:

Re: linux-next: manual merge of the arm-soc tree with the i2c-embedded tree

2012-07-16 Thread Chris Ball
) to preserve backwards compatibility: http://article.gmane.org/gmane.linux.kernel.samsung-soc/10409 Thanks, - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message

Re: [PATCH v3 5/6] mmc: dw_mmc: add device tree support

2012-07-15 Thread Chris Ball
pdata->quirks |= of_quriks[idx].id; of_quirks, not of_quriks. Thanks, - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vg

Re: [PATCH v2 1/1] mmc: block: Add write packing control

2012-07-15 Thread Chris Ball
it might not make sense to add the new directory. We'd be creating two places that people have to look for mmc-related attributes, which is arguably less clean than having one place to look even though it's mixed in with the other block device attributes. Thanks, - Chris. -- Chris Ball <http:

Re: [PATCH v2 1/1] mmc: block: Add write packing control

2012-07-15 Thread Chris Ball
that people have to look for mmc-related attributes, which is arguably less clean than having one place to look even though it's mixed in with the other block device attributes. Thanks, - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list

Re: [PATCH v3 5/6] mmc: dw_mmc: add device tree support

2012-07-15 Thread Chris Ball
. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

Re: [PATCH v2 1/1] mmc: block: Add write packing control

2012-07-14 Thread Chris Ball
that model for other devices, why not follow that for MMC > also? I've already replied to a later version of the patch, but just to get this comment in at the appropriate point of the discussion as well: Even though it would result in a cleaner sysfs, I don't want to do this now because it

Re: [PATCH RESEND v4 1/2] mmc: card: Move MMC specific attributes to mmc sub-directory

2012-07-14 Thread Chris Ball
meone has userspace scripts that manipulate force_ro, or ro_lock_until_next_power_on? sysfs isn't a firmly stable kernel ABI, but I think it's much closer to one than this patch implies. Thanks, - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list

Re: [PATCH RESEND v4 1/2] mmc: card: Move MMC specific attributes to mmc sub-directory

2012-07-14 Thread Chris Ball
if someone has userspace scripts that manipulate force_ro, or ro_lock_until_next_power_on? sysfs isn't a firmly stable kernel ABI, but I think it's much closer to one than this patch implies. Thanks, - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe

Re: [PATCH v2 1/1] mmc: block: Add write packing control

2012-07-14 Thread Chris Ball
sysfs, I don't want to do this now because it will break userspace scripts that are depending on the current locations of these attributes. Thanks, - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux

[GIT PULL] MMC fixes for 3.5-rc7

2012-07-12 Thread Chris Ball
| 18 +++--- 2 files changed, 13 insertions(+), 9 deletions(-) -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http:/

[GIT PULL] MMC fixes for 3.5-rc7

2012-07-12 Thread Chris Ball
files changed, 13 insertions(+), 9 deletions(-) -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org

Re: Boot regression on Mackerel with current mainline

2012-07-10 Thread Chris Ball
IRQF_ONESHOT", rebase your "extend and rename" patch on top of that, push both to mmc-next, and then send the initial patch to Linus in a few days. Thanks, - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line

Re: Boot regression on Mackerel with current mainline

2012-07-10 Thread Chris Ball
the initial patch to Linus in a few days. Thanks, - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http

Re: Boot regression on Mackerel with current mainline

2012-07-09 Thread Chris Ball
?p=linux/kernel/git/cjb/mmc.git;a=commit;h=d8e60fb51effc83e6f53de191a8440f46e5a3f2c > > The latter one looks big because of a rename, but with "-M" it's pretty > trivial. Chris, do you agree? Is the minimal fix to just add "| IRQF_ONESHOT" to the request_threaded_irq

Re: [PATCH] sdio: Change pr_warning to pr_warn_ratelimited

2012-07-09 Thread Chris Ball
" CIS tuple 0x%02x (%u bytes)\n", >mmc_hostname(card->host), >tpl_code, tpl_link); Thanks, pushed to mmc-next for 3.6. - Chris. -- Chris Ball <http://printf.net/> One Laptop Per Child -- To unsubscri

Re: [PATCH] sdio: Change pr_warning to pr_warn_ratelimited

2012-07-09 Thread Chris Ball
), tpl_code, tpl_link); Thanks, pushed to mmc-next for 3.6. - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More

Re: Boot regression on Mackerel with current mainline

2012-07-09 Thread Chris Ball
in linux-next so that there aren't any conflicts. Is that okay with you? Thanks, - Chris. -- Chris Ball c...@laptop.org http://printf.net/ One Laptop Per Child -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More

<    1   2   3   4