Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-11-02 | poll(2) manpage references itself, accept(2) references poll(2) twice. | Janne Johansson | |
2001-11-02 | add intel card | Michael Shalayeff | |
2001-11-02 | match on intel pro/wireless 2011, from netbsd | Michael Shalayeff | |
2001-11-02 | fix multicast loopback checksums; goeran@cdg.chalmers.se, ok angelos | Theo de Raadt | |
2001-11-02 | Move the accounting disk space watcher into a kernel thread. | Artur Grabowski | |
Since we do filesystem operations, we need process context. This should fix accounting on nfs. | |||
2001-11-02 | Fix signal dispatching. No-one has reported any probs (other than | Marco S Hyman | |
with regression tests that need to be fixed) and fgs@ thinks it's OK. I'll look at the pthreads regression tests, next | |||
2001-11-02 | replace fprintf(stderr)/exit w/ err/warn | Michael Shalayeff | |
2001-11-02 | - Set valid bit in transmit descriptors and tx fragment descriptors (previous | Jason Wright | |
firmware versions didn't use it, but newer ones might... play it safe). - add a bit of debugging code to tx so I can get dumps easier to send to 3com. (ifdef'd out). - ifdef both places that require modification to enable TX cksums to avoid errors like halfway enabling them (which caused me a bit of pain the other day). - TX UDP/TCP cksums still hang the firmware | |||
2001-11-02 | new fw needs more space in an_ltv_status; from Gabriel Kihlman <gk@univits.se> | Michael Shalayeff | |
2001-11-02 | Change 2 Exit() -> exit() | Todd C. Miller | |
Avoid stdio in Exit() and call _exit() if we are a signal handler. We no longer print the signal number but the user can just check the exit value for that. | |||
2001-11-02 | i do not think everybody needs USB_DEBUG | Michael Shalayeff | |
2001-11-02 | Revert to clnt_broadcast() method until an alignment problem with the | Todd C. Miller | |
asyncronous rpc code in the previous commit is fixed. | |||
2001-11-02 | use _exit() in signal handler; mark other issues | Theo de Raadt | |
2001-11-02 | avoid stdio in signal handler | Theo de Raadt | |
2001-11-02 | use _exit() in signal handler | Theo de Raadt | |
2001-11-02 | _exit() in signal handler | Theo de Raadt | |
2001-11-02 | avoid stdio in signal handler (not complete yet) | Theo de Raadt | |
2001-11-02 | Make kernel compile without IPSEC, PPP_DEFLATE but with CRYPTO. Reported by | Jean-Jacques Bernard-Gundol | |
Brian J. Kifiak <bk@rt.fm>. Thanks! | |||
2001-11-02 | do not return value that overruns mbuf length from ip6_nexthdr. | Jun-ichiro itojun Hagino | |
2001-11-02 | - U2 has been tested | Miod Vallat | |
- floppies have neither NFS nor CDROM support - add a section about firmware upgrades, and tell that they might be necessary, especially for U1/1E/2 systems. Pointed out from brad@, some of the information provided here comes from Sun's firmware update documentation. | |||
2001-11-02 | Fix typo when assigning bds->sem_base. | Todd C. Miller | |
The SVR4 compat stuff needs a serious sync but so far no one has been able to goat Niklas into doing it. | |||
2001-11-02 | attribute(format) no longer implies nonnull... | Marc Espie | |
ok millert@ miod@ | |||
2001-11-02 | In scsi_strvis(), collapse adjacent whitespace/NUL chars to a single | Todd C. Miller | |
space to get the most info with the least amount of wasted space. OK krw@, niklas@ | |||
2001-11-01 | Mention printf-like attributes for setproctitle(). | Miod Vallat | |
millert@ espie@ ok | |||
2001-11-01 | Major overhaul. | Todd C. Miller | |
Add protocol version 3 support. To avoid doing two separate broadcasts (like the solaris client does) we now do the equivalent of clnt_broadcast() ourselves and send both version 2 and 3 broadcasts. These are staggered such that under normal circumstances the version 3 reply will be received before the version 2 reply (which is what we want). Version 3 support is important now that we have long user and host names in utmp. Avoid potential duplicates on multihomed machines by storing all the addresses we get back from gethostbyaddr(), not just a single address. Reduce the timeout from 1 minute to 30 seconds which is closer to what Solaris uses and is generally more useful. Check window width and take this into account when formatting lines in -l mode. | |||
2001-11-01 | much greater care for malloc & realloc failures; millert ok | Theo de Raadt | |
2001-11-01 | Refer to our own, namely cdrecord, not linux stuff. | Marc Espie | |
2001-11-01 | sync | Theo de Raadt | |
2001-11-01 | printf() format string fix. | Miod Vallat | |
2001-11-01 | displayq to honor the terminal width; millert@ ok | Michael Shalayeff | |
2001-11-01 | add missing end bracket in comment | Todd C. Miller | |
2001-11-01 | regen | Michael Shalayeff | |
2001-11-01 | mylex acceleraid | Michael Shalayeff | |
2001-11-01 | Unnecessary cast. | Artur Grabowski | |
2001-11-01 | Don't allow negative offsets. Some type confusion. | Artur Grabowski | |
2001-11-01 | ship timing info in network byte order | Theo de Raadt | |
2001-11-01 | Change d_mmap in struct cdevsw from: | Artur Grabowski | |
int (*d_mmap) __P((dev_t, int, int)); to: paddr_t (*d_mmap) __P((dev_t, off_t, int)); This allows us to mmap devices past 4GB offsets. | |||
2001-11-01 | fix 64 bit issues regarding timevals | Theo de Raadt | |
2001-11-01 | use _C_LABEL | Michael Shalayeff | |
2001-11-01 | remove dangling spaces and tabs | Michael Shalayeff | |
2001-10-31 | Add boardtype 1301. | Hugh Graham | |
2001-10-31 | Set default facility is noone is specified at syslog(3) time; millert@ jj@ ok. | Federico G. Schwindt | |
2001-10-31 | Add MLINK's for syslog_r and friends. | Federico G. Schwindt | |
2001-10-31 | Change the internal vc_mmap from returning int to paddr_t. | Artur Grabowski | |
2001-10-31 | Change the audio_hm_if->mappage interface to return paddr_t and take off_t | Artur Grabowski | |
as the mmap offset. | |||
2001-10-31 | There is no need to fake handling of /dev/zero here. The vm system ↵ | Artur Grabowski | |
ultrix/ultrix_misc.c sunos/sunos_misc.c does this automagically (and has done it for ages). | |||
2001-10-31 | sync | Nathan Binkert | |
2001-10-31 | add a bunch of cards that use the Sundance TC9021 | Nathan Binkert | |
2001-10-31 | sync | Nathan Binkert | |
2001-10-31 | new device | Nathan Binkert | |