Re: [PATCH] x86, mce: Print warning if MCE handler fails to register/dev/mcelog

From: Khalid Aziz
Date: Tue Apr 09 2013 - 15:21:35 EST


On 04/09/2013 12:30 PM, Luck, Tony wrote:
- misc_register(&mce_chrdev_device);
+ if (misc_register(&mce_chrdev_device) != 0)
+ pr_warn("Failed to register mcelog device\n");

Did this actually happen to you? Or is this just "good practice" to check the
return value from misc_register?


No, I did not see this happen. It is just "good practice". If it were to happen, mcelog daemon would fail to get any mce records and it will not be easy to figure out what happened. Most other places in kernel where misc_register() is called, do check for return code and take action if it fails.

--
Khalid

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/