Re: [PATCH 01/31] Add an ERR_CAST() macro to complement ERR_PTR and co. [try #5]

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Zach Brown <zach.brown@...>
Cc: David Howells <dhowells@...>, <akpm@...>, <linux-kernel@...>, <linux-fsdevel@...>
Date: Thursday, October 25, 2007 - 7:38 pm

> > +static inline void *ERR_CAST(const void *ptr)
 > > +{
 > > +	return (void *) ptr;
 > > +}
 > 
 > Just to nit, surely you don't need the cast inside the function.  The
 > casting happens at the call site between the argument and returned pointer.

The way it's written you kinda do, since it takes a const void * and
returns a plain void *.  But I don't think that's the best way to
write it.
-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 00/31] Remove iget() and read_inode() [try #5], David Howells, (Thu Oct 25, 12:33 pm)
[PATCH 05/31] IGET: Use iget_failed() in GFS2 [try #5], David Howells, (Thu Oct 25, 12:34 pm)
[PATCH 04/31] IGET: Use iget_failed() in AFS [try #5], David Howells, (Thu Oct 25, 12:34 pm)
Re: [PATCH 01/31] Add an ERR_CAST() macro to complement ERR_..., Roland Dreier, (Thu Oct 25, 7:38 pm)