From owner-freebsd-commit Tue Dec 5 05:44:18 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA04018 for freebsd-commit-outgoing; Tue, 5 Dec 1995 05:44:18 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA03997 for cvs-all-outgoing; Tue, 5 Dec 1995 05:43:37 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA03982 for cvs-sys-outgoing; Tue, 5 Dec 1995 05:43:24 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id FAA03962 ; Tue, 5 Dec 1995 05:42:46 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id AAA00261; Wed, 6 Dec 1995 00:34:09 +1100 Date: Wed, 6 Dec 1995 00:34:09 +1100 From: Bruce Evans Message-Id: <199512051334.AAA00261@godzilla.zeta.org.au> To: CVS-committers@freefall.freebsd.org, cvs-sys@freefall.freebsd.org, davidg@freefall.freebsd.org Subject: Re: cvs commit: src/sys/i386/isa if_ed.c Sender: owner-commit@FreeBSD.ORG Precedence: bulk > Modified: sys/i386/isa if_ed.c > Log: > ... > Moved ed_ring_copy to before its first use so that it's inlined as intended. -Winline finds several more cases where inlines aren't inlined: if_el.c: 2 cases if_ix.c: 5 pcvtdrv.c: 1 scd.c: 1 syscons.c: 2 These inlines are unlikely to have been tested. I suspect they are worthwhile iff they are called exactly once. Bruce