diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-05-13 23:48:59 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-05-13 23:48:59 +0200 |
commit | 810b7161dcace56709038bf0cad93c925669c3b8 (patch) | |
tree | b3cb0562ba04cddc7ff8aa605d1b6607f48b32c1 | |
parent | e71dd7c1db99d86b1846290ee04cdbac30120586 (diff) | |
download | busybox-w32-810b7161dcace56709038bf0cad93c925669c3b8.tar.gz busybox-w32-810b7161dcace56709038bf0cad93c925669c3b8.tar.bz2 busybox-w32-810b7161dcace56709038bf0cad93c925669c3b8.zip |
mount: save 80 bytes by forced de-inlining
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | util-linux/mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) | |||
783 | if (!xdr_fhandle3(xdrs, &objp->fhandle)) | 783 | if (!xdr_fhandle3(xdrs, &objp->fhandle)) |
784 | return FALSE; | 784 | return FALSE; |
785 | if (!xdr_array(xdrs, &(objp->auth_flavours.auth_flavours_val), &(objp->auth_flavours.auth_flavours_len), ~0, | 785 | if (!xdr_array(xdrs, &(objp->auth_flavours.auth_flavours_val), &(objp->auth_flavours.auth_flavours_len), ~0, |
786 | sizeof (int), (xdrproc_t) xdr_int)) | 786 | sizeof(int), (xdrproc_t) xdr_int)) |
787 | return FALSE; | 787 | return FALSE; |
788 | return TRUE; | 788 | return TRUE; |
789 | } | 789 | } |
@@ -936,7 +936,7 @@ static void error_msg_rpc(const char *msg) | |||
936 | } | 936 | } |
937 | 937 | ||
938 | /* NB: mp->xxx fields may be trashed on exit */ | 938 | /* NB: mp->xxx fields may be trashed on exit */ |
939 | static int nfsmount(struct mntent *mp, long vfsflags, char *filteropts) | 939 | static NOINLINE int nfsmount(struct mntent *mp, long vfsflags, char *filteropts) |
940 | { | 940 | { |
941 | CLIENT *mclient; | 941 | CLIENT *mclient; |
942 | char *hostname; | 942 | char *hostname; |