lkml.org 
[lkml]   [2015]   [May]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] init/do_mounts: Add create_dev() failure log
On Fri, 22 May 2015 09:48:24 -0700 Randy Dunlap <rdunlap@infradead.org> wrote:

> On 05/22/15 05:37, Vishnu Pratap Singh wrote:
> > if create_dev() function fails to create the root mount device (/dev/root),
> > then it goes to panic as root device not found but there is no check/log
> > present in case of failure, So i have added the log in case it fails to create
> > the root device. It will help in debugging.
> >
> > Signed-off-by: Vishnu Pratap Singh <vishnu.ps@samsung.com>
> > ---
> > init/do_mounts.h | 6 +++++-
> > 1 file changed, 5 insertions(+), 1 deletion(-)
> >
> > diff --git a/init/do_mounts.h b/init/do_mounts.h
> > index f5b978a..40c85e9 100644
> > --- a/init/do_mounts.h
> > +++ b/init/do_mounts.h
> > @@ -15,8 +15,12 @@ extern int root_mountflags;
> >
> > static inline int create_dev(char *name, dev_t dev)
> > {
> > + int ret;
> > sys_unlink(name);
> > - return sys_mknod(name, S_IFBLK|0600, new_encode_dev(dev));
> > + ret = sys_mknod(name, S_IFBLK|0600, new_encode_dev(dev));
> > + if(ret < 0)
>
> if (ret < 0)
>
> > + printk(KERN_ERR " Failed to create %s device !! err: %d\n", name, ret);
>
> Don't need space before 'Failed'.
>
> > + return ret;
> > }

Yup.

And there's no reason for it to be inlined. Let's move it into
do_mounts.c please.



\
 
 \ /
  Last update: 2015-05-22 22:21    [W:0.026 / U:1.576 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site