summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Warner lets a good one out..julian2007-12-211-0/+6
| |
* | Apply missing s/rv/res/g in previous commit.marcel2007-12-214-4/+4
| |
* | Modify vm_phys_unfree_page() so that it no longer requires the givenalc2007-12-203-10/+19
| | | | | | | | | | | | | | | | | | | | page to be in the free lists. Instead, it now returns TRUE if it removed the page from the free lists and FALSE if the page was not in the free lists. This change is required to support superpage reservations. Specifically, once reservations are introduced, a cached page can either be in the free lists or a reservation.
* | MFamd64/ia64/i386: Only set the rman bus tags and handles injhb2007-12-204-8/+4
| | | | | | | | | | | | | | bus_activate_resource() methods instead of splitting it up between bus_alloc_resource() and bus_activate_resource(). Glanced at by: marcel
* | Avoid holding the aac_io_lock over copyout.emaste2007-12-201-5/+6
| | | | | | | | Submitted by: Achim Leubner @ Adaptec.
* | Invoke revoke(2) on the slave pty in the pts(4) case (new_openpty()) tojhb2007-12-201-1/+13
| | | | | | | | | | | | | | | | kick off any other users on the device line before using it since openpty(3) is documented to do this. Note that grantpt(3) does not call revoke(2), it only adjusts permissions and ownership. MFC after: 3 days
* | Update pkg_version_index to INDEX-8dougb2007-12-201-1/+1
| |
* | - Adjust INDEX file name to INDEX-8 so that it matches the major FreeBSDgabor2007-12-201-5/+5
| | | | | | | | | | | | | | version number, as it is named after that PR: docs/118053 Submitted by: Michael Plass <mfp49_freebsd@plass-family.net>
* | Fix disorder introduced in previous commit.ru2007-12-201-1/+1
| |
* | Ministat was repocopied to src/usr.bin/ministatphk2007-12-205-725/+0
| |
* | Pull ministat into the installed system and write it a man-page.phk2007-12-203-1/+131
| | | | | | | | (Repocopied from src/tools/tools/ministat)
* | By definition promiscuous mode should see all unicast frames as wellyongari2007-12-201-2/+6
| | | | | | | | | | | | | | | | | | as multicast/broadcast frames. Previously re(4) ignored multicast frames in promiscuous mode. The RTL8169 datasheet was not clear how it handles multicast frames in promiscuous mode. PR: kern/118572 MFC after: 3 days
* | call underscore version of pthread_cleanup_pop instead.davidxu2007-12-201-1/+1
| |
* | Remove vfork() overloading, it is no longer needed.davidxu2007-12-202-11/+0
| |
* | Grumble. DO declare logbl(), DON'T declare logl() just yet.das2007-12-201-0/+2
| | | | | | | | | | | | | | bde is going to commit logl() Real Soon Now. I'm just trying to slow him down with merge conflicts. Noticed by: bde
* | enable wired driver supportsam2007-12-201-0/+2
| | | | | | | | | | Submitted by: "Paul B. Mahol" <onemda@gmail.com> MFC after: 1 week
* | In openprom_ioctl() ensure appropriate permissions and that data isn'tmarius2007-12-201-1/+9
| | | | | | | | | | | | | | | | NULL and doesn't point to a NULL pointer before dereferencing it. This fixes a panic triggered by Xorg 7.3. Reported and tested by: Bill Green MFC after: 3 days
* | Remove the declaration of logl(). The relevant bits haven't beendas2007-12-201-2/+0
| | | | | | | | | | | | | | committed yet, but the declaration leaked in when I added nan() and friends. Reported by: pav
* | Describe new NG_CAR_COUNT_PACKETS option.mav2007-12-191-6/+26
| |
* | Correct one half of a loop continuation condition in vm_phys_unfree_page().alc2007-12-191-3/+1
| | | | | | | | | | At present, this error is inconsequential; the other half of the loop continuation condition is sufficient to achieve correct execution.
* | Add option to set packets per second limits instead of defaultmav2007-12-192-22/+77
| | | | | | | | bits per second ones.
* | When devclass_get_maxunit is passed a NULL, return -1 to indicate thatimp2007-12-191-1/+4
| | | | | | | | there's nothing allocated at all yet.
* | Use .An -nosplit in the AUTHORS section of sf_buf(9) to avoid an undesiredrwatson2007-12-191-0/+1
| | | | | | | | | | | | line break. MFC after: 3 days
* | o NetBSD 4.0 added.maxim2007-12-191-0/+2
| |
* | Redefine bus_space_tag_t on PowerPC from a 32-bit integral tomarcel2007-12-1912-653/+1150
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a pointer to struct bus_space. The structure contains function pointers that do the actual bus space access. The reason for this change is that previously all bus space accesses were little endian (i.e. had an explicit byte-swap for multi-byte accesses), because all busses on Macs are little endian. The upcoming support for Book E, and in particular the E500 core, requires support for big-endian busses because all embedded peripherals are in the native byte-order. With this change, there's no distinction between I/O port space and memory mapped I/O. PowerPC doesn't have I/O port space. Busses assign tags based on the byte-order only. For that purpose, two global structures exist (bs_be_tag and bs_le_tag), of which the address can be taken to get a valid tag. Obtained from: Juniper, Semihalf
* | Actually program the interrupt controller for priorities. As weimp2007-12-191-3/+43
| | | | | | | | | | support more AT91 platforms, we'll need to move this into some platform init routine.
* | Add Dell's sub-vendor id to identify PERC6 RAID controller which has LSIambrisko2007-12-191-0/+1
| | | | | | | | vendor id's.
* | I incorrectly assumed the log buffer started from the beginning when itambrisko2007-12-191-7/+3
| | | | | | | | | | | | is actually a circular log. Deal with it rolling around. Fortunately, the log area is big and I haven't seen any roll over yet. Update and get rid of the obsolete comment.
* | Allow negative values to be specified in the loader.ambrisko2007-12-191-0/+2
| |
* | The default of 3 retransmits corresponds to a timeout value ofru2007-12-191-2/+2
| | | | | | | | 45 seconds, not 15.
* | Fix bugs in the TCP syncache timeout code. including:ru2007-12-191-8/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When system ticks are positive, for entries in the cache bucket, syncache_timer() ran on every tick (doing nothing useful) instead of the supposed 3, 6, 12, and 24 seconds later (when it's time to retransmit SYN,ACK). When ticks are negative, syncache_timer() was scheduled for the too far future (up to ~25 days on systems with HZ=1000), no SYN,ACK retransmits were attempted at all, and syncache entries added in that period that correspond to non-established connections stay there forever. Only HEAD and RELENG_7 are affected. Reviewed by: silby, kmacy (earlier version) Submitted by: Maxim Dounin, ru
* | Do not recursively acquire aac_io_lock in aac_ioctl_event.emaste2007-12-191-3/+1
| | | | | | | | MFC After: 3 days
* | Update the number of reported tests to keep prove(1) happy.dds2007-12-191-1/+1
| |
* | Correct the "move file from directory to existing directory" test fordds2007-12-191-1/+1
| | | | | | | | cross-device moves.
* | Add missing section number.brueffer2007-12-191-1/+1
| |
* | Eliminate redundant code from vm_page_startup().alc2007-12-191-17/+0
| |
* | Remove extraneous debug statements.kmacy2007-12-191-6/+0
| | | | | | | | Noticed by: Andrey Chernov
* | Add missing dependencies on Makefile (fixes NO_CLEAN builds).ru2007-12-191-4/+4
| |
* | Reduce lock contention for simple cases.imp2007-12-191-16/+22
| | | | | | | | | | | | # this really should be done with pthread_once, but I've debugged this code. Reviewed by: arch@
* | Add note about other systems.imp2007-12-191-0/+3
| |
* | Correct typo in usage message.imp2007-12-191-1/+1
| |
* | Go ahead and install usbdevs. This will be used by the usbdevs deviceimp2007-12-191-1/+4
| | | | | | | | to print more information about some devices.
* | Add verbage on some of the rules for a 'filter' vs an 'ithread'imp2007-12-191-2/+81
| | | | | | | | interrupt handler.
* | As several people pointed out, I did all the ctype casts the wrongdes2007-12-194-28/+36
| | | | | | | | | | | | | | way (not for the first time...) Noticed by: bde, ru ++ MFC after: 1 week
* | Move all the xprintf-related symbols to FBSDprivate_1.0.das2007-12-181-9/+13
| | | | | | | | Discussed with: deischen, kan, phk
* | Since nan() is supposed to work the same as strtod("nan(...)", NULL),das2007-12-188-50/+85
| | | | | | | | | | | | | | | | | | | | | | | | my original implementation made both use the same code. Unfortunately, this meant libm depended on a vendor header at compile time and previously- unexposed vendor bits in libc at runtime. Hence, I just wrote my own version of the relevant vendor routine. As it turns out, mine has a factor of 8 fewer of lines of code, and is a bit more readable anyway. The strtod() and *scanf() routines still use vendor code. Reviewed by: bde
* | Don't overload tcp_usrreqs unless the kernel doesn't provide offload support.kmacy2007-12-182-1/+3
| |
* | Incorporate TCP offload hooks in to core TCP code.kmacy2007-12-183-21/+34
| | | | | | | | | | | | | | | | | | | | - Rename output routines tcp_gen_* -> tcp_output_*. - Rename notification routines that turn in to no-ops in the absence of TOE from tcp_gen_* -> tcp_offload_*. - Fix some minor comment nits. - Add a /* FALLTHROUGH */ Reviewed by: Sam Leffler, Robert Watson, and Mike Silbersack
* | Be more exact with sigaction SA_SIGINFO handling.obrien2007-12-181-2/+5
| | | | | | | | Reviewed by: marcel
* | Fix printing of the number of syncache entries added.ru2007-12-181-2/+2
| |
OpenPOWER on IntegriCloud