Re: [CRED bug?] 2.6.29-rc3 don't survive on stress workload

From: David Howells
Date: Wed Feb 11 2009 - 12:08:19 EST


Ingo Molnar <mingo@xxxxxxx> wrote:

> include/linux/cred.h: In function 'get_cred':
> include/linux/cred.h:188: warning: passing argument 1 of 'get_new_cred' discards
> qualifiers from pointer target type

This is a known compiler bug in some versions of gcc. It fails to observe the
fact that a const pointer is cast to the equivalent non-const pointer in
get_cred():

static inline const struct cred *get_cred(const struct cred *cred)
{
return get_new_cred((struct cred *) cred);
}

David
--
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/