On Wed, Feb 29, 2012 at 04:39:57PM +0000, Chris Kelly wrote: > > This structure is used in an ioctl definition and was causing the > 64-bit PowerPC build to fail. The size of the array in the structure > has been reduced to fix this. > > Signed-off-by: Chris Kelly <ckelly@xxxxxxxxxxxxxxx> > --- You forgot to put a "Reported-by:" line in here, to credit the person who reported this to you. Don't worry, I'll fix it up. > drivers/staging/ozwpan/ozeventdef.h | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/staging/ozwpan/ozeventdef.h b/drivers/staging/ozwpan/ozeventdef.h > index cfe4163..a880288 100644 > --- a/drivers/staging/ozwpan/ozeventdef.h > +++ b/drivers/staging/ozwpan/ozeventdef.h > @@ -37,7 +37,7 @@ struct oz_event { > unsigned ctx4; > }; > > -#define OZ_EVT_LIST_SZ 256 > +#define OZ_EVT_LIST_SZ 64 Really? That was the fix? Why can't PPC handle big ioctl structures? > struct oz_evtlist { > int count; > int missed; You do realize that if this structure is exported to userspace, it is done incorrectly, right? And that will be removed before we can move it out of staging/ :) thanks, greg k-h -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html