Prev: use unfair spinlock when running on hypervisor.
Next: [PATCH] AFS: Fix possible null pointer dereference in afs_alloc_server()
From: Stephen Hemminger on 1 Jun 2010 12:20 Don't need to explicitly inline this function, it causes a sparse warning; and GCC will inline it already. Signed-off-by: Stephen Hemminger <shemminger(a)vyatta.com> --- Patch against 2.6.35-rc1 --- a/fs/squashfs/xattr.c 2010-06-01 08:38:44.659739327 -0700 +++ b/fs/squashfs/xattr.c 2010-06-01 08:39:29.731326492 -0700 @@ -295,7 +295,7 @@ static const struct xattr_handler squash .get = squashfs_security_get }; -static inline const struct xattr_handler *squashfs_xattr_handler(int type) +static const struct xattr_handler *squashfs_xattr_handler(int type) { if (type & ~(SQUASHFS_XATTR_PREFIX_MASK | SQUASHFS_XATTR_VALUE_OOL)) /* ignore unrecognised type */ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |