? kernel.patch
? make.error
? arch/amd64/compile/GENERIC.MP/.swp
? arch/amd64/compile/GENERIC.MP/make.error
? arch/amd64/compile/GENERIC.MP/make.out
Index: dev/ic/aic79xx.c
===================================================================
RCS file: /cvs/src/sys/dev/ic/aic79xx.c,v
retrieving revision 1.64
diff -u -p -u -r1.64 aic79xx.c
--- dev/ic/aic79xx.c	6 Feb 2018 00:18:38 -0000	1.64
+++ dev/ic/aic79xx.c	27 Oct 2018 06:51:12 -0000
@@ -269,11 +269,11 @@ int ahd_createdmamem(struct ahd_softc *,
 void ahd_freedmamem(struct ahd_softc *, struct map_node *);
 
 /******************************** Private Inlines *****************************/
-__inline void	ahd_assert_atn(struct ahd_softc *ahd);
+__inline static void	ahd_assert_atn(struct ahd_softc *ahd);
 int	ahd_currently_packetized(struct ahd_softc *ahd);
 int	ahd_set_active_fifo(struct ahd_softc *ahd);
 
-__inline void
+__inline static void
 ahd_assert_atn(struct ahd_softc *ahd)
 {
 	ahd_outb(ahd, SCSISIGO, ATNO);
Index: dev/pci/ahd_pci.c
===================================================================
RCS file: /cvs/src/sys/dev/pci/ahd_pci.c,v
retrieving revision 1.24
diff -u -p -u -r1.24 ahd_pci.c
--- dev/pci/ahd_pci.c	12 Jul 2014 18:48:51 -0000	1.24
+++ dev/pci/ahd_pci.c	27 Oct 2018 06:51:19 -0000
@@ -75,8 +75,8 @@
 
 #include <dev/pci/pcivar.h>
 
-__inline uint64_t ahd_compose_id(u_int, u_int, u_int, u_int);
-__inline uint64_t
+__inline static uint64_t ahd_compose_id(u_int, u_int, u_int, u_int);
+__inline static uint64_t
 ahd_compose_id(u_int device, u_int vendor, u_int subdevice, u_int subvendor)
 {
 	uint64_t id;
Index: dev/usb/uhci.c
===================================================================
RCS file: /cvs/src/sys/dev/usb/uhci.c,v
retrieving revision 1.143
diff -u -p -u -r1.143 uhci.c
--- dev/usb/uhci.c	15 May 2017 10:52:08 -0000	1.143
+++ dev/usb/uhci.c	27 Oct 2018 06:51:22 -0000
@@ -190,7 +190,7 @@ usbd_status	uhci_device_setintr(struct u
 
 void		uhci_device_clear_toggle(struct usbd_pipe *pipe);
 
-__inline__ struct uhci_soft_qh *uhci_find_prev_qh(struct uhci_soft_qh *,
+__inline__ static struct uhci_soft_qh *uhci_find_prev_qh(struct uhci_soft_qh *,
 		    struct uhci_soft_qh *);
 
 #ifdef UHCI_DEBUG
@@ -314,7 +314,7 @@ struct usbd_pipe_methods uhci_device_iso
 	} while (0)
 #define uhci_active_intr_list(ex) ((ex)->inext.le_prev != NULL)
 
-__inline__ struct uhci_soft_qh *
+__inline__ static struct uhci_soft_qh *
 uhci_find_prev_qh(struct uhci_soft_qh *pqh, struct uhci_soft_qh *sqh)
 {
 	DPRINTFN(15,("uhci_find_prev_qh: pqh=%p sqh=%p\n", pqh, sqh));
Index: dev/wscons/wskbdutil.c
===================================================================
RCS file: /cvs/src/sys/dev/wscons/wskbdutil.c,v
retrieving revision 1.17
diff -u -p -u -r1.17 wskbdutil.c
--- dev/wscons/wskbdutil.c	22 Jan 2018 12:20:54 -0000	1.17
+++ dev/wscons/wskbdutil.c	27 Oct 2018 06:51:22 -0000
@@ -181,11 +181,11 @@ static struct compose_tab_s {
 
 static int compose_tab_inorder = 0;
 
-inline int compose_tab_cmp(struct compose_tab_s *, struct compose_tab_s *);
+inline static int compose_tab_cmp(struct compose_tab_s *, struct compose_tab_s *);
 keysym_t ksym_upcase(keysym_t);
 void fillmapentry(const keysym_t *, int, struct wscons_keymap *);
 
-inline int
+inline static int
 compose_tab_cmp(struct compose_tab_s *i, struct compose_tab_s *j)
 {
 	if (i->elem[0] == j->elem[0])
Index: net/pipex.c
===================================================================
RCS file: /cvs/src/sys/net/pipex.c,v
retrieving revision 1.106
diff -u -p -u -r1.106 pipex.c
--- net/pipex.c	20 Nov 2017 10:35:24 -0000	1.106
+++ net/pipex.c	27 Oct 2018 06:51:27 -0000
@@ -2927,7 +2927,7 @@ pipex_sockaddr_compar_addr(struct sockad
 	return (-1);
 }
 
-Static inline int
+inline static int
 pipex_mppe_setkey(struct pipex_mppe *mppe)
 {
 	rc4_keysetup(&mppe->rc4ctx, mppe->session_key, mppe->keylen);
@@ -2935,7 +2935,7 @@ pipex_mppe_setkey(struct pipex_mppe *mpp
 	return (0);
 }
 
-Static inline int
+inline static int
 pipex_mppe_setoldkey(struct pipex_mppe *mppe, uint16_t coher_cnt)
 {
 	KASSERT(mppe->old_session_keys != NULL);
@@ -2947,7 +2947,7 @@ pipex_mppe_setoldkey(struct pipex_mppe *
 	return (0);
 }
 
-Static inline void
+inline static void
 pipex_mppe_crypt(struct pipex_mppe *mppe, int len, u_char *indata,
     u_char *outdata)
 {
Index: net/pipex_local.h
===================================================================
RCS file: /cvs/src/sys/net/pipex_local.h,v
retrieving revision 1.29
diff -u -p -u -r1.29 pipex_local.h
--- net/pipex_local.h	27 Jul 2017 05:57:04 -0000	1.29
+++ net/pipex_local.h	27 Oct 2018 06:51:27 -0000
@@ -417,9 +417,9 @@ Static void                  pipex_mppe_
 Static void                  pipex_mppe_output (struct mbuf *, struct pipex_session *, uint16_t);
 Static void                  pipex_ccp_input (struct mbuf *, struct pipex_session *);
 Static int                   pipex_ccp_output (struct pipex_session *, int, int);
-Static inline int            pipex_mppe_setkey(struct pipex_mppe *);
-Static inline int            pipex_mppe_setoldkey(struct pipex_mppe *, uint16_t);
-Static inline void           pipex_mppe_crypt(struct pipex_mppe *, int, u_char *, u_char *);
+inline static int            pipex_mppe_setkey(struct pipex_mppe *);
+inline static int            pipex_mppe_setoldkey(struct pipex_mppe *, uint16_t);
+inline static void           pipex_mppe_crypt(struct pipex_mppe *, int, u_char *, u_char *);
 #endif
 
 Static struct mbuf           *adjust_tcp_mss (struct mbuf *, int);
