Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Aug 2020 15:09:43 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r364918 - head/sys/sys
Message-ID:  <202008281509.07SF9h8C002268@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Fri Aug 28 15:09:43 2020
New Revision: 364918
URL: https://svnweb.freebsd.org/changeset/base/364918

Log:
  remove splbio and splcam
  
  splbio and splcan have been completely removed from the tree. We can
  now remove their definitions here. They've been nops for a long time
  and were only preserved to give hints on how to lock drivers. All
  drivers have been deleted or converted, so they can be deleted now.

Modified:
  head/sys/sys/systm.h

Modified: head/sys/sys/systm.h
==============================================================================
--- head/sys/sys/systm.h	Fri Aug 28 13:15:13 2020	(r364917)
+++ head/sys/sys/systm.h	Fri Aug 28 15:09:43 2020	(r364918)
@@ -497,8 +497,6 @@ void	kern_reboot(int) __dead2;
 void	shutdown_nice(int);
 
 /* Stubs for obsolete functions that used to be for interrupt management */
-static __inline intrmask_t	splbio(void)		{ return 0; }
-static __inline intrmask_t	splcam(void)		{ return 0; }
 static __inline intrmask_t	splclock(void)		{ return 0; }
 static __inline intrmask_t	splhigh(void)		{ return 0; }
 static __inline intrmask_t	splimp(void)		{ return 0; }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008281509.07SF9h8C002268>