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. _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"