From: Denys Vlasenko Date: Wed, 13 May 2009 21:48:59 +0000 (+0200) Subject: mount: save 80 bytes by forced de-inlining X-Git-Tag: 1_15_0~239 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=810b7161dcace56709038bf0cad93c925669c3b8;p=oweals%2Fbusybox.git mount: save 80 bytes by forced de-inlining Signed-off-by: Denys Vlasenko --- diff --git a/util-linux/mount.c b/util-linux/mount.c index 1ebc7247b..ab249642b 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -783,7 +783,7 @@ static bool_t xdr_mountres3_ok(XDR *xdrs, mountres3_ok *objp) if (!xdr_fhandle3(xdrs, &objp->fhandle)) return FALSE; if (!xdr_array(xdrs, &(objp->auth_flavours.auth_flavours_val), &(objp->auth_flavours.auth_flavours_len), ~0, - sizeof (int), (xdrproc_t) xdr_int)) + sizeof(int), (xdrproc_t) xdr_int)) return FALSE; return TRUE; } @@ -936,7 +936,7 @@ static void error_msg_rpc(const char *msg) } /* NB: mp->xxx fields may be trashed on exit */ -static int nfsmount(struct mntent *mp, long vfsflags, char *filteropts) +static NOINLINE int nfsmount(struct mntent *mp, long vfsflags, char *filteropts) { CLIENT *mclient; char *hostname;