lkml.org 
[lkml]   [2018]   [Dec]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] x86/resctrl: Fix rdt_find_domain() return value checks
On Mon, Dec 10, 2018 at 12:42:14PM -0800, Reinette Chatre wrote:
> Would you be ok if the above is changed to
>
> if (id < 0)
> return ERR_PTR(-ENOENT);
>
> as part of this patch?

Yap.

> Looking at rdtgroup_mondata_show() is does seem as though ENOENT is the
> actual intended error value,

#define ENOENT 2 /* No such file or directory */

> although ENODEV could perhaps also be considered since such a result
> reflects that a particular cache instance could not be found.

#define ENODEV 19 /* No such device */

Yeah, they both kinda look ok to me and in the end of the day, the thing
that matters most is pinpointing the place in the code which causes the
error.

And looking at that particular part:

r = &rdt_resources_all[resid];
d = rdt_find_domain(r, domid, NULL);
if (!d) {
ret = -ENOENT;
goto out;
}

You *could* put in there something like:

seq_printf(m, "Cannot find a domain for resource ID: %d\n", domid);

and this way it is perfectly clear which error path it is.

:-)

--
Regards/Gruss,
Boris.

Good mailing practices for 400: avoid top-posting and trim the reply.

\
 
 \ /
  Last update: 2018-12-10 22:05    [W:0.042 / U:0.668 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site