So I am looking at "fixing" some of the warning produced by __must_check but then I see (things like): drivers/base/core.c: In function 'device_add': drivers/base/core.c:714: warning: ignoring return value of 'sysfs_create_link', declared with attribute warn_unused_result drivers/base/core.c:719: warning: ignoring return value of 'sysfs_create_link', declared with attribute warn_unused_result drivers/base/core.c:722: warning: ignoring return value of 'sysfs_create_link', declared with attribute warn_unused_result drivers/base/core.c:728: warning: ignoring return value of 'sysfs_create_link', declared with attribute warn_unused_result drivers/base/core.c: In function 'device_rename': drivers/base/core.c:1187: warning: ignoring return value of 'sysfs_create_link', declared with attribute warn_unused_result drivers/base/core.c:1197: warning: ignoring return value of 'sysfs_create_link', declared with attribute warn_unused_result and things like this in drivers/base/sys.c: int sysdev_create_file(struct sys_device * s, struct sysdev_attribute * a) { return sysfs_create_file(&s->kobj, &a->attr); } where sysfs_create_file() is marked __must_check and sysdev_create_file() isn't. So the questions come to mind: Do we really care if our core infrastructure doesn't? Can we care if the core infrastructure doesn't propogate the error returns? Flame away, I am prepared to ignore all opinions :-) -- Cheers, Stephen Rothwell [email protected] http://www.canb.auug.org.au/~sfr/
Attachment:
pgpPOx1wKtvVu.pgp
Description: PGP signature
- Follow-Ups:
- Re: __must_check (stir the pot :-))
- From: Jeff Garzik <[email protected]>
- Re: __must_check (stir the pot :-))
- From: WANG Cong <[email protected]>
- Re: __must_check (stir the pot :-))
- Prev by Date: Re: [RFC][PATCH 7/14] Union-mount mounting
- Next by Date: Re: [patch 4/4] powerpc 2.6.21-rt1: reduce scheduling latency by changing tlb flush size
- Previous by thread: [PATCH 000 of 8] knfsd: cleanups for exportfs code.
- Next by thread: Re: __must_check (stir the pot :-))
- Index(es):