svn commit: r319675 - in head/sys/compat/linuxkpi/common: include/linux src

John Baldwin jhb at freebsd.org
Thu Jun 8 16:53:42 UTC 2017


On Thursday, June 08, 2017 02:44:34 AM Justin Hibbits wrote:
> Author: jhibbits
> Date: Thu Jun  8 02:44:34 2017
> New Revision: 319675
> URL: https://svnweb.freebsd.org/changeset/base/319675
> 
> Log:
>   Remove ARM and MIPS from linuxkpi ioremap_attr definition
>   
>   ARM and MIPS fail universe builds.
>   
>   ARM and MIPS are missing the following:
>   * VM_MEMATTR_WRITE_THROUGH
>   * VM_MEMATTR_WRITE_COMBINING
>   
>   Pointy-hat to:	jhibbits

The intention when VM_MEMATTR_* was added was that they were macros on
purpose so you could do things like:

#ifdef VM_MEMATTR_WRITE_COMBINING
	/* WC is available as an option */
#endif

Perhaps something similar can be done here?

-- 
John Baldwin


More information about the svn-src-head mailing list