search for: firstaddr

Displaying 2 results from an estimated 2 matches for "firstaddr".

Did you mean: first_addr
2007 Jan 23
2
Re: [nut-commits] svn commit r731
...enfd, net_port = PORT; > +static ctype *firstclient = NULL; > > /* default is to listen on all local interfaces */ > -#ifndef HAVE_IPV6 > -static struct in_addr listenaddr; > -#else > -static char *listenaddr = "0.0.0.0"; > - > -/* AF_ */ > +static stype *firstaddr = NULL; > > static int opt_af = AF_UNSPEC; > -#endif > > /* signal handlers */ > static struct sigaction sa; > @@ -153,99 +148,172 @@ > ups_data_ok(ups); > } > > -/* create a listening socket for tcp connections */ > -static void setuptcp(void) >...
2003 Aug 22
3
PAE removal patch for testing
...if (*pdeaddr & PG_PS) + return pdeaddr; + if (*pdeaddr) { + return get_ptbase(pmap) + i386_btop(va); + } + } + return (0); +} /* * Move the kernel virtual free pointer to the next @@ -297,7 +278,9 @@ * (physical) address starting relative to 0] */ void -pmap_bootstrap(vm_paddr_t firstaddr, vm_paddr_t loadaddr) +pmap_bootstrap(firstaddr, loadaddr) + vm_offset_t firstaddr; + vm_offset_t loadaddr; { vm_offset_t va; pt_entry_t *pte; @@ -309,7 +292,7 @@ avail_start = firstaddr; /* - * The calculation of virtual_avail is wrong. It's NKPT*PAGE_SIZE too + * XXX The calculat...