Loading drivers/mmc/core/mmc_ops.c +1 −1 Original line number Diff line number Diff line Loading @@ -366,7 +366,7 @@ int mmc_get_ext_csd(struct mmc_card *card, u8 **new_ext_csd) * As the ext_csd is so large and mostly unused, we don't store the * raw block in mmc_card. */ ext_csd = kzalloc(512, GFP_KERNEL); ext_csd = kzalloc(512, GFP_NOIO | __GFP_NOFAIL); if (!ext_csd) return -ENOMEM; Loading Loading
drivers/mmc/core/mmc_ops.c +1 −1 Original line number Diff line number Diff line Loading @@ -366,7 +366,7 @@ int mmc_get_ext_csd(struct mmc_card *card, u8 **new_ext_csd) * As the ext_csd is so large and mostly unused, we don't store the * raw block in mmc_card. */ ext_csd = kzalloc(512, GFP_KERNEL); ext_csd = kzalloc(512, GFP_NOIO | __GFP_NOFAIL); if (!ext_csd) return -ENOMEM; Loading