The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] random: Check kmalloc return value and give the failed  message
@ 2010-05-18  5:23 Steven Liu
  2010-05-18  5:38 ` Matt Mackall
  0 siblings, 1 reply; 2+ messages in thread
From: Steven Liu @ 2010-05-18  5:23 UTC (permalink / raw)
  To: mpm, linux-kernel

Hi, Matt Mackall,

Check kmalloc return value and give the failed message

Signed-off-by: Liu Qi <lingjiujianke@gmail.com>
---
 drivers/char/random.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/drivers/char/random.c b/drivers/char/random.c
index 2fd3d39..d1bedeb 100644
--- a/drivers/char/random.c
+++ b/drivers/char/random.c
@@ -952,8 +952,11 @@ static void init_std_data(struct entropy_store *r)
    mix_pool_bytes(r, &now, sizeof(now));
    mix_pool_bytes(r, utsname(), sizeof(*(utsname())));
    /* Enable continuous test in fips mode */
-   if (fips_enabled)
+   if (fips_enabled){
        r->last_data = kmalloc(EXTRACT_SIZE, GFP_KERNEL);
+       if(r->last_data == NULL)
+           printk(KERN_ERR "kmalloc memory failed in %s \n", __func__);
+   }
 }

 static int rand_initialize(void)
--
1.7.1



Best regards

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-05-18  5:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-18  5:23 [PATCH] random: Check kmalloc return value and give the failed message Steven Liu
2010-05-18  5:38 ` Matt Mackall

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox