svn commit: r362361 - in head/sys: compat/linuxkpi/common/src vm
Mark Johnston
markj at freebsd.org
Mon Jul 13 16:40:01 UTC 2020
On Mon, Jul 13, 2020 at 05:27:06PM +0200, Hans Petter Selasky wrote:
> On 2020-06-19 05:32, Mark Johnston wrote:
> > +++ head/sys/vm/vm_map.h Fri Jun 19 03:32:04 2020 (r362361)
> > @@ -255,6 +255,17 @@ vm_map_modflags(vm_map_t map, vm_flags_t set, vm_flags
> > {
> > map->flags = (map->flags | set) & ~clear;
> > }
> > +
> > +static inline bool
> > +vm_map_range_valid(vm_map_t map, vm_offset_t start, vm_offset_t end)
> > +{
>
> Hi Mark,
>
> Don't you also need to add:
>
> #define vm_map_range_valid(map, start, end) vm_map_pmap_KBI(map,
> start, end)
>
> And implement the _KBI function?
>
> Building the LinuxKPI from the command line is now broken:
Thanks, fixed in r363158.
More information about the svn-src-head
mailing list