From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Michael Neuling To: paulus@samba.org, linuxppc-dev@ozlabs.org Subject: Re: [PATCH] fix compile warning in arch/powerpc/kernel/sysfs.c In-reply-to: <7816.1187322013@neuling.org> References: <7816.1187322013@neuling.org> Date: Fri, 17 Aug 2007 15:25:58 +1000 Message-ID: <15789.1187328358@neuling.org> List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , It seems I missed a long discussion about this warning... Please ignore. Mikey In message <7816.1187322013@neuling.org> you wrote: > This fixes the following warning: > arch/powerpc/kernel/sysfs.c:388: warning: ignoring return value of > 'sysfs_create_group', declared with attribute warn_unused_result > > Signed-off-by: Michael Neuling > --- > arch/powerpc/kernel/sysfs.c | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > Index: linux-2.6-ozlabs/arch/powerpc/kernel/sysfs.c > =================================================================== > --- linux-2.6-ozlabs.orig/arch/powerpc/kernel/sysfs.c > +++ linux-2.6-ozlabs/arch/powerpc/kernel/sysfs.c > @@ -378,14 +378,18 @@ EXPORT_SYMBOL_GPL(cpu_add_sysdev_attr); > > int cpu_add_sysdev_attr_group(struct attribute_group *attrs) > { > - int cpu; > + int cpu, err; > struct sys_device *sysdev; > > mutex_lock(&cpu_mutex); > > for_each_possible_cpu(cpu) { > sysdev = get_cpu_sysdev(cpu); > - sysfs_create_group(&sysdev->kobj, attrs); > + err = sysfs_create_group(&sysdev->kobj, attrs); > + if (err) { > + mutex_unlock(&cpu_mutex); > + return err; > + } > } > > mutex_unlock(&cpu_mutex); > > > _______________________________________________ > Linuxppc-dev mailing list > Linuxppc-dev@ozlabs.org > https://ozlabs.org/mailman/listinfo/linuxppc-dev >